author | Sebastian Hengst <archaeopteryx@coole-files.de> |
Thu, 13 Oct 2016 18:48:56 +0200 | |
changeset 317889 | b62b2d88fd0320fc05e32952c0ffd411ea738011 |
parent 317888 | b3e56f1eb513bf5d0047f69a913e0a390bf56602 (current diff) |
parent 317796 | 7452437b3ab571b1d60aed4e973d82a1471f72b2 (diff) |
child 317890 | c9d87bca44d8a62e5ed2682bc53c2328da74e211 |
push id | 33170 |
push user | cbook@mozilla.com |
push date | Fri, 14 Oct 2016 10:37:07 +0000 |
treeherder | autoland@0d101ebfd95c [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | backout-merge, merge-backout |
milestone | 52.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
js/src/builtin/IntlTzData.js | file | annotate | diff | comparison | revisions | |
js/src/moz.build | file | annotate | diff | comparison | revisions | |
js/src/tests/Intl/DateTimeFormat/format_timeZone.js | file | annotate | diff | comparison | revisions | |
js/src/tests/Intl/DateTimeFormat/timeZone.js | file | annotate | diff | comparison | revisions | |
js/src/tests/Intl/DateTimeFormat/timeZone_backzone.js | file | annotate | diff | comparison | revisions | |
js/src/tests/Intl/DateTimeFormat/timeZone_link.js | file | annotate | diff | comparison | revisions |
--- a/browser/app/blocklist.xml +++ b/browser/app/blocklist.xml @@ -4180,12 +4180,18 @@ <serialNumber>Os2rnHWYhryvdOXfgan06A==</serialNumber> </certItem> <certItem issuerName="MG8xCzAJBgNVBAYTAlNFMRQwEgYDVQQKEwtBZGRUcnVzdCBBQjEmMCQGA1UECxMdQWRkVHJ1c3QgRXh0ZXJuYWwgVFRQIE5ldHdvcmsxIjAgBgNVBAMTGUFkZFRydXN0IEV4dGVybmFsIENBIFJvb3Q="> <serialNumber>U3t2Vk8pfxTcaUPpIq0seQ==</serialNumber> </certItem> <certItem issuerName="ME0xCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxJzAlBgNVBAMTHkRpZ2lDZXJ0IFNIQTIgU2VjdXJlIFNlcnZlciBDQQ=="> <serialNumber>Aa8e+91erglSMgsk/mtVaA==</serialNumber> </certItem> + <certItem issuerName="MEcxCzAJBgNVBAYTAkhLMRYwFAYDVQQKEw1Ib25na29uZyBQb3N0MSAwHgYDVQQDExdIb25na29uZyBQb3N0IFJvb3QgQ0EgMQ=="> + <serialNumber>BHk=</serialNumber> + </certItem> + <certItem issuerName="MEcxCzAJBgNVBAYTAkhLMRYwFAYDVQQKEw1Ib25na29uZyBQb3N0MSAwHgYDVQQDExdIb25na29uZyBQb3N0IFJvb3QgQ0EgMQ=="> + <serialNumber>BHk=</serialNumber> + </certItem> </certItems> </blocklist> \ No newline at end of file
--- a/js/src/builtin/Date.js +++ b/js/src/builtin/Date.js @@ -7,36 +7,33 @@ // This cache, once primed, has these properties: // // runtimeDefaultLocale: // Locale information provided by the embedding, guiding SpiderMonkey's // selection of a default locale. See RuntimeDefaultLocale(), whose // value controls the value returned by DefaultLocale() that's what's // *actually* used. -// icuDefaultTimeZone: -// Time zone information provided by ICU. See intl_defaultTimeZone(), -// whose value controls the value returned by DefaultTimeZone() that's -// what's *actually* used. +// localTZA: +// The local time zone's adjustment from UTC. See LocalTZA(). // formatters: // A Record storing formatters consistent with the above // runtimeDefaultLocale/localTZA values, for use with the appropriate // ES6 toLocale*String Date method when called with its first two // arguments having the value |undefined|. // // The "formatters" Record has (some subset of) these properties, as determined // by all values of the first argument passed to |GetCachedFormat|: // // dateTimeFormat: for Date's toLocaleString operation // dateFormat: for Date's toLocaleDateString operation // timeFormat: for Date's toLocaleTimeString operation // -// Using this cache, then, requires -// 1) verifying the current runtimeDefaultLocale/icuDefaultTimeZone are -// consistent with cached values, then +// Using this cache, then, requires 1) verifying the current +// runtimeDefaultLocale/localTZA are consistent with cached values, then // 2) seeing if the desired formatter is cached and returning it if so, or else // 3) create the desired formatter and store and return it. var dateTimeFormatCache = new Record(); /** * Get a cached DateTimeFormat formatter object, created like so: * @@ -48,25 +45,25 @@ var dateTimeFormatCache = new Record(); function GetCachedFormat(format, required, defaults) { assert(format === "dateTimeFormat" || format === "dateFormat" || format === "timeFormat", "unexpected format key: please update the comment by " + "dateTimeFormatCache"); var runtimeDefaultLocale = RuntimeDefaultLocale(); - var icuDefaultTimeZone = intl_defaultTimeZone(); + var localTZA = LocalTZA(); var formatters; if (dateTimeFormatCache.runtimeDefaultLocale !== runtimeDefaultLocale || - dateTimeFormatCache.icuDefaultTimeZone !== icuDefaultTimeZone) + dateTimeFormatCache.localTZA !== localTZA) { formatters = dateTimeFormatCache.formatters = new Record(); dateTimeFormatCache.runtimeDefaultLocale = runtimeDefaultLocale; - dateTimeFormatCache.icuDefaultTimeZone = icuDefaultTimeZone; + dateTimeFormatCache.localTZA = localTZA; } else { formatters = dateTimeFormatCache.formatters; } var fmt = formatters[format]; if (fmt === undefined) { var options = ToDateTimeOptions(undefined, required, defaults); fmt = formatters[format] = intl_DateTimeFormat(undefined, options);
--- a/js/src/builtin/Intl.cpp +++ b/js/src/builtin/Intl.cpp @@ -6,17 +6,16 @@ /* * The Intl module specified by standard ECMA-402, * ECMAScript Internationalization API Specification. */ #include "builtin/Intl.h" -#include "mozilla/PodOperations.h" #include "mozilla/Range.h" #include "mozilla/ScopeExit.h" #include <string.h> #include "jsapi.h" #include "jsatom.h" #include "jscntxt.h" @@ -43,17 +42,16 @@ #include "vm/NativeObject-inl.h" using namespace js; using mozilla::IsFinite; using mozilla::IsNegativeZero; using mozilla::MakeScopeExit; -using mozilla::PodCopy; #if ENABLE_INTL_API using icu::Locale; using icu::NumberingSystem; #endif /* @@ -376,35 +374,16 @@ ucal_getDayOfWeekType(const UCalendar *c static int32_t ucal_getAttribute(const UCalendar* cal, UCalendarAttribute attr) { MOZ_CRASH("ucal_getAttribute: Intl API disabled"); } -static UEnumeration* -ucal_openTimeZones(UErrorCode* status) -{ - MOZ_CRASH("ucal_openTimeZones: Intl API disabled"); -} - -static int32_t -ucal_getCanonicalTimeZoneID(const UChar* id, int32_t len, UChar* result, int32_t resultCapacity, - UBool* isSystemID, UErrorCode* status) -{ - MOZ_CRASH("ucal_getCanonicalTimeZoneID: Intl API disabled"); -} - -static int32_t -ucal_getDefaultTimeZone(UChar* result, int32_t resultCapacity, UErrorCode* status) -{ - MOZ_CRASH("ucal_getDefaultTimeZone: Intl API disabled"); -} - typedef void* UDateTimePatternGenerator; static UDateTimePatternGenerator* udatpg_open(const char* locale, UErrorCode* pErrorCode) { MOZ_CRASH("udatpg_open: Intl API disabled"); } @@ -1947,170 +1926,16 @@ js::intl_availableCalendars(JSContext* c if (!DefineElement(cx, calendars, index++, element)) return false; } args.rval().setObject(*calendars); return true; } -/** - * Create a time zone map key. Time zones are keyed by their upper case name. - */ -static UniqueChars -TimeZoneKey(JSContext* cx, const char* timeZone, size_t size) -{ - UniqueChars timeZoneKey = cx->make_pod_array<char>(size); - if (!timeZoneKey) - return timeZoneKey; - PodCopy(timeZoneKey.get(), timeZone, size); - - // Convert time zone name to ASCII upper case. - char* chars = timeZoneKey.get(); - for (unsigned i = 0; i < size; i++) { - char c = chars[i]; - if ('a' <= c && c <= 'z') - chars[i] = c & ~0x20; - } - - return timeZoneKey; -} - -bool -js::intl_availableTimeZones(JSContext* cx, unsigned argc, Value* vp) -{ - CallArgs args = CallArgsFromVp(argc, vp); - MOZ_ASSERT(args.length() == 0); - - UErrorCode status = U_ZERO_ERROR; - UEnumeration* values = ucal_openTimeZones(&status); - if (U_FAILURE(status)) { - JS_ReportErrorNumberASCII(cx, GetErrorMessage, nullptr, JSMSG_INTERNAL_INTL_ERROR); - return false; - } - ScopedICUObject<UEnumeration, uenum_close> toClose(values); - - RootedObject timeZones(cx, NewObjectWithGivenProto<PlainObject>(cx, nullptr)); - if (!timeZones) - return false; - RootedString jsTimeZone(cx); - RootedValue element(cx); - while (true) { - int32_t size; - const char* timeZone = uenum_next(values, &size, &status); - if (U_FAILURE(status)) { - JS_ReportErrorNumberASCII(cx, GetErrorMessage, nullptr, JSMSG_INTERNAL_INTL_ERROR); - return false; - } - if (timeZone == nullptr) - break; - - MOZ_ASSERT(size >= 0); - UniqueChars timeZoneKey = TimeZoneKey(cx, timeZone, size_t(size)); - if (!timeZoneKey) - return false; - - RootedAtom atom(cx, Atomize(cx, timeZoneKey.get(), size_t(size))); - if (!atom) - return false; - - jsTimeZone = NewStringCopyN<CanGC>(cx, timeZone, size_t(size)); - if (!jsTimeZone) - return false; - element.setString(jsTimeZone); - - if (!DefineProperty(cx, timeZones, atom->asPropertyName(), element)) - return false; - } - - args.rval().setObject(*timeZones); - return true; -} - -bool -js::intl_canonicalizeTimeZone(JSContext* cx, unsigned argc, Value* vp) -{ - CallArgs args = CallArgsFromVp(argc, vp); - MOZ_ASSERT(args.length() == 1); - MOZ_ASSERT(args[0].isString()); - - AutoStableStringChars stableChars(cx); - if (!stableChars.initTwoByte(cx, args[0].toString())) - return false; - - mozilla::Range<const char16_t> tzchars = stableChars.twoByteRange(); - - Vector<char16_t, INITIAL_CHAR_BUFFER_SIZE> chars(cx); - if (!chars.resize(INITIAL_CHAR_BUFFER_SIZE)) - return false; - - UBool* isSystemID = nullptr; - UErrorCode status = U_ZERO_ERROR; - int32_t size = ucal_getCanonicalTimeZoneID(Char16ToUChar(tzchars.start().get()), - tzchars.length(), Char16ToUChar(chars.begin()), - INITIAL_CHAR_BUFFER_SIZE, isSystemID, &status); - if (status == U_BUFFER_OVERFLOW_ERROR) { - MOZ_ASSERT(size >= 0); - if (!chars.resize(size_t(size))) - return false; - status = U_ZERO_ERROR; - ucal_getCanonicalTimeZoneID(Char16ToUChar(tzchars.start().get()), tzchars.length(), - Char16ToUChar(chars.begin()), size, isSystemID, &status); - } - if (U_FAILURE(status)) { - JS_ReportErrorNumberASCII(cx, GetErrorMessage, nullptr, JSMSG_INTERNAL_INTL_ERROR); - return false; - } - - MOZ_ASSERT(size >= 0); - JSString* str = NewStringCopyN<CanGC>(cx, chars.begin(), size); - if (!str) - return false; - args.rval().setString(str); - return true; -} - -bool -js::intl_defaultTimeZone(JSContext* cx, unsigned argc, Value* vp) -{ - CallArgs args = CallArgsFromVp(argc, vp); - MOZ_ASSERT(args.length() == 0); - - // The current default might be stale, because JS::ResetTimeZone() doesn't - // immediately update ICU's default time zone. So perform an update if - // needed. - js::ResyncICUDefaultTimeZone(); - - Vector<char16_t, INITIAL_CHAR_BUFFER_SIZE> chars(cx); - if (!chars.resize(INITIAL_CHAR_BUFFER_SIZE)) - return false; - - UErrorCode status = U_ZERO_ERROR; - int32_t size = ucal_getDefaultTimeZone(Char16ToUChar(chars.begin()), INITIAL_CHAR_BUFFER_SIZE, - &status); - if (status == U_BUFFER_OVERFLOW_ERROR) { - MOZ_ASSERT(size >= 0); - if (!chars.resize(size_t(size))) - return false; - status = U_ZERO_ERROR; - ucal_getDefaultTimeZone(Char16ToUChar(chars.begin()), size, &status); - } - if (U_FAILURE(status)) { - JS_ReportErrorNumberASCII(cx, GetErrorMessage, nullptr, JSMSG_INTERNAL_INTL_ERROR); - return false; - } - - MOZ_ASSERT(size >= 0); - JSString* str = NewStringCopyN<CanGC>(cx, chars.begin(), size_t(size)); - if (!str) - return false; - args.rval().setString(str); - return true; -} - bool js::intl_patternForSkeleton(JSContext* cx, unsigned argc, Value* vp) { CallArgs args = CallArgsFromVp(argc, vp); MOZ_ASSERT(args.length() == 2); MOZ_ASSERT(args[0].isString()); MOZ_ASSERT(args[1].isString()); @@ -2176,43 +2001,70 @@ NewUDateFormat(JSContext* cx, HandleObje return nullptr; if (!GetProperty(cx, internals, internals, cx->names().locale, &value)) return nullptr; JSAutoByteString locale(cx, value.toString()); if (!locale) return nullptr; + // UDateFormat options with default values. + const UChar* uTimeZone = nullptr; + uint32_t uTimeZoneLength = 0; + const UChar* uPattern = nullptr; + uint32_t uPatternLength = 0; + // We don't need to look at calendar and numberingSystem - they can only be // set via the Unicode locale extension and are therefore already set on // locale. - if (!GetProperty(cx, internals, internals, cx->names().timeZone, &value)) + RootedId id(cx, NameToId(cx->names().timeZone)); + bool hasP; + if (!HasProperty(cx, internals, id, &hasP)) return nullptr; AutoStableStringChars timeZoneChars(cx); - Rooted<JSFlatString*> timeZoneFlat(cx, value.toString()->ensureFlat(cx)); - if (!timeZoneFlat || !timeZoneChars.initTwoByte(cx, timeZoneFlat)) - return nullptr; - - const UChar* uTimeZone = Char16ToUChar(timeZoneChars.twoByteRange().start().get()); - uint32_t uTimeZoneLength = u_strlen(uTimeZone); - + if (hasP) { + if (!GetProperty(cx, internals, internals, cx->names().timeZone, &value)) + return nullptr; + if (!value.isUndefined()) { + JSFlatString* flat = value.toString()->ensureFlat(cx); + if (!flat || !timeZoneChars.initTwoByte(cx, flat)) + return nullptr; + uTimeZone = Char16ToUChar(timeZoneChars.twoByteRange().start().get()); + if (!uTimeZone) + return nullptr; + uTimeZoneLength = u_strlen(uTimeZone); + } + } if (!GetProperty(cx, internals, internals, cx->names().pattern, &value)) return nullptr; AutoStableStringChars patternChars(cx); - Rooted<JSFlatString*> patternFlat(cx, value.toString()->ensureFlat(cx)); - if (!patternFlat || !patternChars.initTwoByte(cx, patternFlat)) + JSFlatString* flat = value.toString()->ensureFlat(cx); + if (!flat || !patternChars.initTwoByte(cx, flat)) return nullptr; - const UChar* uPattern = Char16ToUChar(patternChars.twoByteRange().start().get()); - uint32_t uPatternLength = u_strlen(uPattern); + uPattern = Char16ToUChar(patternChars.twoByteRange().start().get()); + if (!uPattern) + return nullptr; + uPatternLength = u_strlen(uPattern); UErrorCode status = U_ZERO_ERROR; + + if (!uTimeZone) { + // When no time zone was specified, we use ICU's default time zone. + // The current default might be stale, because JS::ResetTimeZone() + // doesn't immediately update ICU's default time zone. So perform an + // update if needed. + js::ResyncICUDefaultTimeZone(); + } + + // If building with ICU headers before 50.1, use UDAT_IGNORE instead of + // UDAT_PATTERN. UDateFormat* df = udat_open(UDAT_PATTERN, UDAT_PATTERN, icuLocale(locale.ptr()), uTimeZone, uTimeZoneLength, uPattern, uPatternLength, &status); if (U_FAILURE(status)) { JS_ReportErrorNumberASCII(cx, GetErrorMessage, nullptr, JSMSG_INTERNAL_INTL_ERROR); return nullptr; }
--- a/js/src/builtin/Intl.h +++ b/js/src/builtin/Intl.h @@ -154,50 +154,16 @@ intl_DateTimeFormat_availableLocales(JSC * element 0. * * Usage: calendars = intl_availableCalendars(locale) */ extern MOZ_MUST_USE bool intl_availableCalendars(JSContext* cx, unsigned argc, Value* vp); /** - * Return a map of the supported time zone names, derived from the IANA time - * zone database <https://www.iana.org/time-zones>. - * - * There are two kinds of IANA time zone names: Zone and Link (denoted as such - * in database source files). Zone names are the canonical, preferred name for - * a time zone, e.g. Asia/Kolkata. Link names simply refer to target Zone names - * for their meaning, e.g. Asia/Calcutta targets Asia/Kolkata. That a name is a - * Link doesn't *necessarily* reflect a sense of deprecation: some Link names - * also exist partly for convenience, e.g. UTC and GMT as Link names targeting - * the Zone name Etc/UTC. - * - * Usage: timeZones = intl_availableTimeZones() - */ -extern MOZ_MUST_USE bool -intl_availableTimeZones(JSContext* cx, unsigned argc, Value* vp); - -/** - * Return the canonicalized time zone name. Canonicalization resolves link - * names to their target time zones. - * - * Usage: ianaTimeZone = intl_canonicalizeTimeZone(timeZone) - */ -extern MOZ_MUST_USE bool -intl_canonicalizeTimeZone(JSContext* cx, unsigned argc, Value* vp); - -/** - * Return the default time zone name. The time zone name is not canonicalized. - * - * Usage: icuDefaultTimeZone = intl_defaultTimeZone() - */ -extern MOZ_MUST_USE bool -intl_defaultTimeZone(JSContext* cx, unsigned argc, Value* vp); - -/** * Return a pattern in the date-time format pattern language of Unicode * Technical Standard 35, Unicode Locale Data Markup Language, for the * best-fit date-time format pattern corresponding to skeleton for the * given locale. * * Usage: pattern = intl_patternForSkeleton(locale, skeleton) */ extern MOZ_MUST_USE bool
--- a/js/src/builtin/Intl.js +++ b/js/src/builtin/Intl.js @@ -39,20 +39,20 @@ function toASCIIUpperCase(s) { assert(typeof s === "string", "toASCIIUpperCase"); // String.prototype.toUpperCase may map non-ASCII characters into ASCII, // so go character by character (actually code unit by code unit, but // since we only care about ASCII characters here, that's OK). var result = ""; for (var i = 0; i < s.length; i++) { - var c = callFunction(std_String_charCodeAt, s, i); - result += (0x61 <= c && c <= 0x7A) - ? callFunction(std_String_fromCharCode, null, c & ~0x20) - : s[i]; + var c = s[i]; + if ("a" <= c && c <= "z") + c = callFunction(std_String_toUpperCase, c); + result += c; } return result; } /** * Holder object for encapsulating regexp instances. * * Regular expression instances should be created after the initialization of @@ -617,123 +617,16 @@ function IsWellFormedCurrencyCode(curren var c = ToString(currency); var normalized = toASCIIUpperCase(c); if (normalized.length !== 3) return false; return !regexp_test_no_statics(getIsWellFormedCurrencyCodeRE(), normalized); } -var timeZoneCache = { - icuDefaultTimeZone: undefined, - defaultTimeZone: undefined, - timeZones: undefined, -}; - - -/** - * 6.4.1 IsValidTimeZoneName ( timeZone ) - * - * Verifies that the given string is a valid time zone name. If it is a valid - * time zone name, its IANA time zone name is returned. Otherwise returns null. - * - * ES2017 Intl draft rev 4a23f407336d382ed5e3471200c690c9b020b5f3 - */ -function IsValidTimeZoneName(timeZone) { - assert(typeof timeZone === "string", "IsValidTimeZoneName"); - - var timeZones = timeZoneCache.timeZones; - if (timeZones === undefined) { - timeZones = intl_availableTimeZones(); - timeZoneCache.timeZones = timeZones; - } - - // Return |null| if time zone not found or non-IANA time zone. - var tz = timeZones[toASCIIUpperCase(timeZone)]; - return (tz === undefined || tz in legacyICUTimeZones) ? null : tz; -} - - -/** - * 6.4.2 CanonicalizeTimeZoneName ( timeZone ) - * - * Canonicalizes the given IANA time zone name. - * - * ES2017 Intl draft rev 4a23f407336d382ed5e3471200c690c9b020b5f3 - */ -function CanonicalizeTimeZoneName(timeZone) { - assert(typeof timeZone === "string", "CanonicalizeTimeZoneName"); - - // Step 1. (Not applicable, the input is already a valid IANA time zone.) - assert(timeZone !== "Etc/Unknown", "Invalid time zone"); - assert(timeZone === IsValidTimeZoneName(timeZone), "Time zone name not normalized"); - - // Step 2. - var ianaTimeZone = intl_canonicalizeTimeZone(timeZone); - assert(ianaTimeZone !== "Etc/Unknown", "Invalid canonical time zone"); - assert(ianaTimeZone === IsValidTimeZoneName(ianaTimeZone), "Unsupported canonical time zone"); - - // Step 3. - if (ianaTimeZone === "Etc/UTC" || ianaTimeZone === "Etc/GMT") { - // ICU/CLDR canonicalizes Etc/UCT to Etc/GMT, but following IANA and - // ECMA-402 to the letter means Etc/UCT is a separate time zone. - if (timeZone === "Etc/UCT" || timeZone === "UCT") - ianaTimeZone = "Etc/UCT"; - else - ianaTimeZone = "UTC"; - } else { - // ICU/CLDR doesn't map all names to their new IANA time zone names. - // http://bugs.icu-project.org/trac/ticket/12044 - if (timeZone in tzLinkNamesNonICU) { - // Case 1: ICU/CLDR maps the time zone to another time zone, e.g. - // America/Virgin is mapped to America/St_Thomas, whereas IANA maps - // America/Virgin to America/Port_of_Spain. - // Only perform the update when ICU supports the new time zone. - if (IsValidTimeZoneName(tzLinkNamesNonICU[timeZone]) !== null) { - ianaTimeZone = tzLinkNamesNonICU[timeZone]; - } - } else if (timeZone in tzZoneNamesNonICU) { - // Case 2: ICU/CLDR maps the time zone to its old name, e.g. - // Asia/Kathmandu is mapped to Asia/Katmandu. - ianaTimeZone = timeZone; - } - } - - // Step 4. - return ianaTimeZone; -} - - -/** - * 6.4.3 DefaultTimeZone () - * - * Returns the IANA time zone name for the host environment's current time zone. - * - * ES2017 Intl draft rev 4a23f407336d382ed5e3471200c690c9b020b5f3 - */ -function DefaultTimeZone() { - const icuDefaultTimeZone = intl_defaultTimeZone(); - if (timeZoneCache.icuDefaultTimeZone === icuDefaultTimeZone) - return timeZoneCache.defaultTimeZone; - - // Verify that the current ICU time zone is a valid ECMA-402 time zone. - var timeZone = IsValidTimeZoneName(icuDefaultTimeZone); - if (timeZone === null) - timeZone = "UTC"; - - // Canonicalize the ICU time zone, e.g. change Etc/UTC to UTC. - var defaultTimeZone = CanonicalizeTimeZoneName(timeZone); - - timeZoneCache.defaultTimeZone = defaultTimeZone; - timeZoneCache.icuDefaultTimeZone = icuDefaultTimeZone; - - return defaultTimeZone; -} - - /********** Locale and Parameter Negotiation **********/ /** * Add old-style language tags without script code for locales that in current * usage would include a script subtag. Also add an entry for the last-ditch * locale, in case ICU doesn't directly support it (but does support it through * fallback, e.g. supporting "en-GB" indirectly using "en" support). */ @@ -2195,17 +2088,17 @@ function resolveDateTimeFormatInternals( // // localeOpt: // *first* opt computed in InitializeDateTimeFormat // { // localeMatcher: "lookup" / "best fit", // // hour12: true / false, // optional // } // - // timeZone: IANA time zone name, + // timeZone: undefined / "UTC", // // formatOpt: // *second* opt computed in InitializeDateTimeFormat // { // // all the properties/values listed in Table 3 // // (weekday, era, year, month, day, &c.) // } // // formatMatcher: "basic" / "best fit", @@ -2327,17 +2220,17 @@ function InitializeDateTimeFormat(dateTi // { // requestedLocales: List of locales, // // localeOpt: // *first* opt computed in InitializeDateTimeFormat // { // localeMatcher: "lookup" / "best fit", // } // - // timeZone: IANA time zone name, + // timeZone: undefined / "UTC", // // formatOpt: // *second* opt computed in InitializeDateTimeFormat // { // // all the properties/values listed in Table 3 // // (weekday, era, year, month, day, &c.) // // hour12: true / false // optional // } @@ -2366,29 +2259,19 @@ function InitializeDateTimeFormat(dateTi var localeMatcher = GetOption(options, "localeMatcher", "string", ["lookup", "best fit"], "best fit"); localeOpt.localeMatcher = localeMatcher; // Steps 15-17. var tz = options.timeZone; if (tz !== undefined) { - // Step 15.a. - tz = ToString(tz); - - // Step 15.b. - var timeZone = IsValidTimeZoneName(tz); - if (timeZone === null) + tz = toASCIIUpperCase(ToString(tz)); + if (tz !== "UTC") ThrowRangeError(JSMSG_INVALID_TIME_ZONE, tz); - - // Step 15.c. - tz = CanonicalizeTimeZoneName(timeZone); - } else { - // Step 16. - tz = DefaultTimeZone(); } lazyDateTimeFormatData.timeZone = tz; // Step 18. var formatOpt = new Record(); lazyDateTimeFormatData.formatOpt = formatOpt; // Step 19. @@ -2401,17 +2284,17 @@ function InitializeDateTimeFormat(dateTi // Steps 20-21 provided by ICU - see comment after this function. // Step 22. // // For some reason (ICU not exposing enough interface?) we drop the // requested format matcher on the floor after this. In any case, even if // doing so is justified, we have to do this work here in case it triggers - // getters or similar. (bug 852837) + // getters or similar. var formatMatcher = GetOption(options, "formatMatcher", "string", ["basic", "best fit"], "best fit"); // Steps 23-25 provided by ICU, more or less - see comment after this function. // Step 26. var hr12 = GetOption(options, "hour12", "boolean", undefined, undefined);
deleted file mode 100644 --- a/js/src/builtin/IntlTzData.js +++ /dev/null @@ -1,122 +0,0 @@ -// Generated by make_intl_data.py. DO NOT EDIT. -// tzdata version = 2015f -// ICU tzdata version = 2015f - -// Format: -// "ZoneName": true // ICU-Name [time zone file] -var tzZoneNamesNonICU = { - "Africa/Asmara": true, // Africa/Asmera [backzone] - "Africa/Timbuktu": true, // Africa/Bamako [backzone] - "America/Argentina/Buenos_Aires": true, // America/Buenos_Aires [southamerica] - "America/Argentina/Catamarca": true, // America/Catamarca [southamerica] - "America/Argentina/ComodRivadavia": true, // America/Catamarca [backzone] - "America/Argentina/Cordoba": true, // America/Cordoba [southamerica] - "America/Argentina/Jujuy": true, // America/Jujuy [southamerica] - "America/Argentina/Mendoza": true, // America/Mendoza [southamerica] - "America/Atikokan": true, // America/Coral_Harbour [northamerica] - "America/Ensenada": true, // America/Tijuana [backzone] - "America/Indiana/Indianapolis": true, // America/Indianapolis [northamerica] - "America/Kentucky/Louisville": true, // America/Louisville [northamerica] - "America/Rosario": true, // America/Cordoba [backzone] - "Asia/Chongqing": true, // Asia/Shanghai [backzone] - "Asia/Hanoi": true, // <not present> [backzone] - "Asia/Harbin": true, // Asia/Shanghai [backzone] - "Asia/Ho_Chi_Minh": true, // Asia/Saigon [asia] - "Asia/Kashgar": true, // Asia/Urumqi [backzone] - "Asia/Kathmandu": true, // Asia/Katmandu [asia] - "Asia/Kolkata": true, // Asia/Calcutta [asia] - "Asia/Tel_Aviv": true, // Asia/Jerusalem [backzone] - "Atlantic/Faroe": true, // Atlantic/Faeroe [europe] - "Atlantic/Jan_Mayen": true, // Arctic/Longyearbyen [backzone] - "CET": true, // <not present> [europe] - "EET": true, // <not present> [europe] - "EST": true, // Etc/GMT+5 [northamerica] - "Europe/Belfast": true, // Europe/London [backzone] - "Europe/Tiraspol": true, // Europe/Chisinau [backzone] - "HST": true, // Etc/GMT+10 [northamerica] - "MET": true, // <not present> [europe] - "MST": true, // Etc/GMT+7 [northamerica] - "Pacific/Chuuk": true, // Pacific/Truk [australasia] - "Pacific/Pohnpei": true, // Pacific/Ponape [australasia] - "WET": true, // <not present> [europe] -}; - -// Format: -// "LinkName": "Target" // ICU-Target [time zone file] -var tzLinkNamesNonICU = { - "Africa/Asmera": "Africa/Asmara", // Africa/Asmera [backward] - "America/Buenos_Aires": "America/Argentina/Buenos_Aires", // America/Buenos_Aires [backward] - "America/Catamarca": "America/Argentina/Catamarca", // America/Catamarca [backward] - "America/Cordoba": "America/Argentina/Cordoba", // America/Cordoba [backward] - "America/Fort_Wayne": "America/Indiana/Indianapolis", // America/Indianapolis [backward] - "America/Indianapolis": "America/Indiana/Indianapolis", // America/Indianapolis [backward] - "America/Jujuy": "America/Argentina/Jujuy", // America/Jujuy [backward] - "America/Kralendijk": "America/Curacao", // America/Kralendijk [southamerica] - "America/Louisville": "America/Kentucky/Louisville", // America/Louisville [backward] - "America/Lower_Princes": "America/Curacao", // America/Lower_Princes [southamerica] - "America/Marigot": "America/Port_of_Spain", // America/Marigot [southamerica] - "America/Mendoza": "America/Argentina/Mendoza", // America/Mendoza [backward] - "America/St_Barthelemy": "America/Port_of_Spain", // America/St_Barthelemy [southamerica] - "America/Virgin": "America/Port_of_Spain", // America/St_Thomas [backward] - "Antarctica/South_Pole": "Antarctica/McMurdo", // Pacific/Auckland [backward] - "Arctic/Longyearbyen": "Europe/Oslo", // Arctic/Longyearbyen [europe] - "Asia/Calcutta": "Asia/Kolkata", // Asia/Calcutta [backward] - "Asia/Chungking": "Asia/Chongqing", // Asia/Shanghai [backward] - "Asia/Katmandu": "Asia/Kathmandu", // Asia/Katmandu [backward] - "Asia/Saigon": "Asia/Ho_Chi_Minh", // Asia/Saigon [backward] - "Atlantic/Faeroe": "Atlantic/Faroe", // Atlantic/Faeroe [backward] - "Europe/Bratislava": "Europe/Prague", // Europe/Bratislava [europe] - "Europe/Busingen": "Europe/Zurich", // Europe/Busingen [europe] - "Europe/Mariehamn": "Europe/Helsinki", // Europe/Mariehamn [europe] - "Europe/Podgorica": "Europe/Belgrade", // Europe/Podgorica [europe] - "Europe/San_Marino": "Europe/Rome", // Europe/San_Marino [europe] - "Europe/Vatican": "Europe/Rome", // Europe/Vatican [europe] - "Pacific/Ponape": "Pacific/Pohnpei", // Pacific/Ponape [backward] - "Pacific/Truk": "Pacific/Chuuk", // Pacific/Truk [backward] - "Pacific/Yap": "Pacific/Chuuk", // Pacific/Truk [backward] - "US/East-Indiana": "America/Indiana/Indianapolis", // America/Indianapolis [backward] -}; - -// Legacy ICU time zones, these are not valid IANA time zone names. We also -// disallow the old and deprecated System V time zones. -// http://source.icu-project.org/repos/icu/icu/trunk/source/tools/tzcode/icuzones -var legacyICUTimeZones = { - "ACT": true, - "AET": true, - "AGT": true, - "ART": true, - "AST": true, - "BET": true, - "BST": true, - "CAT": true, - "CNT": true, - "CST": true, - "CTT": true, - "EAT": true, - "ECT": true, - "IET": true, - "IST": true, - "JST": true, - "MIT": true, - "NET": true, - "NST": true, - "PLT": true, - "PNT": true, - "PRT": true, - "PST": true, - "SST": true, - "VST": true, - "SystemV/AST4": true, - "SystemV/AST4ADT": true, - "SystemV/CST6": true, - "SystemV/CST6CDT": true, - "SystemV/EST5": true, - "SystemV/EST5EDT": true, - "SystemV/HST10": true, - "SystemV/MST7": true, - "SystemV/MST7MDT": true, - "SystemV/PST8": true, - "SystemV/PST8PDT": true, - "SystemV/YST9": true, - "SystemV/YST9YDT": true, -};
--- a/js/src/builtin/make_intl_data.py +++ b/js/src/builtin/make_intl_data.py @@ -35,17 +35,17 @@ import re import io import codecs import tarfile import tempfile import urllib2 import urlparse from contextlib import closing from functools import partial -from itertools import chain, ifilter, ifilterfalse, tee +from itertools import chain, ifilter, ifilterfalse, imap, tee from operator import attrgetter, itemgetter def readRegistryRecord(registry): """ Yields the records of the IANA Language Subtag Registry as dictionaries. """ record = {} for line in registry: line = line.strip() if line == "": @@ -578,17 +578,17 @@ def updateTzdata(args): def updateFrom(f): if os.path.isfile(f) and tarfile.is_tarfile(f): with tarfile.open(f, "r:*") as tar: processTimeZones(TzDataFile(tar), icuDir, icuTzDir, version, out) elif os.path.isdir(f): processTimeZones(TzDataDir(f), icuDir, icuTzDir, version, out) else: - raise RuntimeError("unknown format") + raise RuntimError("unknown format") if tzDir is None: print("Downloading tzdata file...") with closing(urllib2.urlopen(url)) as tzfile: fname = urlparse.urlsplit(tzfile.geturl()).path.split('/')[-1] with tempfile.NamedTemporaryFile(suffix=fname) as tztmpfile: print("File stored in %s" % tztmpfile.name) tztmpfile.write(tzfile.read())
--- a/js/src/jsapi-tests/testGCOutOfMemory.cpp +++ b/js/src/jsapi-tests/testGCOutOfMemory.cpp @@ -50,17 +50,17 @@ BEGIN_TEST(testGCOutOfMemory) virtual JSContext* createContext() override { // Note that the max nursery size must be less than the whole heap size, or // the test will fail because 'max' (the number of allocations required for // OOM) will be based on the nursery size, and that will overflow the // tenured heap, which will cause the second pass with max/4 allocations to // OOM. (Actually, this only happens with nursery zeal, because normally // the nursery will start out with only a single chunk before triggering a // major GC.) - JSContext* cx = JS_NewContext(1024 * 1024, 128 * 1024); + JSContext* cx = JS_NewContext(768 * 1024, 128 * 1024); if (!cx) return nullptr; setNativeStackQuota(cx); return cx; } virtual void destroyContext() override { JS_DestroyContext(cx);
--- a/js/src/moz.build +++ b/js/src/moz.build @@ -749,17 +749,16 @@ selfhosted.inputs = [ 'builtin/Array.js', 'builtin/Classes.js', 'builtin/Date.js', 'builtin/Error.js', 'builtin/Function.js', 'builtin/Generator.js', 'builtin/Intl.js', 'builtin/IntlData.js', - 'builtin/IntlTzData.js', 'builtin/Iterator.js', 'builtin/Map.js', 'builtin/Module.js', 'builtin/Number.js', 'builtin/Object.js', 'builtin/Reflect.js', 'builtin/RegExp.js', 'builtin/RegExpGlobalReplaceOpt.h.js',
deleted file mode 100644 --- a/js/src/tests/Intl/DateTimeFormat/format_timeZone.js +++ /dev/null @@ -1,104 +0,0 @@ -// |reftest| skip-if(!this.hasOwnProperty("Intl")) - -const defaultLocale = "en-US"; -const defaultDate = Date.UTC(2012, 12-1, 6, 12, 0, 0); -const defaultOptions = { - year: "numeric", month: "numeric", day: "numeric", - hour: "numeric", minute: "numeric", second: "numeric", -}; -const longFormatOptions = Object.assign({}, defaultOptions, { - month: "long" -}); -const tzNameFormatOptions = Object.assign({}, defaultOptions, { - timeZoneName: "short" -}); - -const tzMapper = [ - x => x, - x => x.toUpperCase(), - x => x.toLowerCase(), -]; - -const tests = [ - { - timeZone: "UTC", - result: "12/6/2012, 12:00:00 PM", - }, - { - timeZone: "America/Los_Angeles", - result: "12/6/2012, 4:00:00 AM", - }, - { - timeZone: "America/New_York", - options: tzNameFormatOptions, - result: "12/6/2012, 7:00:00 AM EST", - }, - { - timeZone: "America/Caracas", - result: "12/6/2012, 7:30:00 AM", - }, - { - timeZone: "Europe/London", - result: "12/6/2012, 12:00:00 PM", - }, - { - timeZone: "Africa/Casablanca", - locale: "ar-MA-u-ca-islamicc", options: longFormatOptions, - result: "22 محرم، 1434 12:00:00", - }, - { - timeZone: "Europe/Berlin", - locale: "de-DE", options: tzNameFormatOptions, - result: "6.12.2012, 13:00:00 MEZ", - }, - { - timeZone: "Asia/Kathmandu", - result: "12/6/2012, 5:45:00 PM", - }, - { - timeZone: "Asia/Bangkok", - locale: "th-th-u-nu-thai", options: longFormatOptions, - result: "๖ ธันวาคม ๒๕๕๕ ๑๙:๐๐:๐๐", - }, - { - timeZone: "Asia/Tokyo", - locale: "ja-JP", options: longFormatOptions, - result: "2012年12月6日 21:00:00", - }, - { - timeZone: "Australia/Lord_Howe", - result: "12/6/2012, 11:00:00 PM", - }, - { - timeZone: "Australia/Lord_Howe", - date: Date.UTC(2012, 7-1, 6, 12, 0, 0), - result: "7/6/2012, 10:30:00 PM", - }, - { - timeZone: "Pacific/Kiritimati", - date: Date.UTC(1978, 12-1, 6, 12, 0, 0), - result: "12/6/1978, 1:20:00 AM", - }, - { - timeZone: "Africa/Monrovia", - date: Date.UTC(1971, 12-1, 6, 12, 0, 0), - result: "12/6/1971, 11:15:30 AM", - }, - { - timeZone: "Asia/Riyadh", - date: Date.UTC(1946, 12-1, 6, 12, 0, 0), - result: "12/6/1946, 3:06:52 PM", - }, -]; - -for (let {timeZone, result, locale = defaultLocale, date = defaultDate, options = defaultOptions} of tests) { - for (let map of tzMapper) { - let dtf = new Intl.DateTimeFormat(locale, Object.assign({timeZone: map(timeZone)}, options)); - assertEq(dtf.format(date), result); - assertEq(dtf.resolvedOptions().timeZone, timeZone); - } -} - - -if (typeof reportCompare === "function") - reportCompare(0, 0, "ok");
deleted file mode 100644 --- a/js/src/tests/Intl/DateTimeFormat/timeZone.js +++ /dev/null @@ -1,152 +0,0 @@ -// |reftest| skip-if(!this.hasOwnProperty("Intl")) - -const tzMapper = [ - x => x, - x => x.toUpperCase(), - x => x.toLowerCase(), -]; - - -const utcTimeZones = [ - // Etc/UTC and Etc/GMT are normalized to UTC. - "Etc/UTC", "Etc/GMT", - - // Links to Etc/GMT. (tzdata/etcetera) - "GMT", "Etc/Greenwich", "Etc/GMT-0", "Etc/GMT+0", "Etc/GMT0", - - // Links to Etc/UTC. (tzdata/etcetera) - "Etc/Universal", "Etc/Zulu", - - // Links to Etc/GMT. (tzdata/backward) - "GMT+0", "GMT-0", "GMT0", "Greenwich", - - // Links to Etc/UTC. (tzdata/backward) - "UTC", "Universal", "Zulu", -]; - -for (let timeZone of utcTimeZones) { - for (let map of tzMapper) { - let dtf = new Intl.DateTimeFormat(undefined, {timeZone: map(timeZone)}); - assertEq(dtf.resolvedOptions().timeZone, "UTC"); - } -} - - -// ECMA-402 doesn't normalize Etc/UCT to UTC. -const uctTimeZones = [ - "Etc/UCT", "UCT", -]; - -for (let timeZone of uctTimeZones) { - for (let map of tzMapper) { - let dtf = new Intl.DateTimeFormat(undefined, {timeZone: map(timeZone)}); - assertEq(dtf.resolvedOptions().timeZone, "Etc/UCT"); - } -} - - -const invalidTimeZones = [ - "", "null", "undefined", "UTC\0", - - // ICU time zone name for invalid time zones. - "Etc/Unknown", - - // ICU custom time zones. - "GMT-1", "GMT+1", "GMT-10", "GMT+10", - "GMT-10:00", "GMT+10:00", - "GMT-1000", "GMT+1000", - - // Legacy ICU time zones. - "ACT", "AET", "AGT", "ART", "AST", "BET", "BST", "CAT", "CNT", "CST", - "CTT", "EAT", "ECT", "IET", "IST", "JST", "MIT", "NET", "NST", "PLT", - "PNT", "PRT", "PST", "SST", "VST", - - // Deprecated IANA time zones. - "SystemV/AST4ADT", "SystemV/EST5EDT", "SystemV/CST6CDT", "SystemV/MST7MDT", - "SystemV/PST8PDT", "SystemV/YST9YDT", "SystemV/AST4", "SystemV/EST5", - "SystemV/CST6", "SystemV/MST7", "SystemV/PST8", "SystemV/YST9", "SystemV/HST10", -]; - -for (let timeZone of invalidTimeZones) { - for (let map of tzMapper) { - assertThrowsInstanceOf(() => { - new Intl.DateTimeFormat(undefined, {timeZone: map(timeZone)}); - }, RangeError); - } -} - - -// GMT[+-]hh is invalid, but Etc/GMT[+-]hh is a valid IANA time zone. -for (let gmtOffset = -14; gmtOffset <= 12; ++gmtOffset) { - // Skip Etc/GMT0. - if (gmtOffset === 0) - continue; - - let timeZone = `Etc/GMT${gmtOffset > 0 ? "+" : ""}${gmtOffset}`; - for (let map of tzMapper) { - let dtf = new Intl.DateTimeFormat(undefined, {timeZone: map(timeZone)}); - assertEq(dtf.resolvedOptions().timeZone, timeZone); - } -} - - -const invalidEtcGMTNames = [ - // Out of bounds GMT offset. - "Etc/GMT-15", "Etc/GMT+13", - - // Etc/GMT[+-]hh:mm isn't a IANA time zone name. - "Etc/GMT-10:00", "Etc/GMT+10:00", - "Etc/GMT-1000", "Etc/GMT+1000", -]; - -for (let timeZone of invalidEtcGMTNames) { - for (let map of tzMapper) { - assertThrowsInstanceOf(() => { - new Intl.DateTimeFormat(undefined, {timeZone: map(timeZone)}); - }, RangeError); - } -} - - -// RangeError is thrown for primitive values, because ToString(<primitive>) -// isn't a valid time zone name. -for (let nonStrings of [null, 0, 0.5, true, false]) { - assertThrowsInstanceOf(() => { - new Intl.DateTimeFormat(undefined, {timeZone: nonStrings}); - }, RangeError); -} - -// ToString(<symbol>) throws TypeError. -assertThrowsInstanceOf(() => { - new Intl.DateTimeFormat(undefined, {timeZone: Symbol()}); -}, TypeError); - -// |undefined| or absent "timeZone" option selects the default time zone. -{ - let {timeZone: tzAbsent} = new Intl.DateTimeFormat(undefined, {}).resolvedOptions(); - let {timeZone: tzUndefined} = new Intl.DateTimeFormat(undefined, {timeZone: undefined}).resolvedOptions(); - - assertEq(typeof tzAbsent, "string"); - assertEq(typeof tzUndefined, "string"); - assertEq(tzUndefined, tzAbsent); - - // The default time zone isn't a link name. - let {timeZone: tzDefault} = new Intl.DateTimeFormat(undefined, {timeZone: tzAbsent}).resolvedOptions(); - assertEq(tzDefault, tzAbsent); -} - -// Objects are converted through ToString(). -{ - let timeZone = "Europe/Warsaw"; - let obj = { - toString() { - return timeZone; - } - }; - let dtf = new Intl.DateTimeFormat(undefined, {timeZone: obj}); - assertEq(dtf.resolvedOptions().timeZone, timeZone); -} - - -if (typeof reportCompare === "function") - reportCompare(0, 0, "ok");
deleted file mode 100644 --- a/js/src/tests/Intl/DateTimeFormat/timeZone_backzone.js +++ /dev/null @@ -1,104 +0,0 @@ -// |reftest| skip-if(!this.hasOwnProperty("Intl")) - -const tzMapper = [ - x => x, - x => x.toUpperCase(), - x => x.toLowerCase(), -]; - -// Backzone names derived from IANA Time Zone Database, version tzdata2016f. -const backZones = [ - "Africa/Addis_Ababa", // Africa/Nairobi - "Africa/Asmara", // Africa/Nairobi - "Africa/Bamako", // Africa/Abidjan - "Africa/Bangui", // Africa/Lagos - "Africa/Banjul", // Africa/Abidjan - "Africa/Blantyre", // Africa/Maputo - "Africa/Brazzaville", // Africa/Lagos - "Africa/Bujumbura", // Africa/Maputo - "Africa/Conakry", // Africa/Abidjan - "Africa/Dakar", // Africa/Abidjan - "Africa/Dar_es_Salaam", // Africa/Nairobi - "Africa/Djibouti", // Africa/Nairobi - "Africa/Douala", // Africa/Lagos - "Africa/Freetown", // Africa/Abidjan - "Africa/Gaborone", // Africa/Maputo - "Africa/Harare", // Africa/Maputo - "Africa/Juba", // Africa/Khartoum - "Africa/Kampala", // Africa/Nairobi - "Africa/Kigali", // Africa/Maputo - "Africa/Kinshasa", // Africa/Lagos - "Africa/Libreville", // Africa/Lagos - "Africa/Lome", // Africa/Abidjan - "Africa/Luanda", // Africa/Lagos - "Africa/Lubumbashi", // Africa/Maputo - "Africa/Lusaka", // Africa/Maputo - "Africa/Malabo", // Africa/Lagos - "Africa/Maseru", // Africa/Johannesburg - "Africa/Mbabane", // Africa/Johannesburg - "Africa/Mogadishu", // Africa/Nairobi - "Africa/Niamey", // Africa/Lagos - "Africa/Nouakchott", // Africa/Abidjan - "Africa/Ouagadougou", // Africa/Abidjan - "Africa/Porto-Novo", // Africa/Lagos - "Africa/Sao_Tome", // Africa/Abidjan - "Africa/Timbuktu", // Africa/Abidjan - "America/Anguilla", // America/Port_of_Spain - "America/Antigua", // America/Port_of_Spain - "America/Argentina/ComodRivadavia", // America/Argentina/Catamarca - "America/Aruba", // America/Curacao - "America/Cayman", // America/Panama - "America/Coral_Harbour", // America/Atikokan - "America/Dominica", // America/Port_of_Spain - "America/Ensenada", // America/Tijuana - "America/Grenada", // America/Port_of_Spain - "America/Guadeloupe", // America/Port_of_Spain - "America/Montreal", // America/Toronto - "America/Montserrat", // America/Port_of_Spain - "America/Rosario", // America/Argentina/Cordoba - "America/St_Kitts", // America/Port_of_Spain - "America/St_Lucia", // America/Port_of_Spain - "America/St_Thomas", // America/Port_of_Spain - "America/St_Vincent", // America/Port_of_Spain - "America/Tortola", // America/Port_of_Spain - "Antarctica/McMurdo", // Pacific/Auckland - "Asia/Aden", // Asia/Riyadh - "Asia/Bahrain", // Asia/Qatar - "Asia/Chongqing", // Asia/Shanghai - "Asia/Harbin", // Asia/Shanghai - "Asia/Kashgar", // Asia/Urumqi - "Asia/Kuwait", // Asia/Riyadh - "Asia/Muscat", // Asia/Dubai - "Asia/Phnom_Penh", // Asia/Bangkok - "Asia/Tel_Aviv", // Asia/Jerusalem - "Asia/Vientiane", // Asia/Bangkok - "Atlantic/Jan_Mayen", // Europe/Oslo - "Atlantic/St_Helena", // Africa/Abidjan - "Europe/Belfast", // Europe/London - "Europe/Guernsey", // Europe/London - "Europe/Isle_of_Man", // Europe/London - "Europe/Jersey", // Europe/London - "Europe/Ljubljana", // Europe/Belgrade - "Europe/Sarajevo", // Europe/Belgrade - "Europe/Skopje", // Europe/Belgrade - "Europe/Tiraspol", // Europe/Chisinau - "Europe/Vaduz", // Europe/Zurich - "Europe/Zagreb", // Europe/Belgrade - "Indian/Antananarivo", // Africa/Nairobi - "Indian/Comoro", // Africa/Nairobi - "Indian/Mayotte", // Africa/Nairobi - "Pacific/Johnston", // Pacific/Honolulu - "Pacific/Midway", // Pacific/Pago_Pago - "Pacific/Saipan", // Pacific/Guam -]; - -for (let timeZone of backZones) { - for (let map of tzMapper) { - let dtf = new Intl.DateTimeFormat(undefined, {timeZone: map(timeZone)}); - assertEq(dtf.resolvedOptions().timeZone, timeZone); - } -} - - -if (typeof reportCompare === "function") - reportCompare(0, 0, "ok");
deleted file mode 100644 --- a/js/src/tests/Intl/DateTimeFormat/timeZone_link.js +++ /dev/null @@ -1,152 +0,0 @@ -// |reftest| skip-if(!this.hasOwnProperty("Intl")) - -const tzMapper = [ - x => x, - x => x.toUpperCase(), - x => x.toLowerCase(), -]; - -// Link names derived from IANA Time Zone Database, version tzdata2016f. -const links = [ - ["Africa/Asmera", "Africa/Asmara"], - ["America/Atka", "America/Adak"], - ["America/Buenos_Aires", "America/Argentina/Buenos_Aires"], - ["America/Catamarca", "America/Argentina/Catamarca"], - ["America/Cordoba", "America/Argentina/Cordoba"], - ["America/Fort_Wayne", "America/Indiana/Indianapolis"], - ["America/Indianapolis", "America/Indiana/Indianapolis"], - ["America/Jujuy", "America/Argentina/Jujuy"], - ["America/Knox_IN", "America/Indiana/Knox"], - ["America/Kralendijk", "America/Curacao"], - ["America/Louisville", "America/Kentucky/Louisville"], - ["America/Lower_Princes", "America/Curacao"], - ["America/Marigot", "America/Port_of_Spain"], - ["America/Mendoza", "America/Argentina/Mendoza"], - ["America/Porto_Acre", "America/Rio_Branco"], - // Enable when we support tzdata2016a or later. - // ["America/Santa_Isabel", "America/Tijuana"], - ["America/Santa_Isabel", "America/Santa_Isabel"], - ["America/Shiprock", "America/Denver"], - ["America/St_Barthelemy", "America/Port_of_Spain"], - ["America/Virgin", "America/Port_of_Spain"], - ["Antarctica/South_Pole", "Antarctica/McMurdo"], - ["Arctic/Longyearbyen", "Europe/Oslo"], - ["Asia/Ashkhabad", "Asia/Ashgabat"], - ["Asia/Calcutta", "Asia/Kolkata"], - ["Asia/Chungking", "Asia/Chongqing"], - ["Asia/Dacca", "Asia/Dhaka"], - ["Asia/Istanbul", "Europe/Istanbul"], - ["Asia/Katmandu", "Asia/Kathmandu"], - ["Asia/Macao", "Asia/Macau"], - ["Asia/Saigon", "Asia/Ho_Chi_Minh"], - ["Asia/Thimbu", "Asia/Thimphu"], - ["Asia/Ujung_Pandang", "Asia/Makassar"], - ["Asia/Ulan_Bator", "Asia/Ulaanbaatar"], - ["Atlantic/Faeroe", "Atlantic/Faroe"], - ["Australia/ACT", "Australia/Sydney"], - ["Australia/Canberra", "Australia/Sydney"], - ["Australia/LHI", "Australia/Lord_Howe"], - ["Australia/NSW", "Australia/Sydney"], - ["Australia/North", "Australia/Darwin"], - ["Australia/Queensland", "Australia/Brisbane"], - ["Australia/South", "Australia/Adelaide"], - ["Australia/Tasmania", "Australia/Hobart"], - ["Australia/Victoria", "Australia/Melbourne"], - ["Australia/West", "Australia/Perth"], - ["Australia/Yancowinna", "Australia/Broken_Hill"], - ["Brazil/Acre", "America/Rio_Branco"], - ["Brazil/DeNoronha", "America/Noronha"], - ["Brazil/East", "America/Sao_Paulo"], - ["Brazil/West", "America/Manaus"], - ["Canada/Atlantic", "America/Halifax"], - ["Canada/Central", "America/Winnipeg"], - ["Canada/East-Saskatchewan", "America/Regina"], - ["Canada/Eastern", "America/Toronto"], - ["Canada/Mountain", "America/Edmonton"], - ["Canada/Newfoundland", "America/St_Johns"], - ["Canada/Pacific", "America/Vancouver"], - ["Canada/Saskatchewan", "America/Regina"], - ["Canada/Yukon", "America/Whitehorse"], - ["Chile/Continental", "America/Santiago"], - ["Chile/EasterIsland", "Pacific/Easter"], - ["Cuba", "America/Havana"], - ["Egypt", "Africa/Cairo"], - ["Eire", "Europe/Dublin"], - ["Etc/GMT+0", "Etc/GMT"], - ["Etc/GMT-0", "Etc/GMT"], - ["Etc/GMT0", "Etc/GMT"], - ["Etc/Greenwich", "Etc/GMT"], - ["Etc/Universal", "Etc/UTC"], - ["Etc/Zulu", "Etc/UTC"], - ["Europe/Bratislava", "Europe/Prague"], - ["Europe/Busingen", "Europe/Zurich"], - ["Europe/Mariehamn", "Europe/Helsinki"], - ["Europe/Nicosia", "Asia/Nicosia"], - ["Europe/Podgorica", "Europe/Belgrade"], - ["Europe/San_Marino", "Europe/Rome"], - ["Europe/Vatican", "Europe/Rome"], - ["GB", "Europe/London"], - ["GB-Eire", "Europe/London"], - ["GMT", "Etc/GMT"], - ["GMT+0", "Etc/GMT"], - ["GMT-0", "Etc/GMT"], - ["GMT0", "Etc/GMT"], - ["Greenwich", "Etc/GMT"], - ["Hongkong", "Asia/Hong_Kong"], - ["Iceland", "Atlantic/Reykjavik"], - ["Iran", "Asia/Tehran"], - ["Israel", "Asia/Jerusalem"], - ["Jamaica", "America/Jamaica"], - ["Japan", "Asia/Tokyo"], - ["Kwajalein", "Pacific/Kwajalein"], - ["Libya", "Africa/Tripoli"], - ["Mexico/BajaNorte", "America/Tijuana"], - ["Mexico/BajaSur", "America/Mazatlan"], - ["Mexico/General", "America/Mexico_City"], - ["NZ", "Pacific/Auckland"], - ["NZ-CHAT", "Pacific/Chatham"], - ["Navajo", "America/Denver"], - ["PRC", "Asia/Shanghai"], - ["Pacific/Ponape", "Pacific/Pohnpei"], - ["Pacific/Samoa", "Pacific/Pago_Pago"], - ["Pacific/Truk", "Pacific/Chuuk"], - ["Pacific/Yap", "Pacific/Chuuk"], - ["Poland", "Europe/Warsaw"], - ["Portugal", "Europe/Lisbon"], - ["ROC", "Asia/Taipei"], - ["ROK", "Asia/Seoul"], - ["Singapore", "Asia/Singapore"], - ["Turkey", "Europe/Istanbul"], - ["UCT", "Etc/UCT"], - ["US/Alaska", "America/Anchorage"], - ["US/Aleutian", "America/Adak"], - ["US/Arizona", "America/Phoenix"], - ["US/Central", "America/Chicago"], - ["US/East-Indiana", "America/Indiana/Indianapolis"], - ["US/Eastern", "America/New_York"], - ["US/Hawaii", "Pacific/Honolulu"], - ["US/Indiana-Starke", "America/Indiana/Knox"], - ["US/Michigan", "America/Detroit"], - ["US/Mountain", "America/Denver"], - ["US/Pacific", "America/Los_Angeles"], - ["US/Pacific-New", "America/Los_Angeles"], - ["US/Samoa", "Pacific/Pago_Pago"], - ["UTC", "Etc/UTC"], - ["Universal", "Etc/UTC"], - ["W-SU", "Europe/Moscow"], - ["Zulu", "Etc/UTC"], -]; - -for (let [linkName, target] of links) { - if (target === "Etc/UTC" || target === "Etc/GMT") - target = "UTC"; - - for (let map of tzMapper) { - let dtf = new Intl.DateTimeFormat(undefined, {timeZone: map(linkName)}); - assertEq(dtf.resolvedOptions().timeZone, target, `${linkName} -> ${target}`); - } -} - - -if (typeof reportCompare === "function") - reportCompare(0, 0, "ok");
--- a/js/src/tests/jstests.list +++ b/js/src/tests/jstests.list @@ -29,21 +29,16 @@ skip script test262/intl402/ch11/11.3/11 skip script test262/intl402/ch12/12.3/12.3.3_L15.js skip script test262/intl402/ch12/12.3/12.3.2_L15.js skip script test262/intl402/ch12/12.3/12.3.2_1_a_L15.js skip script test262/intl402/ch12/12.1/12.1_L15.js skip script test262/intl402/ch12/12.2/12.2.2_L15.js skip script test262/ch13/13.2/13.2-15-1.js skip script test262/ch11/11.4/11.4.1/11.4.1-5-a-28-s.js -# ECMA-402 1st ed. required |timeZoneName: undefined|, but newer versions have -# changed it to being the default time zone, cf. the NOTE in -# Intl.DateTimeFormat.prototype.resolvedOptions(). -skip script test262/intl402/ch12/12.3/12.3.3.js - ####################################################################### # Tests disabled due to jstest limitations wrt imported test262 tests # ####################################################################### # These tests are disabled because jstest doesn't understand @negative (without # a pattern) yet. skip script test262/ch07/7.2/S7.2_A5_T1.js skip script test262/ch07/7.2/S7.2_A5_T2.js
--- a/js/src/vm/SelfHosting.cpp +++ b/js/src/vm/SelfHosting.cpp @@ -1871,16 +1871,26 @@ intrinsic_RuntimeDefaultLocale(JSContext if (!jslocale) return false; args.rval().setString(jslocale); return true; } static bool +intrinsic_LocalTZA(JSContext* cx, unsigned argc, Value* vp) +{ + CallArgs args = CallArgsFromVp(argc, vp); + MOZ_ASSERT(args.length() == 0, "the LocalTZA intrinsic takes no arguments"); + + args.rval().setDouble(DateTimeInfo::localTZA()); + return true; +} + +static bool intrinsic_AddContentTelemetry(JSContext* cx, unsigned argc, Value* vp) { CallArgs args = CallArgsFromVp(argc, vp); MOZ_ASSERT(args.length() == 2); int id = args[0].toInt32(); MOZ_ASSERT(id < JS_TELEMETRY_END); MOZ_ASSERT(id >= 0); @@ -2299,16 +2309,17 @@ static const JSFunctionSpec intrinsic_fu JS_FN("DumpMessage", intrinsic_DumpMessage, 1,0), JS_FN("OwnPropertyKeys", intrinsic_OwnPropertyKeys, 1,0), JS_FN("MakeDefaultConstructor", intrinsic_MakeDefaultConstructor, 2,0), JS_FN("_ConstructorForTypedArray", intrinsic_ConstructorForTypedArray, 1,0), JS_FN("_NameForTypedArray", intrinsic_NameForTypedArray, 1,0), JS_FN("DecompileArg", intrinsic_DecompileArg, 2,0), JS_FN("_FinishBoundFunctionInit", intrinsic_FinishBoundFunctionInit, 4,0), JS_FN("RuntimeDefaultLocale", intrinsic_RuntimeDefaultLocale, 0,0), + JS_FN("LocalTZA", intrinsic_LocalTZA, 0,0), JS_FN("AddContentTelemetry", intrinsic_AddContentTelemetry, 2,0), JS_INLINABLE_FN("_IsConstructing", intrinsic_IsConstructing, 0,0, IntrinsicIsConstructing), JS_INLINABLE_FN("SubstringKernel", intrinsic_SubstringKernel, 3,0, IntrinsicSubstringKernel), JS_INLINABLE_FN("_DefineDataProperty", intrinsic_DefineDataProperty, 4,0, IntrinsicDefineDataProperty), @@ -2483,24 +2494,21 @@ static const JSFunctionSpec intrinsic_fu JS_FN("Store_" #_name, js::StoreReference##_name::Func, 3, 0), \ JS_FN("Load_" #_name, js::LoadReference##_name::Func, 3, 0), JS_FOR_EACH_REFERENCE_TYPE_REPR(LOAD_AND_STORE_REFERENCE_FN_DECLS) #undef LOAD_AND_STORE_REFERENCE_FN_DECLS // See builtin/Intl.h for descriptions of the intl_* functions. JS_FN("intl_availableCalendars", intl_availableCalendars, 1,0), JS_FN("intl_availableCollations", intl_availableCollations, 1,0), - JS_FN("intl_availableTimeZones", intl_availableTimeZones, 0,0), - JS_FN("intl_canonicalizeTimeZone", intl_canonicalizeTimeZone, 1,0), JS_FN("intl_Collator", intl_Collator, 2,0), JS_FN("intl_Collator_availableLocales", intl_Collator_availableLocales, 0,0), JS_FN("intl_CompareStrings", intl_CompareStrings, 3,0), JS_FN("intl_DateTimeFormat", intl_DateTimeFormat, 2,0), JS_FN("intl_DateTimeFormat_availableLocales", intl_DateTimeFormat_availableLocales, 0,0), - JS_FN("intl_defaultTimeZone", intl_defaultTimeZone, 0,0), JS_FN("intl_FormatDateTime", intl_FormatDateTime, 2,0), JS_FN("intl_FormatNumber", intl_FormatNumber, 2,0), JS_FN("intl_GetCalendarInfo", intl_GetCalendarInfo, 1,0), JS_FN("intl_NumberFormat", intl_NumberFormat, 2,0), JS_FN("intl_NumberFormat_availableLocales", intl_NumberFormat_availableLocales, 0,0), JS_FN("intl_numberingSystem", intl_numberingSystem, 1,0), JS_FN("intl_patternForSkeleton", intl_patternForSkeleton, 2,0),
--- a/security/manager/ssl/StaticHPKPins.h +++ b/security/manager/ssl/StaticHPKPins.h @@ -1159,9 +1159,9 @@ static const TransportSecurityPreload kP { "za.search.yahoo.com", false, true, false, -1, &kPinset_yahoo }, { "zh.search.yahoo.com", false, true, false, -1, &kPinset_yahoo }, }; // Pinning Preload List Length = 463; static const int32_t kUnknownId = -1; -static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1484429067871000); +static const PRTime kPreloadPKPinsExpirationTime = INT64_C(1484831463579000);
--- a/security/manager/ssl/nsSTSPreloadList.errors +++ b/security/manager/ssl/nsSTSPreloadList.errors @@ -5,20 +5,20 @@ 0x.sk: could not connect to host 0x1337.eu: could not connect to host 0x44.net: did not receive HSTS header 0xb612.org: could not connect to host 1018hosting.nl: did not receive HSTS header 1022996493.rsc.cdn77.org: could not connect to host 10seos.com: did not receive HSTS header 123plons.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] 12vpnchina.com: could not connect to host -1464424382.rsc.cdn77.org: did not receive HSTS header 18f.gov: did not receive HSTS header 18f.gsa.gov: did not receive HSTS header 1a-jva.de: did not receive HSTS header +1item.co.il: did not receive HSTS header 1p.ro: could not connect to host 1password.com: did not receive HSTS header 1whw.co.uk: could not connect to host 206rc.net: max-age too low: 2592000 25daysof.io: max-age too low: 0 2859cc.com: could not connect to host 2or3.tk: could not connect to host 300651.ru: did not receive HSTS header @@ -29,17 +29,16 @@ 360gradus.com: did not receive HSTS head 365.or.jp: did not receive HSTS header 3chit.cf: could not connect to host 420dongstorm.com: could not connect to host 42ms.org: could not connect to host 4455software.com: did not receive HSTS header 47ronin.com: did not receive HSTS header 4elements.com: did not receive HSTS header 4mm.org: did not receive HSTS header -4ourty2.org: could not connect to host 4sqsu.eu: could not connect to host 50millionablaze.org: did not receive HSTS header 56ct.com: could not connect to host 60ych.net: did not receive HSTS header 7kovrikov.ru: did not receive HSTS header 808.lv: could not connect to host 83i.net: could not connect to host 8ack.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] @@ -47,35 +46,33 @@ 911911.pw: could not connect to host 9906753.net: did not receive HSTS header 9point6.com: could not connect to host a-plus.space: could not connect to host a9c.co: could not connect to host aaron-gustafson.com: could not connect to host abcheck.se: could not connect to host abearofsoap.com: did not receive HSTS header abecodes.net: did not receive HSTS header +abeestrada.com: did not receive HSTS header abilitylist.org: did not receive HSTS header abioniere.de: could not connect to host aboutyou-deals.de: did not receive HSTS header abtom.de: did not receive HSTS header abury.fr: did not receive HSTS header abury.me: did not receive HSTS header accelerole.com: did not receive HSTS header accountradar.com: could not connect to host accuenergy.com: max-age too low: 0 -acnpacific.com: did not receive HSTS header acorns.com: did not receive HSTS header acr.im: could not connect to host acslimited.co.uk: did not receive HSTS header activeweb.top: could not connect to host activiti.alfresco.com: did not receive HSTS header -actserv.co.ke: could not connect to host acuve.jp: could not connect to host ada.is: max-age too low: 2592000 -adamradocz.com: could not connect to host adams.net: max-age too low: 0 adamwk.com: did not receive HSTS header adboos.com: did not receive HSTS header addvocate.com: could not connect to host adevel.eu: could not connect to host adhs-chaoten.net: did not receive HSTS header admin.google.com: did not receive HSTS header (error ignored - included regardless) admsel.ec: could not connect to host @@ -109,32 +106,31 @@ aishnair.com: could not connect to host aiticon.de: did not receive HSTS header aiw-thkoeln.online: could not connect to host ajmahal.com: could not connect to host akclinics.org: did not receive HSTS header akselimedia.fi: did not receive HSTS header akutun.cl: did not receive HSTS header al-shami.net: could not connect to host alainwolf.net: could not connect to host +alair.cn: could not connect to host alanlee.net: could not connect to host alanrickmanflipstable.com: could not connect to host alariel.de: could not connect to host alarmsystemreviews.com: did not receive HSTS header albertbogdanowicz.pl: could not connect to host albertopimienta.com: did not receive HSTS header alcazaar.com: could not connect to host aleax.me: could not connect to host alecvannoten.be: did not receive HSTS header alessandro.pw: did not receive HSTS header alethearose.com: did not receive HSTS header alexisabarca.com: did not receive HSTS header -alexpavel.com: could not connect to host alfredxing.com: did not receive HSTS header alkami.com: did not receive HSTS header -alkamitech.com: did not receive HSTS header all-subtitles.com: did not receive HSTS header allinnote.com: could not connect to host allmbw.com: could not connect to host allstarswithus.com: could not connect to host alpha.irccloud.com: could not connect to host alphabit-secure.com: could not connect to host alphabuild.io: did not receive HSTS header alphalabs.xyz: could not connect to host @@ -160,16 +156,17 @@ andreasolsson.se: could not connect to h andrewmichaud.beer: could not connect to host andrewmichaud.me: did not receive HSTS header androoz.se: did not receive HSTS header andymartin.cc: did not receive HSTS header anfsanchezo.me: could not connect to host anghami.com: did not receive HSTS header animeday.ml: could not connect to host animesfusion.com.br: could not connect to host +animesharp.com: could not connect to host animurecs.com: could not connect to host aniplus.cf: could not connect to host aniplus.gq: could not connect to host aniplus.ml: could not connect to host ankakaak.com: could not connect to host annabellaw.com: max-age too low: 0 anomaly.ws: did not receive HSTS header anonboards.com: did not receive HSTS header @@ -185,45 +182,47 @@ any.pm: could not connect to host anycoin.me: could not connect to host apachelounge.com: did not receive HSTS header apeasternpower.com: max-age too low: 0 api.lookout.com: could not connect to host api.mega.co.nz: could not connect to host api.recurly.com: did not receive HSTS header apibot.de: could not connect to host apis.google.com: did not receive HSTS header (error ignored - included regardless) -apk4fun.com: did not receive HSTS header aponkral.net: did not receive HSTS header aponkralsunucu.com: did not receive HSTS header app.lookout.com: could not connect to host app.manilla.com: could not connect to host appengine.google.com: did not receive HSTS header (error ignored - included regardless) -appleoosa.com: did not receive HSTS header +appleoosa.com: could not connect to host applez.xyz: could not connect to host applic8.com: did not receive HSTS header appraisal-comps.com: could not connect to host approlys.fr: did not receive HSTS header apps-for-fishing.com: could not connect to host +appsbystudio.co.uk: could not connect to host appseccalifornia.org: did not receive HSTS header arabdigitalexpression.org: did not receive HSTS header aradulconteaza.ro: could not connect to host aran.me.uk: could not connect to host arbu.eu: max-age too low: 2419200 arlen.se: could not connect to host armory.consulting: could not connect to host armory.supplies: could not connect to host armytricka.cz: did not receive HSTS header arrayify.com: could not connect to host +ars-design.net: could not connect to host ars.toscana.it: max-age too low: 0 art2web.net: could not connect to host artistnetwork.nl: did not receive HSTS header asasuou.pw: could not connect to host asc16.com: could not connect to host asdpress.cn: could not connect to host askme24.de: could not connect to host +asmui.ml: could not connect to host ass.org.au: did not receive HSTS header assdecoeur.org: could not connect to host asset-alive.com: did not receive HSTS header asset-alive.net: did not receive HSTS header astrolpost.com: could not connect to host atavio.at: could not connect to host atavio.ch: could not connect to host athul.xyz: did not receive HSTS header @@ -236,16 +235,17 @@ aubiosales.com: did not receive HSTS hea auditmatrix.com: did not receive HSTS header auf-feindgebiet.de: could not connect to host aujapan.ru: could not connect to host aurainfosec.com.au: could not connect to host ausnah.me: could not connect to host auszeit.bio: did not receive HSTS header auth.mail.ru: did not receive HSTS header authentication.io: could not connect to host +authint.com: could not connect to host auto-serwis.zgorzelec.pl: did not receive HSTS header auto4trade.nl: could not connect to host autokovrik-diskont.ru: did not receive HSTS header automacity.com: could not connect to host autotsum.com: could not connect to host autumnwindsagility.com: could not connect to host auverbox.ovh: did not receive HSTS header av.de: did not receive HSTS header @@ -263,21 +263,21 @@ babelfisch.eu: could not connect to host baby-click.de: could not connect to host babybic.hu: did not receive HSTS header babyhouse.xyz: could not connect to host babysaying.me: could not connect to host back-bone.nl: did not receive HSTS header badcronjob.com: could not connect to host baff.lu: did not receive HSTS header baiduaccount.com: could not connect to host +baiker.info: did not receive HSTS header bakkerdesignandbuild.com: did not receive HSTS header balcan-underground.net: could not connect to host baldwinkoo.com: could not connect to host bandb.xyz: could not connect to host -bangzafran.com: could not connect to host banqingdiao.com: could not connect to host barely.sexy: did not receive HSTS header bashcode.ninja: could not connect to host basicsolutionsus.com: did not receive HSTS header baumstark.ca: did not receive HSTS header bazarstupava.sk: did not receive HSTS header bcbsmagentprofile.com: could not connect to host bccx.com: could not connect to host @@ -290,17 +290,16 @@ beach-inspector.com: did not receive HST beachi.es: could not connect to host beaglewatch.com: could not connect to host beastowner.com: did not receive HSTS header beavers.io: could not connect to host bebesurdoue.com: could not connect to host bedeta.de: could not connect to host bedreid.dk: did not receive HSTS header bedrijvenadministratie.nl: did not receive HSTS header -beeksnetwork.nl: could not connect to host beholdthehurricane.com: could not connect to host beier.io: could not connect to host belairsewvac.com: did not receive HSTS header belics.com: did not receive HSTS header belliash.eu.org: could not connect to host belltower.io: could not connect to host beneffy.com: did not receive HSTS header benk.press: could not connect to host @@ -308,16 +307,17 @@ benny003.de: did not receive HSTS header benzkosmetik.de: could not connect to host bermytraq.bm: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] berrymark.be: max-age too low: 0 besixdouze.world: could not connect to host betafive.net: could not connect to host betnet.fr: could not connect to host betplanning.it: did not receive HSTS header bets.de: did not receive HSTS header +betterlifemakers.com: could not connect to host bettween.com: did not receive HSTS header betz.ro: did not receive HSTS header bevapehappy.com: did not receive HSTS header bezorg.ninja: could not connect to host bf.am: max-age too low: 0 bgcparkstad.nl: did not receive HSTS header bgmn.net: could not connect to host bi.search.yahoo.com: did not receive HSTS header @@ -338,35 +338,38 @@ birkman.com: did not receive HSTS header bismarck.moe: did not receive HSTS header bitchan.it: could not connect to host bitcoinworld.me: could not connect to host bitf.ly: could not connect to host bitfactory.ws: could not connect to host bitfarm-archiv.com: did not receive HSTS header bitfarm-archiv.de: did not receive HSTS header bitgo.com: max-age too low: 0 +bitheus.com: could not connect to host bithosting.io: did not receive HSTS header bitsafe.systems: could not connect to host +bitsensor.io: could not connect to host bitvigor.com: could not connect to host bivsi.com: could not connect to host bizcms.com: did not receive HSTS header bizon.sk: did not receive HSTS header black-armada.com.pl: could not connect to host blackburn.link: did not receive HSTS header blackdragoninc.org: could not connect to host blacklane.com: did not receive HSTS header blackly.uk: could not connect to host blackpayment.ru: could not connect to host +blenheimchalcot.com: did not receive HSTS header blha303.com.au: could not connect to host blindsexdate.nl: could not connect to host blog.cyveillance.com: did not receive HSTS header blog.lookout.com: did not receive HSTS header +bloglikepro.com: did not receive HSTS header blubbablasen.de: could not connect to host blucas.org: did not receive HSTS header -blue-labs.org: could not connect to host blueliv.com: did not receive HSTS header bluetenmeer.com: did not receive HSTS header bm-trading.nl: did not receive HSTS header bngsecure.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] bobiji.com: did not receive HSTS header bockenauer.at: max-age too low: 0 bodo-wolff.de: could not connect to host bodyblog.nl: did not receive HSTS header @@ -392,58 +395,61 @@ br3in.nl: [Exception... "Component retur braineet.com: did not receive HSTS header brainfork.ml: could not connect to host braintreegateway.com: did not receive HSTS header braintreepayments.com: did not receive HSTS header brainvation.de: did not receive HSTS header bran.cc: could not connect to host branchtrack.com: did not receive HSTS header brandon.so: could not connect to host +bregnedalsystems.dk: did not receive HSTS header brks.xyz: could not connect to host broken-oak.com: could not connect to host brokenhands.io: could not connect to host brookechase.com: did not receive HSTS header browserid.org: did not receive HSTS header brunix.net: did not receive HSTS header +bsagan.fr: could not connect to host bsdtips.com: could not connect to host btcdlc.com: could not connect to host buch-cuber.de: could not connect to host buchheld.at: did not receive HSTS header budgetthostels.nl: did not receive HSTS header budskap.eu: did not receive HSTS header bugtrack.co.uk: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] buhler.pro: did not receive HSTS header buildsaver.co.za: did not receive HSTS header -built.by: could not connect to host +built.by: did not receive HSTS header bulletpoint.cz: did not receive HSTS header bumarkamoda.com: did not receive HSTS header bunaken.asia: could not connect to host burian-server.cz: could not connect to host business.lookout.com: could not connect to host businesshosting.nl: did not receive HSTS header busold.ws: could not connect to host bustimes.org: could not connect to host butchersworkshop.com: did not receive HSTS header buttercoin.com: could not connect to host buybaby.eu: did not receive HSTS header buyfox.de: did not receive HSTS header buzzconcert.com: could not connect to host bvalle.com: did not receive HSTS header +bw81.xyz: could not connect to host bydisk.com: could not connect to host bypassed.press: could not connect to host bypro.xyz: could not connect to host bysymphony.com: max-age too low: 0 bytepark.de: did not receive HSTS header bytesatwork.de: could not connect to host bytesatwork.eu: could not connect to host -bytesunlimited.com: could not connect to host c1yd3i.me: could not connect to host c3b.info: could not connect to host cabarave.com: could not connect to host cabusar.fr: could not connect to host +caconnect.org: could not connect to host cadao.me: did not receive HSTS header cadusilva.com: did not receive HSTS header cafe-scientifique.org.ec: could not connect to host caim.cz: did not receive HSTS header caizx.com: did not receive HSTS header cajapopcorn.com: did not receive HSTS header cake.care: could not connect to host calgaryconstructionjobs.com: could not connect to host @@ -471,27 +477,30 @@ casa-due-pur.com: could not connect to h casedi.org: max-age too low: 0 casinostest.com: did not receive HSTS header casovi.cf: could not connect to host catinmay.com: did not receive HSTS header catnapstudios.com: could not connect to host caveclan.org: did not receive HSTS header cavedroid.xyz: could not connect to host cbhq.net: could not connect to host +ccblog.de: could not connect to host ccsys.com: could not connect to host cctech.ph: did not receive HSTS header cd.search.yahoo.com: did not receive HSTS header cd0.us: could not connect to host cdkeykopen.com: did not receive HSTS header cdnb.co: could not connect to host cdndepo.com: did not receive HSTS header cdreporting.co.uk: did not receive HSTS header cejhon.cz: could not connect to host +ceml.ch: did not receive HSTS header centralvacsunlimited.net: did not receive HSTS header centrepoint-community.com: could not connect to host +cerize.love: could not connect to host cert.se: max-age too low: 2628001 cesal.net: could not connect to host cesidianroot.eu: could not connect to host cevrimici.com: could not connect to host cfetengineering.com: could not connect to host cg.search.yahoo.com: did not receive HSTS header chainmonitor.com: could not connect to host championsofregnum.com: did not receive HSTS header @@ -531,27 +540,25 @@ christophheich.me: could not connect to chrisupjohn.com: could not connect to host chrome-devtools-frontend.appspot.com: did not receive HSTS header (error ignored - included regardless) chrome.google.com: did not receive HSTS header (error ignored - included regardless) chroniclesofgeorge.com: did not receive HSTS header chua.cf: could not connect to host cidr.ml: could not connect to host cip.md: did not receive HSTS header ciplanutrition.com: did not receive HSTS header -ciscommerce.net: could not connect to host citiagent.cz: could not connect to host cityoflaurel.org: did not receive HSTS header classicspublishing.com: could not connect to host clcleaningco.com: could not connect to host cleaningsquad.ca: max-age too low: 0 clerkendweller.uk: could not connect to host cleververmarkten.com: could not connect to host cleververmarkten.de: could not connect to host clickandgo.com: did not receive HSTS header -clickphish.com: could not connect to host clint.id.au: max-age too low: 0 clintonbloodworth.com: could not connect to host clintonbloodworth.io: could not connect to host clintwilson.technology: max-age too low: 2592000 cloud.wtf: could not connect to host cloudapi.vc: could not connect to host cloudcert.org: did not receive HSTS header cloudcy.net: could not connect to host @@ -559,36 +566,42 @@ clouddesktop.co.nz: could not connect to cloudey.net: did not receive HSTS header cloudflare.com: did not receive HSTS header cloudimag.es: could not connect to host cloudns.com.au: could not connect to host cloudstoragemaus.com: could not connect to host cloudteam.de: could not connect to host cloudwalk.io: did not receive HSTS header cloverleaf.net: max-age too low: 0 +cmacacias.ch: did not receive HSTS header cmc-versand.de: did not receive HSTS header cmci.dk: did not receive HSTS header +cmlachapelle.ch: did not receive HSTS header +cmlancy.ch: did not receive HSTS header +cmlignon.ch: did not receive HSTS header +cmplainpalais.ch: did not receive HSTS header cmsbattle.com: could not connect to host cmscafe.ru: did not receive HSTS header cn.search.yahoo.com: did not receive HSTS header co50.com: did not receive HSTS header -codabix.com: did not receive HSTS header +codabix.com: could not connect to host codabix.de: could not connect to host codabix.net: could not connect to host code.google.com: did not receive HSTS header (error ignored - included regardless) codeco.pw: could not connect to host codeforce.io: did not receive HSTS header codefoundry.it: did not receive HSTS header codepx.com: did not receive HSTS header codewiththepros.org: could not connect to host -coding.net: did not receive HSTS header +codiva.io: max-age too low: 2592000 coffeeetc.co.uk: did not receive HSTS header coffeestrategies.com: max-age too low: 2592000 coiffeurschnittstelle.ch: did not receive HSTS header coindam.com: could not connect to host +coldfff.com: could not connect to host colengo.com: did not receive HSTS header colisfrais.com: did not receive HSTS header collegepulse.org: could not connect to host collies.eu: did not receive HSTS header collins.kg: did not receive HSTS header colmexpro.com: max-age too low: 2592000 colognegaming.net: could not connect to host coloradocomputernetworking.net: could not connect to host @@ -633,28 +646,29 @@ cracking.org: did not receive HSTS heade craftbeerbarn.co.uk: could not connect to host crate.io: did not receive HSTS header cravelyrics.com: could not connect to host crazycen.com: did not receive HSTS header crazyhotseeds.com: did not receive HSTS header creativephysics.ml: could not connect to host criena.net: could not connect to host crizk.com: could not connect to host -cross-view.com: did not receive HSTS header cross-x.com: could not connect to host +crosssec.com: did not receive HSTS header crowd.supply: could not connect to host crowdcurity.com: did not receive HSTS header crowdjuris.com: could not connect to host crudysql.com: could not connect to host cruzr.xyz: could not connect to host crypt.guru: could not connect to host cryptify.eu: did not receive HSTS header cryptobells.com: did not receive HSTS header cryptobin.org: could not connect to host cryptojar.io: did not receive HSTS header +cryptolab.tk: could not connect to host cryptopush.com: could not connect to host crysadm.com: max-age too low: 1 crystalchandelierservices.com: could not connect to host crystalclassics.co.uk: did not receive HSTS header csapak.com: max-age too low: 0 csawctf.poly.edu: could not connect to host csfs.org.uk: could not connect to host csgodicegame.com: did not receive HSTS header @@ -675,17 +689,16 @@ cycleluxembourg.lu: did not receive HSTS cydia-search.io: could not connect to host cyphertite.com: could not connect to host dad256.tk: could not connect to host dah5.com: did not receive HSTS header dailystormerpodcasts.com: did not receive HSTS header daimadi.com: could not connect to host dakrib.net: could not connect to host daniel-steuer.de: did not receive HSTS header -danielcowie.me: could not connect to host danieldk.eu: did not receive HSTS header danielworthy.com: did not receive HSTS header danijobs.com: could not connect to host danpiel.net: could not connect to host danrl.de: did not receive HSTS header daolerp.xyz: could not connect to host dario.im: could not connect to host dark-x.cf: could not connect to host @@ -699,16 +712,17 @@ datahove.no: did not receive HSTS header datarank.com: max-age too low: 0 dataretention.solutions: could not connect to host datenkeks.de: did not receive HSTS header datenreiter.cf: could not connect to host datenreiter.gq: could not connect to host datenreiter.ml: could not connect to host datenreiter.tk: could not connect to host datewon.net: did not receive HSTS header +davidadrian.org: could not connect to host davidhunter.scot: did not receive HSTS header davidreinhardt.de: could not connect to host daylightcompany.com: did not receive HSTS header db.gy: could not connect to host dbx.ovh: did not receive HSTS header dccode.gov: could not connect to host dcurt.is: did not receive HSTS header dden.ca: could not connect to host @@ -730,37 +744,38 @@ decomplify.com: could not connect to hos dedicatutiempo.es: could not connect to host deepcovelabs.net: could not connect to host degroetenvanrosaline.nl: did not receive HSTS header deight.co: could not connect to host dekasan.ru: could not connect to host deliverance.co.uk: could not connect to host deltaconcepts.de: did not receive HSTS header deltanet-production.de: could not connect to host +demilitarized.ninja: did not receive HSTS header democracychronicles.com: did not receive HSTS header denh.am: did not receive HSTS header denisjean.fr: could not connect to host dentaldomain.org: did not receive HSTS header dentaldomain.ph: did not receive HSTS header depijl-mz.nl: did not receive HSTS header -depixion.agency: did not receive HSTS header +depixion.agency: could not connect to host dequehablamos.es: could not connect to host derevtsov.com: did not receive HSTS header derwolfe.net: did not receive HSTS header detector.exposed: could not connect to host detest.org: could not connect to host detutorial.com: max-age too low: 0 devh.de: did not receive HSTS header devincrow.me: could not connect to host devinfo.net: did not receive HSTS header -devolution.ws: could not connect to host devuan.org: did not receive HSTS header diablotine.rocks: could not connect to host diarbag.us: did not receive HSTS header diasp.cz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] +diasp.org: did not receive HSTS header diedrich.co: could not connect to host digitaldaddy.net: could not connect to host digitalriver.tk: could not connect to host digitalskillswap.com: could not connect to host dinamoelektrik.com: max-age too low: 0 discoveringdocker.com: did not receive HSTS header discovery.lookout.com: did not receive HSTS header dislocated.de: did not receive HSTS header @@ -777,58 +792,61 @@ dns.google.com: did not receive HSTS hea do-do.tk: could not connect to host do.search.yahoo.com: did not receive HSTS header dobet.in: could not connect to host docket.news: could not connect to host docs.google.com: did not receive HSTS header (error ignored - included regardless) doeswindowssuckforeveryoneorjustme.com: could not connect to host dogbox.se: did not receive HSTS header dohosting.ru: could not connect to host -doleta.gov: did not receive HSTS header dollarstore24.com: could not connect to host dollywiki.co.uk: could not connect to host dolphin-cloud.com: could not connect to host dolphincorp.co.uk: max-age too low: 0 domaris.de: did not receive HSTS header dominique-mueller.de: did not receive HSTS header donzelot.co.uk: max-age too low: 3600 doomleika.com: could not connect to host dopost.it: did not receive HSTS header doridian.com: could not connect to host doridian.de: could not connect to host doridian.net: did not receive HSTS header doridian.org: could not connect to host +dot.ro: max-age too low: 0 dotadata.me: could not connect to host download.jitsi.org: did not receive HSTS header downsouthweddings.com.au: did not receive HSTS header doyoucheck.com: did not receive HSTS header dpratt.de: could not connect to host dprd-wonogirikab.go.id: did not receive HSTS header dragonisles.net: could not connect to host dragons-of-highlands.cz: could not connect to host dragontrainingmobilezoo.com.au: max-age too low: 0 draw.uy: did not receive HSTS header drbethanybarnes.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] dreadbyte.com: could not connect to host dreamlinehost.com: did not receive HSTS header +dreizwosechs.de: did not receive HSTS header drishti.guru: could not connect to host drive.google.com: did not receive HSTS header (error ignored - included regardless) driving-lessons.co.uk: did not receive HSTS header droidboss.com: could not connect to host dropcam.com: did not receive HSTS header drtroyhendrickson.com: could not connect to host drumbandesperanto.nl: could not connect to host dshiv.io: could not connect to host +dubrovskiy.net: could not connect to host +dubrovskiy.pro: could not connect to host +duckasylum.com: could not connect to host duesee.org: could not connect to host duria.de: max-age too low: 3600 dutch1.nl: did not receive HSTS header dwhd.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] dycontrol.de: could not connect to host dylanscott.com.au: did not receive HSTS header -dziekonski.com: could not connect to host dzimejl.sk: did not receive HSTS header dzlibs.io: could not connect to host e-aut.net: could not connect to host e-deca2.org: did not receive HSTS header earga.sm: could not connect to host earlybirdsnacks.com: did not receive HSTS header easyhaul.com: did not receive HSTS header eatlowcarb.de: did not receive HSTS header @@ -845,45 +863,45 @@ ecole-en-danger.fr: could not connect to edcphenix.tk: could not connect to host edelsteincosmetic.com: max-age too low: 0 edissecurity.sk: did not receive HSTS header edix.ru: could not connect to host edk.com.tr: did not receive HSTS header edmodo.com: did not receive HSTS header eduvance.in: did not receive HSTS header effectiveosgi.com: could not connect to host -efficienthealth.com: did not receive HSTS header +efficienthealth.com: could not connect to host +egg-ortho.ch: did not receive HSTS header egit.co: could not connect to host ego-world.org: could not connect to host ehrenamt-skpfcw.de: could not connect to host eicfood.com: could not connect to host elaintehtaat.fi: did not receive HSTS header elanguest.pl: could not connect to host elblein.de: could not connect to host electricianforum.co.uk: could not connect to host electromc.com: could not connect to host elemprendedor.com.ve: could not connect to host elenag.ga: could not connect to host elenoon.ir: did not receive HSTS header -eligible.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] elimdengelen.com: did not receive HSTS header elitefishtank.com: could not connect to host elnutricionista.es: did not receive HSTS header elpo.xyz: could not connect to host elsitar.com: did not receive HSTS header -eltagroup.co.uk: did not receive HSTS header email.lookout.com: could not connect to host emeldi-commerce.com: max-age too low: 0 emilyhorsman.com: could not connect to host emnitech.com: could not connect to host empleostampico.com: did not receive HSTS header enargia.jp: max-age too low: 0 encode.space: did not receive HSTS header encoder.pw: could not connect to host encrypted.google.com: did not receive HSTS header (error ignored - included regardless) +endlessdiy.ca: could not connect to host endzeit-architekten.com: did not receive HSTS header engelwerbung.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] enigmail.net: did not receive HSTS header enteente.club: could not connect to host enteente.space: could not connect to host enterdev.co: did not receive HSTS header enterprise-threat-monitor.com: max-age too low: 0 entrepreneur.or.id: did not receive HSTS header @@ -895,16 +913,17 @@ epanurse.com: could not connect to host ephry.com: could not connect to host epoxate.com: did not receive HSTS header eq8.net.au: could not connect to host equate.net.au: could not connect to host equatetechnologies.com.au: could not connect to host equilibre-yoga-jennifer-will.com: could not connect to host eressea.xyz: could not connect to host ericyl.com: could not connect to host +eriix.org: could not connect to host eromixx.com: did not receive HSTS header erotalia.es: could not connect to host eroticen.com: did not receive HSTS header erotische-aanbiedingen.nl: could not connect to host errlytics.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] errolz.com: could not connect to host errors.zenpayroll.com: could not connect to host esclear.de: did not receive HSTS header @@ -924,16 +943,17 @@ euanbaines.com: did not receive HSTS hea eucl3d.com: did not receive HSTS header eulerpi.io: could not connect to host euph.eu: did not receive HSTS header euren.se: could not connect to host euroshop24.net: could not connect to host evantage.org: could not connect to host everwaking.com: could not connect to host everybooks.com: max-age too low: 60 +eveseat.net: could not connect to host evi.be: did not receive HSTS header evin.ml: could not connect to host evossd.tk: could not connect to host exfiles.cz: did not receive HSTS header exgravitus.com: could not connect to host exitus.jp: max-age too low: 0 exno.co: could not connect to host exon.io: did not receive HSTS header @@ -957,35 +977,35 @@ fabianfischer.de: did not receive HSTS h factorable.net: did not receive HSTS header factorygw.com: did not receive HSTS header fadilus.com: did not receive HSTS header faesser.com: did not receive HSTS header fail4free.de: did not receive HSTS header faizan.net: did not receive HSTS header faizan.xyz: could not connect to host fakeletters.org: could not connect to host -falkena.net: could not connect to host +falkena.net: max-age too low: 5184000 falkp.no: did not receive HSTS header fanyl.cn: did not receive HSTS header +farhood.org: could not connect to host fashioncare.cz: did not receive HSTS header fastopen.ml: could not connect to host fatgeekflix.net: could not connect to host fatherhood.gov: did not receive HSTS header fatox.de: could not connect to host fatwin.pw: could not connect to host fayolle.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] fbox.li: could not connect to host fdj.im: could not connect to host feard.space: could not connect to host fedux.com.ar: could not connect to host feezmodo.com: max-age too low: 0 felisslovakia.sk: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] feliwyn.fr: did not receive HSTS header feminists.co: could not connect to host -fenno.net: did not receive HSTS header fenteo.com: could not connect to host feragon.net: max-age too low: 84600 feriahuamantla.com: did not receive HSTS header festember.com: did not receive HSTS header fexmen.com: could not connect to host fhdhelp.de: could not connect to host fhdhilft.de: could not connect to host fifieldtech.com: could not connect to host @@ -993,58 +1013,61 @@ fiftyshadesofluca.ml: could not connect fig.co: did not receive HSTS header fightr.co: could not connect to host filmipop.com: max-age too low: 0 finalgear.com: did not receive HSTS header finanzkontor.net: could not connect to host findmybottleshop.com.au: did not receive HSTS header findtutorsnearme.com: did not receive HSTS header fingent.com: did not receive HSTS header +finiteheap.com: could not connect to host firebaseio-demo.com: could not connect to host firebaseio.com: could not connect to host (error ignored - included regardless) firefall.rocks: could not connect to host firemail.io: could not connect to host firstforex.co.uk: did not receive HSTS header fischers.cc: could not connect to host fish2.me: did not receive HSTS header fit4medien.de: did not receive HSTS header fivestarsitters.com: did not receive HSTS header fixingdns.com: did not receive HSTS header fj.search.yahoo.com: did not receive HSTS header flags.ninja: could not connect to host flam.io: could not connect to host flamewall.net: could not connect to host -flashback.org: could not connect to host +fleximus.org: could not connect to host fliexer.com: did not receive HSTS header floless.co.uk: did not receive HSTS header florian-lillpopp.de: max-age too low: 10 florianlillpopp.de: max-age too low: 10 floridaescapes.co.uk: did not receive HSTS header flouartistique.ch: could not connect to host +flow.su: could not connect to host flowersandclouds.com: could not connect to host flushstudios.com: did not receive HSTS header flyaces.com: did not receive HSTS header +flyss.net: did not receive HSTS header fm83.nl: did not receive HSTS header fndout.com: did not receive HSTS header fnvsecurity.com: could not connect to host -focusmark.jp: could not connect to host fonetiq.io: could not connect to host food4health.guide: could not connect to host footballmapped.com: could not connect to host foraje-profesionale.ro: did not receive HSTS header forbook.net: could not connect to host foreignexchangeresource.com: did not receive HSTS header foreveralone.io: could not connect to host forex-dan.com: did not receive HSTS header formini.dz: did not receive HSTS header formula.cf: could not connect to host fotiu.com: could not connect to host fotm.net: did not receive HSTS header fotografosexpertos.com: did not receive HSTS header fotopasja.info: could not connect to host +fourchin.net: could not connect to host foxdev.io: could not connect to host foxelbox.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] foxtrot.pw: could not connect to host fr33d0m.link: could not connect to host francevpn.xyz: could not connect to host frangor.info: did not receive HSTS header frankl.in: did not receive HSTS header fransallen.com: did not receive HSTS header @@ -1076,39 +1099,43 @@ fyfywka.com: could not connect to host fysiohaenraets.nl: did not receive HSTS header fzn.io: could not connect to host g2a.co: did not receive HSTS header g2g.com: did not receive HSTS header g4w.co: did not receive HSTS header (error ignored - included regardless) gabber.scot: could not connect to host gaelleetarnaud.com: did not receive HSTS header gafachi.com: could not connect to host -gaiserik.com: did not receive HSTS header +gaiserik.com: could not connect to host gakkainavi4.com: could not connect to host galenskap.eu: did not receive HSTS header gallery44.org: did not receive HSTS header gamecard-shop.nl: did not receive HSTS header gamecave.de: could not connect to host +gamechasm.com: could not connect to host gameink.net: max-age too low: 0 gamenected.com: could not connect to host gamenected.de: could not connect to host gamerslair.org: did not receive HSTS header gamesdepartment.co.uk: could not connect to host gamingmedia.eu: could not connect to host +gampenhof.de: did not receive HSTS header ganhonet.com.br: could not connect to host gaptek.id: did not receive HSTS header gatilagata.com.br: did not receive HSTS header gaussorgues.me: could not connect to host gdpventure.com: max-age too low: 0 +gedankenbude.info: did not receive HSTS header +geek-hub.de: could not connect to host geekcast.co.uk: could not connect to host geli-graphics.com: did not receive HSTS header gem-indonesia.net: could not connect to host genuu.com: could not connect to host genuxation.com: could not connect to host -genyaa.com: did not receive HSTS header +genyaa.com: could not connect to host gerencianet.com.br: did not receive HSTS header get.zenpayroll.com: did not receive HSTS header getable.com: did not receive HSTS header getbooks.co.il: did not receive HSTS header getcarefirst.com: could not connect to host getcolor.com: max-age too low: 86400 getinternet.de: max-age too low: 0 getlantern.org: did not receive HSTS header @@ -1119,29 +1146,31 @@ getsello.com: did not receive HSTS heade getwashdaddy.com: did not receive HSTS header gfhgiro.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] gfm.tech: could not connect to host gfournier.ca: could not connect to host gfwsb.ml: could not connect to host gheorghesarcov.ga: could not connect to host gheorghesarcov.tk: could not connect to host gigacloud.org: could not connect to host +gilgaz.com: did not receive HSTS header gilly.berlin: did not receive HSTS header gingali.de: did not receive HSTS header gipsamsfashion.com: could not connect to host gistfy.com: could not connect to host github.party: could not connect to host givemyanswer.com: could not connect to host gizzo.sk: could not connect to host gjspunk.de: did not receive HSTS header gl.search.yahoo.com: did not receive HSTS header glass.google.com: did not receive HSTS header (error ignored - included regardless) glentakahashi.com: max-age too low: 0 globalexpert.co.nz: could not connect to host globalittech.com: could not connect to host +globalmusic.ga: could not connect to host gloomyvancouver.com: did not receive HSTS header glws.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] gm-assicurazioni.it: did not receive HSTS header gm.search.yahoo.com: did not receive HSTS header gmail.com: did not receive HSTS header (error ignored - included regardless) gmantra.org: could not connect to host gmoes.at: max-age too low: 600000 go.ax: did not receive HSTS header @@ -1176,46 +1205,44 @@ gracesofgrief.com: max-age too low: 8640 grandmascookieblog.com: did not receive HSTS header grantedby.me: did not receive HSTS header graph.no: did not receive HSTS header gravity-net.de: could not connect to host graycell.net: could not connect to host grazetech.com: could not connect to host greenhillantiques.co.uk: did not receive HSTS header greenvines.com.tw: did not receive HSTS header -gregmilton.com: could not connect to host -gregmilton.org: could not connect to host gregorytlee.me: did not receive HSTS header greplin.com: could not connect to host grigalanzsoftware.com: could not connect to host groups.google.com: did not receive HSTS header (error ignored - included regardless) grunex.com: did not receive HSTS header +gryffin.ga: could not connect to host gsm-map.com: could not connect to host gtanda.tk: could not connect to host gtlfsonlinepay.com: did not receive HSTS header gtraxapp.com: could not connect to host guava.studio: did not receive HSTS header guilde-vindicta.fr: did not receive HSTS header gunnarhafdal.com: did not receive HSTS header -gunnaro.com: could not connect to host -guoqiang.info: did not receive HSTS header gurusupe.com: could not connect to host +gussi.is: could not connect to host +guts.me: could not connect to host gvt2.com: could not connect to host (error ignored - included regardless) gvt3.com: could not connect to host (error ignored - included regardless) gwijaya.com: could not connect to host gwtest.us: could not connect to host gxlrx.net: could not connect to host gyboche.com: could not connect to host gyboche.science: could not connect to host gycis.me: could not connect to host gypthecat.com: max-age too low: 604800 gyz.io: could not connect to host h2check.org: could not connect to host habanaavenue.com: did not receive HSTS header -habbo.life: could not connect to host hablemosdetecnologia.com.ve: could not connect to host hack.li: could not connect to host hacker.one: could not connect to host hackerforever.com: did not receive HSTS header hackerone-ext-adroll.com: could not connect to host hackerpoints.com: could not connect to host hackit.im: could not connect to host hadzic.co: could not connect to host @@ -1235,36 +1262,35 @@ harmonycosmetic.com: max-age too low: 30 harristony.com: could not connect to host harvestapp.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] harvester.fr: could not connect to host harvestrenewal.org: did not receive HSTS header harz.cloud: could not connect to host has.vision: could not connect to host hash-list.com: could not connect to host hasilocke.de: did not receive HSTS header -hasinase.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] +hasinase.de: did not receive HSTS header haste.ch: could not connect to host hastherebeenamassshooting.today: could not connect to host hatoko.net: could not connect to host haufschild.de: could not connect to host haurumcraft.net: could not connect to host haveeruexaminer.com: could not connect to host -haveforeningen-enghaven.dk: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] -hawksguild.com: did not receive HSTS header +haveforeningen-enghaven.dk: did not receive HSTS header haydenhill.us: could not connect to host -hazcod.com: could not connect to host +hazcod.com: did not receive HSTS header hcie.pl: could not connect to host hdm.io: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] -hduin.xyz: could not connect to host +hduin.xyz: did not receive HSTS header hdwallpapers.net: did not receive HSTS header -head.org: could not connect to host healtious.com: did not receive HSTS header heart.ge: did not receive HSTS header heartlandrentals.com: did not receive HSTS header heftkaufen.de: did not receive HSTS header +heiland.io: could not connect to host hellenicaward.com: did not receive HSTS header hellomouse.cf: could not connect to host helpadmin.net: could not connect to host helpium.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] helpmebuild.com: did not receive HSTS header hemdal.se: could not connect to host hencagon.com: could not connect to host henriknoerr.com: could not connect to host @@ -1306,60 +1332,61 @@ hostinaus.com.au: could not connect to h hostisan.com: did not receive HSTS header hotchillibox.com: max-age too low: 0 hotchoc.io: did not receive HSTS header hotting.nl: could not connect to host housemaadiah.org: did not receive HSTS header housingstudents.org.uk: could not connect to host howrandom.org: could not connect to host hr-intranet.com: did not receive HSTS header -hs-group.net: could not connect to host hsir.me: could not connect to host hsts.date: could not connect to host hu.search.yahoo.com: did not receive HSTS header huarongdao.com: did not receive HSTS header hugosleep.com.au: did not receive HSTS header humblefinances.com: could not connect to host humpteedumptee.in: did not receive HSTS header hurricanelabs.com: did not receive HSTS header hydra.ws: could not connect to host i-jp.net: could not connect to host i-partners.sk: did not receive HSTS header i1314.gdn: did not receive HSTS header iamokay.nl: did not receive HSTS header -iamusingtheinter.net: could not connect to host iamveto.com: could not connect to host iapws.com: did not receive HSTS header iban.is: could not connect to host icewoman.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] icreative.nl: did not receive HSTS header ictual.com: max-age too low: 0 +icusignature.com: did not receive HSTS header id-co.in: could not connect to host id-conf.com: could not connect to host idacmedia.com: max-age too low: 5184000 ideal-envelopes.co.uk: did not receive HSTS header ideasmeetingpoint.com: could not connect to host ideation-inc.co.jp: did not receive HSTS header identitylabs.uk: did not receive HSTS header +idgsupply.com: could not connect to host ie.search.yahoo.com: did not receive HSTS header -iec.pe: could not connect to host ies-italia.it: did not receive HSTS header ies.id.lv: could not connect to host ifleurs.com: could not connect to host +ignatisd.gr: did not receive HSTS header ihrlotto.de: could not connect to host ihrnationalrat.ch: could not connect to host ihuanmeng.com: did not receive HSTS header ikujii.com: max-age too low: 0 ikwilguidobellen.nl: did not receive HSTS header ilbuongiorno.it: did not receive HSTS header ilikerainbows.co: could not connect to host ilikerainbows.co.uk: could not connect to host illegalpornography.me: could not connect to host ilmconpm.de: did not receive HSTS header ilona.graphics: max-age too low: 3600 +imanolbarba.net: could not connect to host ime.moe: could not connect to host imguoguo.com: did not receive HSTS header imim.pw: did not receive HSTS header imjiangtao.com: did not receive HSTS header immoprotect.ca: did not receive HSTS header immortals-co.com: did not receive HSTS header immoverkauf24.at: did not receive HSTS header immoverkauf24.de: did not receive HSTS header @@ -1379,17 +1406,16 @@ inertianetworks.com: did not receive HST infcof.com: max-age too low: 0 infinitude.me.uk: could not connect to host infinitude.xyz: could not connect to host infinitudecloud.com: could not connect to host infinitusgaming.eu: could not connect to host inflation.ml: could not connect to host infogrfx.com: did not receive HSTS header infotics.es: did not receive HSTS header -ingalls.run: could not connect to host injigo.com: did not receive HSTS header inkable.com.au: did not receive HSTS header inkedguy.de: could not connect to host inkstory.gr: did not receive HSTS header inksupply.com: did not receive HSTS header inleaked.com: could not connect to host inmyarea.com: max-age too low: 0 innophate-security.nl: could not connect to host @@ -1406,17 +1432,16 @@ internetpro.me: could not connect to hos interserved.com: did not receive HSTS header intex.es: max-age too low: 0 intim-uslugi-kazan.net: could not connect to host intimtoy.com.ua: did not receive HSTS header inverselink-user-content.com: could not connect to host inverselink.com: could not connect to host invitescene.com: could not connect to host inwesttitle.com: max-age too low: 0 -inzdr.com: did not receive HSTS header ionx.co.uk: did not receive HSTS header iop.intuit.com: max-age too low: 86400 iosmods.com: could not connect to host iostips.ru: could not connect to host ip6.im: did not receive HSTS header ipmimagazine.com: did not receive HSTS header iptel.by: max-age too low: 0 iptel.ro: could not connect to host @@ -1428,30 +1453,29 @@ irazimina.ru: did not receive HSTS heade irccloud.com: did not receive HSTS header ircmett.de: did not receive HSTS header iready.ro: could not connect to host irukandjilabs.com: could not connect to host ischool.co.jp: did not receive HSTS header isdown.cz: could not connect to host iseek.biz: max-age too low: 0 iskaz.rs: did not receive HSTS header -isntall.us: could not connect to host isogram.nl: could not connect to host ispire.me: did not receive HSTS header -israkurort.com: could not connect to host istaspirtslietas.lv: did not receive HSTS header it-go.net: did not receive HSTS header itechgeek.com: max-age too low: 0 itfh.eu: could not connect to host itos.asia: did not receive HSTS header itos.pl: did not receive HSTS header its4living.com: could not connect to host itsamurai.ru: max-age too low: 2592000 itsecurityassurance.pw: did not receive HSTS header itshost.ru: could not connect to host +itspawned.com: could not connect to host ivi-fertility.com: max-age too low: 0 ivi.es: max-age too low: 0 ivk.website: could not connect to host izdiwho.com: could not connect to host izolight.ch: could not connect to host ja-publications.com: did not receive HSTS header jaba.hosting: did not receive HSTS header jabbari.io: did not receive HSTS header @@ -1472,28 +1496,30 @@ janario.me: could not connect to host janbrodda.de: max-age too low: 2592000 jannyrijneveld.nl: did not receive HSTS header janus-engineering.de: did not receive HSTS header japlex.com: could not connect to host jaqen.ch: could not connect to host jaredeberle.org: did not receive HSTS header jaroslavtrsek.cz: did not receive HSTS header jartza.org: could not connect to host -jasmineconseil.com: did not receive HSTS header +jasmineconseil.com: could not connect to host jasonrobinson.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] jasonroe.me: did not receive HSTS header jastoria.pl: did not receive HSTS header jayblock.com: did not receive HSTS header jayscoaching.com: could not connect to host jazzinutrecht.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] jcch.de: could not connect to host +jcor.me: could not connect to host jeff393.com: could not connect to host jenjoit.de: could not connect to host jensenbanden.no: could not connect to host -jeremye77.com: did not receive HSTS header +jeremye77.com: could not connect to host +jessevictors.com: could not connect to host jessicabenedictus.nl: could not connect to host jetaprices.com: max-age too low: 0 jettshome.org: could not connect to host jeugdkans.nl: did not receive HSTS header jf.duckdns.org: could not connect to host jfmel.com: did not receive HSTS header jh-media.eu: could not connect to host jhburton.uk: could not connect to host @@ -1504,16 +1530,17 @@ jimmycai.org: max-age too low: 10368000 jinbo123.com: did not receive HSTS header jkb.pics: could not connect to host jkbuster.com: could not connect to host jmdekker.it: could not connect to host joakimalgroy.com: could not connect to host jobmedic.com: did not receive HSTS header jobss.co.uk: could not connect to host joedavison.me: could not connect to host +joepitt.co.uk: could not connect to host johners.me: could not connect to host johners.tech: did not receive HSTS header johnrom.com: did not receive HSTS header jonas-keidel.de: did not receive HSTS header jonasgroth.se: max-age too low: 2592000 jonathan.ir: could not connect to host jonathancarter.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] jonathandowning.uk: could not connect to host @@ -1530,21 +1557,22 @@ jrgold.me: could not connect to host jrvar.com: did not receive HSTS header jsanders.us: did not receive HSTS header jualssh.com: could not connect to host juliamweber.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] julian-kipka.de: did not receive HSTS header jumbox.xyz: could not connect to host junaos.xyz: did not receive HSTS header junge-selbsthilfe.info: could not connect to host +juniwalk.cz: could not connect to host junqtion.com: could not connect to host -jupp0r.de: could not connect to host +jupp0r.de: did not receive HSTS header justlikethat.hosting: did not receive HSTS header justnaw.co.uk: could not connect to host -justudin.com: could not connect to host +justudin.com: did not receive HSTS header juwairen.cn: could not connect to host jvoice.net: could not connect to host jwilsson.me: could not connect to host jxm.in: could not connect to host k-dev.de: could not connect to host kadioglumakina.com.tr: did not receive HSTS header kahopoon.net: could not connect to host kaisers.de: did not receive HSTS header @@ -1571,20 +1599,20 @@ keepclean.me: could not connect to host kerangalam.com: did not receive HSTS header kerksanders.nl: did not receive HSTS header kermadec.net: could not connect to host kernl.us: did not receive HSTS header kevinapease.com: max-age too low: 0 keymaster.lookout.com: did not receive HSTS header kg-rating.com: did not receive HSTS header kgxtech.com: max-age too low: 2592000 -kiahoriane.com: could not connect to host kickass.al: could not connect to host -kid-dachau.de: could not connect to host +kid-dachau.de: did not receive HSTS header kiel-media.de: did not receive HSTS header +kimpost.org: could not connect to host kingmanhall.org: could not connect to host kinnon.enterprises: could not connect to host kinogb.net: did not receive HSTS header kionetworks.com: did not receive HSTS header kirkforcongress.com: could not connect to host kirkforsenate.com: did not receive HSTS header kirkpatrickdavis.com: could not connect to host kissart.net: did not receive HSTS header @@ -1602,28 +1630,30 @@ kleertjesvoordelig.nl: could not connect kleinblogje.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] kletterkater.com: did not receive HSTS header klicktojob.de: could not connect to host kmartin.io: did not receive HSTS header knccloud.com: did not receive HSTS header kodokushi.fr: could not connect to host kolaykaydet.com: did not receive HSTS header kollabria.com: max-age too low: 0 -komandakovalchuk.com: could not connect to host +komandakovalchuk.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] komikito.com: could not connect to host kompetenzwerft.de: did not receive HSTS header kontaxis.network: could not connect to host kontorhaus-schlachte.de: could not connect to host koop-bremen.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] koordinate.net: could not connect to host korni22.org: did not receive HSTS header korsanparti.org: could not connect to host kpvpn.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] kr.search.yahoo.com: did not receive HSTS header kredite.sale: could not connect to host +kriegt.es: could not connect to host +krislamoureux.com: could not connect to host krmela.com: could not connect to host kroetenfuchs.de: could not connect to host kropkait.pl: could not connect to host krouzkyliduska.cz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] ksfh-mail.de: could not connect to host kstan.me: could not connect to host kueulangtahunanak.net: could not connect to host kukal.cz: could not connect to host @@ -1641,16 +1671,17 @@ kylinj.com: could not connect to host kz.search.yahoo.com: did not receive HSTS header labaia.info: could not connect to host labina.com.tr: did not receive HSTS header laboiteapc.fr: did not receive HSTS header labordata.io: could not connect to host labrador-retrievers.com.au: did not receive HSTS header labs.moscow: did not receive HSTS header lachlankidson.net: did not receive HSTS header +lacliniquefinanciere.com: did not receive HSTS header laf.in.net: did not receive HSTS header lagalerievirtuelle.fr: did not receive HSTS header lagarderob.ru: max-age too low: 0 lagoza.name: could not connect to host lambdafive.co.uk: could not connect to host lampl.info: did not receive HSTS header landscape.canonical.com: max-age too low: 2592000 langenbach.rocks: could not connect to host @@ -1660,56 +1691,56 @@ laozhu.me: did not receive HSTS header laserfuchs.de: did not receive HSTS header lask.in: did not receive HSTS header latinred.com: did not receive HSTS header latus.xyz: could not connect to host lavinya.net: could not connect to host lavval.com: could not connect to host laxatus.com: did not receive HSTS header laxiongames.es: could not connect to host +laylo.nl: did not receive HSTS header lbrt.xyz: could not connect to host ldarby.me.uk: could not connect to host leadership9.com: could not connect to host leakreporter.net: could not connect to host learnfrenchfluently.com: did not receive HSTS header learningorder.com: could not connect to host ledgerscope.net: could not connect to host legarage.org: did not receive HSTS header leifdreizler.com: could not connect to host leinir.dk: max-age too low: 86400 leitner.com.au: did not receive HSTS header leiyun.me: did not receive HSTS header lellyboi.ml: could not connect to host lelongbank.com: did not receive HSTS header lemp.io: did not receive HSTS header -lenovogaming.com: could not connect to host -lentri.com: could not connect to host +lenovogaming.com: did not receive HSTS header +lentri.com: did not receive HSTS header leolana.com: could not connect to host leon-jaekel.com: could not connect to host leopold.email: could not connect to host +leopoldina.net: did not receive HSTS header leopotamgroup.com: could not connect to host leovanna.co.uk: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] -lerasenglish.com: did not receive HSTS header +lepont.pl: could not connect to host lerner.moscow: did not receive HSTS header les-corsaires.net: could not connect to host lesdouceursdeliyana.com: could not connect to host letras.mus.br: did not receive HSTS header letustravel.tk: could not connect to host lfullerdesign.com: did not receive HSTS header lgiswa.com.au: did not receive HSTS header lgrs.com.au: did not receive HSTS header lgts.se: could not connect to host li.search.yahoo.com: did not receive HSTS header liaillustr.at: did not receive HSTS header liaoshuma.com: could not connect to host -libbitcoin.org: could not connect to host libertyrp.org: could not connect to host library.linode.com: did not receive HSTS header librechan.net: could not connect to host -libscode.com: did not receive HSTS header lifeguard.aecom.com: did not receive HSTS header lifeinitsownway.com: did not receive HSTS header lifestylehunter.co.uk: did not receive HSTS header lifetimemoneymachine.com: did not receive HSTS header lightarmory.com: could not connect to host lightpaste.com: could not connect to host likeaross.com: did not receive HSTS header lillpopp.eu: max-age too low: 10 @@ -1719,16 +1750,17 @@ limpido.it: could not connect to host lindberg.io: did not receive HSTS header lingros-test.tk: could not connect to host linguaquote.com: did not receive HSTS header linmi.cc: did not receive HSTS header linorman1997.me: could not connect to host linuxeyecandy.com: could not connect to host linuxfixed.it: could not connect to host linuxgeek.ro: could not connect to host +linzgau.de: did not receive HSTS header liquorsanthe.in: could not connect to host listafirmelor.com: did not receive HSTS header litespeed.io: could not connect to host livecards.co.uk: did not receive HSTS header livedemo.io: could not connect to host livej.am: could not connect to host livekaarten.be: did not receive HSTS header livekaarten.nl: did not receive HSTS header @@ -1763,16 +1795,17 @@ ls-a.org: did not receive HSTS header lsky.cn: did not receive HSTS header lsp-sports.de: did not receive HSTS header lt.search.yahoo.com: did not receive HSTS header ltbytes.com: could not connect to host lu.search.yahoo.com: did not receive HSTS header luine.xyz: could not connect to host luis-checa.com: could not connect to host lukas.im: did not receive HSTS header +lukaszdolan.com: did not receive HSTS header lukeng.me: could not connect to host lukeng.net: could not connect to host lukonet.com: did not receive HSTS header lumi.do: did not receive HSTS header lunix.io: did not receive HSTS header luoe.ml: could not connect to host luoxiao.im: could not connect to host lusis.fr: did not receive HSTS header @@ -1784,30 +1817,33 @@ lv.search.yahoo.com: did not receive HST lzkill.com: did not receive HSTS header m-ali.xyz: did not receive HSTS header m.gparent.org: could not connect to host m3-gmbh.de: did not receive HSTS header maarten.nyc: did not receive HSTS header maartenvandekamp.nl: did not receive HSTS header macchaberrycream.com: could not connect to host macchedil.com: did not receive HSTS header +macgeneral.de: did not receive HSTS header madars.org: did not receive HSTS header maddin.ga: could not connect to host madebymagnitude.com: did not receive HSTS header maderwin.com: did not receive HSTS header mafamane.com: could not connect to host +maff.scot: did not receive HSTS header mafiareturns.com: max-age too low: 2592000 magenx.com: did not receive HSTS header mahamed91.pw: could not connect to host -mahefa.co.uk: could not connect to host +maidofhonorcleaning.net: could not connect to host mail-settings.google.com: did not receive HSTS header (error ignored - included regardless) mail.google.com: did not receive HSTS header (error ignored - included regardless) maildragon.com: could not connect to host makeitdynamic.com: could not connect to host makerstuff.net: did not receive HSTS header +makeyourank.com: could not connect to host malerversand.de: did not receive HSTS header malwre.io: could not connect to host mamaison.io: could not connect to host mamaxi.org: did not receive HSTS header mammothmail.com: could not connect to host mammothmail.net: could not connect to host mammothmail.org: could not connect to host manage4all.com: could not connect to host @@ -1826,46 +1862,50 @@ markaconnor.com: could not connect to ho markayapilandirma.com: did not receive HSTS header market.android.com: did not receive HSTS header (error ignored - included regardless) markrego.com: could not connect to host markus-dev.com: did not receive HSTS header markusweimar.de: did not receive HSTS header marleyresort.com: did not receive HSTS header marsble.com: did not receive HSTS header marshut.net: could not connect to host +martiert.com: could not connect to host martijnvhoof.nl: could not connect to host martinsfamilyappliance.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] masjidtawheed.net: did not receive HSTS header massotherapeutique.com: did not receive HSTS header matatall.com: did not receive HSTS header +matchneedle.com: could not connect to host matrip.de: could not connect to host matrix.ac: did not receive HSTS header +matsuz.com: could not connect to host matthewprenger.com: could not connect to host matthiassteen.be: max-age too low: 0 mattsvensson.com: did not receive HSTS header mattwb65.com: did not receive HSTS header matty.digital: max-age too low: 3600 maultrom.ml: could not connect to host maur.cz: did not receive HSTS header mavisang.cf: did not receive HSTS header maya.mg: did not receive HSTS header mca2017.org: did not receive HSTS header mcdonalds.ru: did not receive HSTS header mclab.su: could not connect to host mdewendt.de: could not connect to host mdfnet.se: did not receive HSTS header mdscomp.net: did not receive HSTS header mea.in.ua: could not connect to host +mechanus.io: max-age too low: 2592000 medallia.io: could not connect to host media-courses.com: did not receive HSTS header mediacru.sh: could not connect to host mediastorm.us: could not connect to host mediawikicn.org: could not connect to host medirich.co: could not connect to host -medwayindia.com: could not connect to host +medwayindia.com: did not receive HSTS header meetings2.com: did not receive HSTS header meetscompany.jp: did not receive HSTS header megashur.se: did not receive HSTS header megasslstore.com: did not receive HSTS header megaxchange.com: did not receive HSTS header meghudson.com: could not connect to host mein-gesundheitsmanager.com: did not receive HSTS header meincenter-meinemeinung.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] @@ -1902,17 +1942,16 @@ midwestwomenworkers.org: did not receive mightydicks.io: could not connect to host mightydicks.tech: could not connect to host mightysounds.cz: max-age too low: 0 mijcorijneveld.nl: did not receive HSTS header mijn-email.org: could not connect to host mikaelemilsson.net: did not receive HSTS header mikeburns.com: did not receive HSTS header mikeg.de: did not receive HSTS header -mikek.work: could not connect to host mikepair.net: did not receive HSTS header mikonmaa.fi: could not connect to host miku.be: could not connect to host miku.hatsune.my: max-age too low: 5184000 milang.xyz: could not connect to host milesgeek.com: did not receive HSTS header mindcraft.ga: max-age too low: 7776000 mindoktor.se: did not receive HSTS header @@ -1920,16 +1959,17 @@ minecraftserverz.com: could not connect minecraftvoter.com: could not connect to host minikneet.nl: did not receive HSTS header minnesotadata.com: could not connect to host minora.io: could not connect to host mirindadomo.ru: did not receive HSTS header mironized.com: did not receive HSTS header mirrorx.com: did not receive HSTS header mirucon.com: could not connect to host +misskey.xyz: could not connect to host missrain.tw: could not connect to host mittenhacks.com: could not connect to host mivcon.net: could not connect to host mizd.at: could not connect to host mizi.name: did not receive HSTS header mlpepilepsy.org: could not connect to host mnemotiv.com: could not connect to host mnetworkingsolutions.co.uk: did not receive HSTS header @@ -1942,17 +1982,16 @@ modemagazines.co.uk: could not connect t moebel-nagel.de: did not receive HSTS header moelord.org: could not connect to host moen.io: did not receive HSTS header monarca.systems: could not connect to host monasterialis.eu: could not connect to host mondar.io: could not connect to host monitman.com: could not connect to host moon.lc: could not connect to host -moov.is: could not connect to host moparisthebest.biz: could not connect to host moparisthebest.info: could not connect to host moparscape.org: did not receive HSTS header morbitzer.de: did not receive HSTS header morethanadream.lv: could not connect to host moriz.net: could not connect to host morningcalculation.com: could not connect to host morotech.com.br: max-age too low: 2592000 @@ -1968,16 +2007,17 @@ mountainmusicpromotions.com: did not rec moviesabout.net: could not connect to host moy.cat: could not connect to host mp3juices.is: could not connect to host mqas.net: could not connect to host mrnonz.com: max-age too low: 0 mrpopat.in: did not receive HSTS header msc-seereisen.net: did not receive HSTS header mszaki.com: did not receive HSTS header +mt.me.uk: could not connect to host mt.search.yahoo.com: did not receive HSTS header mtcgf.com: did not receive HSTS header mtg-esport.de: did not receive HSTS header mu.search.yahoo.com: did not receive HSTS header munich-rage.de: did not receive HSTS header munzee.com: did not receive HSTS header muriburi.land: could not connect to host muriburiland.com: could not connect to host @@ -2000,18 +2040,20 @@ myhostname.net: did not receive HSTS hea myiocc.org: could not connect to host mykolab.com: did not receive HSTS header mykreuzfahrt.de: could not connect to host myni.io: could not connect to host mypagella.com: could not connect to host mypagella.eu: could not connect to host mypagella.it: could not connect to host myplaceonline.com: did not receive HSTS header +myraytech.net: could not connect to host mysecretrewards.com: did not receive HSTS header mystudy.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] +mythslegendscollection.com: did not receive HSTS header myvirtualserver.com: max-age too low: 2592000 myzone.com: did not receive HSTS header mziulu.me: could not connect to host n2x.in: could not connect to host n4l.pw: did not receive HSTS header naiharngym.com: did not receive HSTS header najedlo.sk: did not receive HSTS header nakliyatsirketi.biz: could not connect to host @@ -2026,17 +2068,16 @@ natuurbehangnederland.nl: could not conn nauck.org: did not receive HSTS header nav.jobs: could not connect to host naval.tf: could not connect to host navigate-it-services.de: max-age too low: 0 navjobs.com: did not receive HSTS header nbb.io: did not receive HSTS header nbg-ha.de: could not connect to host ncc60205.info: could not connect to host -ncconsumer.org: could not connect to host nct.org.uk: max-age too low: 1 nctx.co.uk: did not receive HSTS header neap.io: did not receive HSTS header neel.ch: could not connect to host neftaly.com: did not receive HSTS header neko-system.com: did not receive HSTS header nemno.de: could not connect to host nemovement.org: did not receive HSTS header @@ -2044,22 +2085,20 @@ neonisi.com: could not connect to host nepustil.net: did not receive HSTS header neris.io: could not connect to host nerven.se: could not connect to host nestedquotes.ca: could not connect to host netbox.cc: could not connect to host netherwind.eu: did not receive HSTS header netlilo.com: could not connect to host netsight.org: could not connect to host -netsigna.de: did not receive HSTS header netzbit.de: could not connect to host netzpolitik.org: did not receive HSTS header netztest.at: did not receive HSTS header neueonlinecasino2016.com: could not connect to host -neuflizeobc.net: could not connect to host neuralgic.net: could not connect to host neutralox.com: max-age too low: 3600 neveta.com: could not connect to host newcitygas.ca: max-age too low: 0 newedivideo.it: did not receive HSTS header newkaliningrad.ru: did not receive HSTS header newlooknow.com: did not receive HSTS header newtonwarp.com: could not connect to host @@ -2094,16 +2133,17 @@ nodetemple.com: could not connect to hos noexpect.org: could not connect to host nolatepayments.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] nolte.work: could not connect to host nomorebytes.de: did not receive HSTS header nope.website: could not connect to host nopex.no: could not connect to host nopol.de: did not receive HSTS header norb.at: could not connect to host +nordiccasinocommunity.com: could not connect to host nosecretshop.com: did not receive HSTS header novacoast.com: did not receive HSTS header novatrucking.de: could not connect to host nowak.ninja: did not receive HSTS header noworrywp.com: could not connect to host np.search.yahoo.com: did not receive HSTS header npol.de: did not receive HSTS header ntbs.pro: could not connect to host @@ -2123,39 +2163,41 @@ null.cat: could not connect to host null.tips: could not connect to host nullpoint.at: did not receive HSTS header numericacu.com: did not receive HSTS header nuos.org: could not connect to host nutleyeducationalfoundation.org: did not receive HSTS header nutleyef.org: did not receive HSTS header nutrienti.eu: did not receive HSTS header nutritionculture.com: could not connect to host -nutsandboltsmedia.com: could not connect to host +nutsandboltsmedia.com: did not receive HSTS header nwgh.org: max-age too low: 86400 nyantec.com: did not receive HSTS header nysepho.pw: did not receive HSTS header nystart.no: did not receive HSTS header nz.search.yahoo.com: max-age too low: 172800 nzb.cat: max-age too low: 7776000 o0o.one: did not receive HSTS header oasis.mobi: did not receive HSTS header obsydian.org: could not connect to host occentus.net: did not receive HSTS header ochaken.cf: could not connect to host odin.xxx: did not receive HSTS header +oe8.bet: could not connect to host ofcourselanguages.com: could not connect to host offshore-firma.org: could not connect to host oishioffice.com: did not receive HSTS header okane.love: could not connect to host okutama.in.th: could not connect to host oliver-pietsch.de: did not receive HSTS header oliverdunk.com: did not receive HSTS header omgaanmetidealen.com: could not connect to host ominto.com: max-age too low: 0 omniti.com: max-age too low: 1 +omquote.gq: could not connect to host oneb4nk.com: could not connect to host onefour.co: could not connect to host onehourloan.sg: did not receive HSTS header oneminute.io: did not receive HSTS header onepluscamps.com: did not receive HSTS header onespiritinc.com: did not receive HSTS header onet.space: could not connect to host onewpst.com: did not receive HSTS header @@ -2180,23 +2222,25 @@ oost.io: could not connect to host open-to-repair.fr: did not receive HSTS header opendesk.cc: did not receive HSTS header openmind-shop.de: did not receive HSTS header opennippon.ru: could not connect to host openprovider.nl: did not receive HSTS header openquery.com.au: did not receive HSTS header openshift.redhat.com: did not receive HSTS header opensrd.com: could not connect to host +openxmpp.com: could not connect to host oprbox.com: could not connect to host opsbears.com: did not receive HSTS header optenhoefel.de: could not connect to host optometriepunt.nl: did not receive HSTS header optumrxhealthstore.com: did not receive HSTS header orbitcom.de: max-age too low: 0 orbograph-hrcm.com: did not receive HSTS header +orioncustompcs.com: could not connect to host orionfcu.com: did not receive HSTS header orleika.ml: could not connect to host osaiyuwu.com: could not connect to host oshell.me: did not receive HSTS header ossan-kobe-gourmet.com: did not receive HSTS header ossbinaries.com: could not connect to host osteammate.com: did not receive HSTS header otakuworld.de: could not connect to host @@ -2214,20 +2258,23 @@ oversight.io: could not connect to host overthinkingit.com: max-age too low: 3600 owncloud.help: could not connect to host ownmovies.fr: could not connect to host oxynux.fr: could not connect to host p.linode.com: could not connect to host p8r.de: did not receive HSTS header pa.search.yahoo.com: did not receive HSTS header packlane.com: did not receive HSTS header +pader-deko.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] paestbin.com: could not connect to host +pagetoimage.com: could not connect to host paisaone.com: did not receive HSTS header paku.me: could not connect to host pamsoft.pl: max-age too low: 0 +panaceallc.net: could not connect to host pantsu.cat: did not receive HSTS header papeda.net: did not receive HSTS header papercard.co.uk: did not receive HSTS header papierniak.net: could not connect to host parentmail.co.uk: did not receive HSTS header particonpsplus.it: could not connect to host partijtjevoordevrijheid.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] partyvan.it: could not connect to host @@ -2241,16 +2288,17 @@ pastaf.com: could not connect to host paste.fedoraproject.org: did not receive HSTS header paste.linode.com: could not connect to host pastebin.linode.com: could not connect to host pastenib.com: could not connect to host paster.li: did not receive HSTS header patientinsight.net: could not connect to host patt.us: did not receive HSTS header patterson.mp: could not connect to host +paulchen.at: did not receive HSTS header paulewen.ca: could not connect to host paulshir.com: could not connect to host paulyang.cn: did not receive HSTS header paxwinkel.nl: did not receive HSTS header pay.gigahost.dk: did not receive HSTS header payments.google.com: did not receive HSTS header (error ignored - included regardless) payroll.ch: did not receive HSTS header pbapp.net: did not receive HSTS header @@ -2278,17 +2326,19 @@ petravdbos.nl: did not receive HSTS head petrolplus.ru: did not receive HSTS header pettsy.com: could not connect to host pewboards.com: could not connect to host pgpm.io: could not connect to host pgpmail.cc: could not connect to host phoenix.dj: could not connect to host phongmay24h.com: could not connect to host phurl.de: could not connect to host +pic.gov: did not receive HSTS header pickr.co: could not connect to host +picotronic.biz: could not connect to host picscare.co.uk: did not receive HSTS header piligrimname.com: could not connect to host pinesandneedles.com: did not receive HSTS header pinoyonlinetv.com: did not receive HSTS header pippen.io: could not connect to host pir9.com: max-age too low: 2592000 piratedb.com: could not connect to host piratedot.com: could not connect to host @@ -2322,72 +2372,73 @@ politologos.org: could not connect to ho polypho.nyc: could not connect to host pompompoes.com: could not connect to host pontokay.com.br: did not receive HSTS header pontualcomp.com: max-age too low: 2592000 poolsandstuff.com: did not receive HSTS header poris.web.id: did not receive HSTS header portalplatform.net: did not receive HSTS header poshpak.com: did not receive HSTS header -posterspy.com: did not receive HSTS header postscheduler.org: could not connect to host posylka.de: did not receive HSTS header +potatofrom.space: could not connect to host potatoheads.net: did not receive HSTS header poussinooz.fr: could not connect to host povitria.net: could not connect to host powerplannerapp.com: did not receive HSTS header powerxequality.com: could not connect to host ppr-truby.ru: could not connect to host pr.search.yahoo.com: did not receive HSTS header prefontaine.name: could not connect to host prego-shop.de: did not receive HSTS header preissler.co.uk: could not connect to host prelist.org: did not receive HSTS header +prescotonline.co.uk: could not connect to host pressfreedomfoundation.org: did not receive HSTS header preworkout.me: could not connect to host prezola.com: did not receive HSTS header priolkar.com: did not receive HSTS header priva.si: could not connect to host privacylabs.io: did not receive HSTS header privacyrup.net: could not connect to host prnt.li: did not receive HSTS header pro-zone.com: could not connect to host prodpad.com: did not receive HSTS header production.vn: did not receive HSTS header professionalboundaries.com: did not receive HSTS header +profi-durchgangsmelder.de: did not receive HSTS header profundr.com: could not connect to host progg.no: could not connect to host prohostonline.fi: could not connect to host promecon-gmbh.de: did not receive HSTS header +promhadan.com: could not connect to host prontolight.com: did not receive HSTS header prosoft.sk: did not receive HSTS header prosperident.com: did not receive HSTS header prowhisky.de: did not receive HSTS header proximato.com: could not connect to host proxybay.al: could not connect to host proxybay.club: could not connect to host proxybay.info: did not receive HSTS header -proxybay.top: did not receive HSTS header prxio.date: could not connect to host prxio.site: could not connect to host prytkov.com: did not receive HSTS header psncardplus.be: did not receive HSTS header psncardplus.com: did not receive HSTS header psncardplus.dk: did not receive HSTS header psncardplus.nl: did not receive HSTS header psncardplus.se: did not receive HSTS header psw.academy: did not receive HSTS header psw.consulting: did not receive HSTS header ptm.ro: max-age too low: 0 ptn.moscow: could not connect to host pubkey.is: could not connect to host puiterwijk.org: could not connect to host pumpgames.net: could not connect to host punchr-kamikazee.rhcloud.com: did not receive HSTS header -punkapoule.fr: could not connect to host purewebmasters.com: could not connect to host purplemoon.mobi: did not receive HSTS header purplestar.mobi: did not receive HSTS header pushapp.org: did not receive HSTS header pwnies.dk: could not connect to host py.search.yahoo.com: did not receive HSTS header pypi-mirrors.org: could not connect to host pypi-status.org: could not connect to host @@ -2420,17 +2471,16 @@ rainbowbarracuda.com: could not connect ramonj.nl: could not connect to host rapidresearch.me: could not connect to host rapidthunder.io: could not connect to host rasing.me: could not connect to host ratajczak.fr: could not connect to host raulfraile.net: could not connect to host rawet.se: could not connect to host rawstorieslondon.com: could not connect to host -raydan.space: could not connect to host raydobe.me: could not connect to host rc4.io: did not receive HSTS header rcafox.com: could not connect to host rcpcbd.com: did not receive HSTS header rdns.im: did not receive HSTS header readr.pw: could not connect to host realmofespionage.com: could not connect to host reardenporn.com: could not connect to host @@ -2448,23 +2498,23 @@ reggae-cdmx.com: did not receive HSTS he reic.me: could not connect to host reisyukaku.org: did not receive HSTS header rejo.in: could not connect to host relayawards.com: could not connect to host relisten.nl: did not receive HSTS header remodela.com.ve: could not connect to host renem.net: did not receive HSTS header renlong.org: could not connect to host -renrenss.com: max-age too low: 604800 +renrenss.com: did not receive HSTS header rent-a-coder.de: did not receive HSTS header rentcarassist.com: could not connect to host renteater.com: could not connect to host reprolife.co.uk: max-age too low: 0 res-rheingau.de: did not receive HSTS header -res42.com: could not connect to host +res42.com: did not receive HSTS header reserve-online.net: did not receive HSTS header respice.xyz: could not connect to host restchart.com: did not receive HSTS header revello.org: did not receive HSTS header reverie.pw: could not connect to host reviews.anime.my: max-age too low: 5184000 revtut.net: could not connect to host rewardstock.com: max-age too low: 0 @@ -2520,62 +2570,58 @@ rsmaps.org: could not connect to host rubbereggs.ca: could not connect to host rubberfurs.org: max-age too low: 86400 rubecodeberg.com: could not connect to host rubenschulz.nl: did not receive HSTS header ruborr.se: did not receive HSTS header rubyshop.nl: max-age too low: 604800 rudloff.pro: did not receive HSTS header rugirlfriend.com: could not connect to host +ruiming.me: could not connect to host runawebinar.nl: could not connect to host runementors.com: could not connect to host runtondev.com: did not receive HSTS header ruqu.nl: could not connect to host rusadmin.biz: did not receive HSTS header rusl.me: could not connect to host russmarshall.com: could not connect to host -rutgerschimmel.nl: could not connect to host ruxit.com: did not receive HSTS header rw.search.yahoo.com: did not receive HSTS header rxbusiness.com: could not connect to host rxprep.com: did not receive HSTS header rxv.cc: could not connect to host ryankearney.com: could not connect to host ryansmithphotography.com: did not receive HSTS header ryanteck.uk: did not receive HSTS header sageth.com: max-age too low: 0 sah3.net: could not connect to host sakaki.anime.my: max-age too low: 5184000 -sakaserver.com: could not connect to host +sakaserver.com: did not receive HSTS header salesmachine.io: did not receive HSTS header salserocafe.com: did not receive HSTS header salserototal.com: did not receive HSTS header salud.top: did not receive HSTS header -samfunnet.no: could not connect to host samirnassar.com: max-age too low: 60 sampoznay.ru: did not receive HSTS header samraskauskas.com: could not connect to host samsen.club: did not receive HSTS header sandviks.com: did not receive HSTS header sansemea.com: could not connect to host -santing.net: could not connect to host -sapk.fr: could not connect to host sarah-beckett-harpist.com: did not receive HSTS header sarahsweetlife.com: could not connect to host -sarindia.com: could not connect to host -sarindia.de: could not connect to host saruwebshop.co.za: did not receive HSTS header satriyowibowo.my.id: did not receive HSTS header satsukii.moe: did not receive HSTS header saturngames.co.uk: did not receive HSTS header saunasandstuff.ca: did not receive HSTS header saunasandstuff.com: did not receive HSTS header save.gov: could not connect to host saveaward.gov: could not connect to host saveyour.biz: did not receive HSTS header +savvysuit.com: could not connect to host sawamura-rental.com: did not receive HSTS header sb-group.dk: did not receive HSTS header sby.de: did not receive HSTS header sc4le.com: could not connect to host schallert.com: did not receive HSTS header schmitz.link: could not connect to host schneids.me: could not connect to host schnell-gold.com: could not connect to host @@ -2599,36 +2645,37 @@ secandtech.com: could not connect to hos sectia22.ro: could not connect to host secure-games.us: could not connect to host secureradio.net: could not connect to host securesuisse.ch: could not connect to host security.google.com: did not receive HSTS header (error ignored - included regardless) securityinet.biz: did not receive HSTS header securityinet.net: did not receive HSTS header securityinet.org.il: did not receive HSTS header +securityprimes.in: could not connect to host securitysoapbox.com: could not connect to host securiviera.ch: did not receive HSTS header seedbox.fr: did not receive HSTS header seele.ca: could not connect to host segulink.com: could not connect to host segurosbalboa.com.ec: could not connect to host sehenderson.com: did not receive HSTS header seiko-dojo.com: could not connect to host selecadm.name: could not connect to host selectruckscalltrackingreports.com: could not connect to host +self-injury.net: could not connect to host selfcarecentral.com: did not receive HSTS header selfie-france.fr: could not connect to host selldorado.com: did not receive HSTS header sello.com: did not receive HSTS header sellocdn.com: could not connect to host semen3325.xyz: could not connect to host semenkovich.com: did not receive HSTS header semps-servers.de: could not connect to host semps.de: did not receive HSTS header -sendcat.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] senedirect.com: did not receive HSTS header sensibus.com: did not receive HSTS header seo.consulting: did not receive HSTS header seomobo.com: could not connect to host seowarp.net: did not receive HSTS header seq.tf: did not receive HSTS header serized.pw: could not connect to host servecrypt.com: could not connect to host @@ -2637,28 +2684,27 @@ servecrypt.ru: could not connect to host servercode.ca: did not receive HSTS header serverdensity.io: did not receive HSTS header servergno.me: did not receive HSTS header setphaserstostun.org: could not connect to host setuid.io: did not receive HSTS header seyahatsagliksigortalari.com: could not connect to host shadoom.com: did not receive HSTS header shadowmorph.info: did not receive HSTS header +shadowsocks.net: could not connect to host shakepeers.org: did not receive HSTS header shakespearesolutions.com.au: did not receive HSTS header shanesage.com: could not connect to host -shanewadleigh.com: could not connect to host shaobin.wang: could not connect to host shareimg.xyz: did not receive HSTS header sharescope.co.uk: max-age too low: 14400 shareworx.net: could not connect to host shauncrowley.co.uk: could not connect to host shaunwheelhou.se: could not connect to host shawnh.net: did not receive HSTS header -shazbots.org: could not connect to host shellsec.pw: did not receive HSTS header shibe.club: could not connect to host shiftins.com: did not receive HSTS header shiinko.com: could not connect to host shinju.moe: could not connect to host shiona.xyz: did not receive HSTS header shocksrv.com: did not receive HSTS header shooshosha.com: did not receive HSTS header @@ -2679,33 +2725,32 @@ silverhome.ninja: could not connect to h silverpvp.com: could not connect to host silverwind.io: did not receive HSTS header simbast.com: could not connect to host simod.org: could not connect to host simon.butcher.name: max-age too low: 2629743 simplefraud.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] simplelearner.com: could not connect to host simplepractice.com: did not receive HSTS header +simplixos.org: could not connect to host simply-premium.com: did not receive HSTS header sincron.org: could not connect to host siriad.com: did not receive HSTS header sirius-lee.net: could not connect to host sistemy48.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] sites.google.com: did not receive HSTS header (error ignored - included regardless) sitesten.com: did not receive HSTS header sitsy.ru: did not receive HSTS header -skalender.ch: could not connect to host +sizingservers.be: could not connect to host skhosting.eu: did not receive HSTS header skile.ru: could not connect to host skk.io: could not connect to host skoda-clever-lead.de: could not connect to host skoda-im-dialog.de: could not connect to host -skoda-service-team-cup.de: could not connect to host skullhouse.nyc: did not receive HSTS header -skyo.com: did not receive HSTS header skyoy.com: did not receive HSTS header slashdesign.it: did not receive HSTS header slashem.me: did not receive HSTS header slattery.co: could not connect to host slicketl.com: did not receive HSTS header slightfuture.click: could not connect to host slix.io: could not connect to host slope.haus: could not connect to host @@ -2717,56 +2762,53 @@ smart-ov.nl: could not connect to host smartcoin.com.br: could not connect to host smartofficesandsmarthomes.com: did not receive HSTS header smatch.com: did not receive HSTS header smet.us: could not connect to host smirkingwhorefromhighgarden.pro: could not connect to host smkn1lengkong.sch.id: did not receive HSTS header smksi2.com: max-age too low: 0 smusg.com: did not receive HSTS header -smvfd.info: could not connect to host snailing.org: could not connect to host snapworks.net: did not receive HSTS header sneberger.cz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] -sneezry.com: could not connect to host snel4u.nl: could not connect to host snelwerk.be: did not receive HSTS header snelxboxlivegold.nl: did not receive HSTS header sng.my: could not connect to host snoqualmiefiber.org: did not receive HSTS header snoupon.com: did not receive HSTS header sobabox.ru: could not connect to host sobie.ch: could not connect to host sobotkama.eu: did not receive HSTS header soccergif.com: could not connect to host soci.ml: did not receive HSTS header socialbillboard.com: could not connect to host socialdevelop.biz: did not receive HSTS header +socialgrowing.cl: could not connect to host socialhams.net: did not receive HSTS header socialhead.io: could not connect to host socialspirit.com.br: did not receive HSTS header sockeye.cc: could not connect to host sockeye.io: did not receive HSTS header socomponents.co.uk: did not receive HSTS header solidfuelappliancespares.co.uk: did not receive HSTS header solinter.com.br: did not receive HSTS header soll-i.ch: did not receive HSTS header solsystems.ru: could not connect to host someshit.xyz: could not connect to host somethingnew.xyz: did not receive HSTS header songzhuolun.com: did not receive HSTS header sonic.sk: max-age too low: 0 -sosaka.ml: could not connect to host sotiran.com: did not receive HSTS header sotor.de: did not receive HSTS header soulboy.io: did not receive HSTS header soulema.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] soulfulglamour.uk: could not connect to host sourcelair.com: did not receive HSTS header -southmeriden-vfd.org: could not connect to host southside-crew.club: could not connect to host southworcestershiregpservices.co.uk: could not connect to host souyar.de: could not connect to host souyar.net: could not connect to host souyar.us: could not connect to host sovereignshare.com: could not connect to host sown.dyndns.org: could not connect to host spacehq.org: max-age too low: 0 @@ -2776,33 +2818,35 @@ spartantheatre.org: max-age too low: 172 spauted.com: could not connect to host spdysync.com: could not connect to host speed-mailer.com: could not connect to host speedcounter.net: did not receive HSTS header speedmann.de: did not receive HSTS header speedtest-russia.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] speidel.com.tr: did not receive HSTS header spencerbaer.com: did not receive HSTS header -sperrstun.de: could not connect to host -spherenix.org: could not connect to host +sperrstun.de: did not receive HSTS header spideroak.com: did not receive HSTS header spiegels.nl: did not receive HSTS header +spitefultowel.com: could not connect to host spongepowered.org: did not receive HSTS header sportwette.eu: did not receive HSTS header spot-events.com: could not connect to host spotlightsrule.ddns.net: could not connect to host spreadsheets.google.com: did not receive HSTS header (error ignored - included regardless) spreed.me: did not receive HSTS header +sprybear.com: did not receive HSTS header square.gs: could not connect to host squatldf.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] sqzryang.com: max-age too low: 604800 srna.sk: max-age too low: 120 ssersay.com: did not receive HSTS header ssl.panoramio.com: did not receive HSTS header ssl.rip: could not connect to host +sslhosting.cz: could not connect to host ssmato.me: could not connect to host ssnc.org: max-age too low: 300 sss3s.com: could not connect to host stabletoken.com: could not connect to host stadjerspasonline.nl: could not connect to host stateofexception.io: could not connect to host static.or.at: could not connect to host staticanime.net: could not connect to host @@ -2815,16 +2859,17 @@ stevensononthe.net: did not receive HSTS stewartremodelingadvantage.com: could not connect to host stick2bike.de: did not receive HSTS header stig.io: did not receive HSTS header stigroom.com: could not connect to host stkbn.com: did not receive HSTS header stmbgr.com: could not connect to host stn.me.uk: did not receive HSTS header stocktrade.de: could not connect to host +stoffe-monster.de: did not receive HSTS header stopwoodfin.org: could not connect to host storecove.com: did not receive HSTS header storeden.com: did not receive HSTS header storefrontify.com: did not receive HSTS header stormhub.org: could not connect to host stqry.com: did not receive HSTS header str0.at: did not receive HSTS header strasweb.fr: did not receive HSTS header @@ -2843,46 +2888,46 @@ stugb.de: did not receive HSTS header stw-group.at: could not connect to host subbing.work: could not connect to host subdimension.org: could not connect to host subtitle.rip: could not connect to host sudo.im: could not connect to host sudo.li: did not receive HSTS header sufix.cz: could not connect to host suite73.org: could not connect to host +sumoatm.com: did not receive HSTS header sumoscout.de: did not receive HSTS header suncountrymarine.com: did not receive HSTS header -sunjaydhama.com: did not receive HSTS header sunshinepress.org: could not connect to host supereight.net: did not receive HSTS header superiorfloridavacation.com: did not receive HSTS header supersalescontest.nl: did not receive HSTS header superwally.org: could not connect to host suprlink.net: could not connect to host surfeasy.com: did not receive HSTS header sushi101tempe.com: did not receive HSTS header suzukikenichi.com: did not receive HSTS header sv.search.yahoo.com: did not receive HSTS header -svenluijten.com: did not receive HSTS header sweetll.me: could not connect to host swimming.ca: did not receive HSTS header swimturk.com.tr: did not receive HSTS header swmd5c.org: did not receive HSTS header sxbk.pw: could not connect to host syam.cc: could not connect to host sydgrabber.tk: could not connect to host sylvanorder.com: could not connect to host synackr.com: could not connect to host syncer.jp: did not receive HSTS header syncserve.net: did not receive HSTS header syneic.com: did not receive HSTS header syno.gq: could not connect to host sys.tf: could not connect to host sysadmin.xyz: could not connect to host syso.name: could not connect to host +systemreboot.net: could not connect to host szaszm.tk: max-age too low: 0 szaydon.me: could not connect to host t.facebook.com: did not receive HSTS header tablet.facebook.com: did not receive HSTS header tafoma.com: did not receive HSTS header tageau.com: could not connect to host taglondon.org: did not receive HSTS header tails.com.ar: could not connect to host @@ -2896,16 +2941,17 @@ tapka.cz: did not receive HSTS header taranis.re: could not connect to host tarhauskielto.fi: did not receive HSTS header tartaros.fi: could not connect to host taskstats.com: could not connect to host taskulu.ir: could not connect to host tasmansecurity.com: could not connect to host tastyyy.co: could not connect to host tauchkater.de: could not connect to host +tavopica.lt: did not receive HSTS header taxbench.com: could not connect to host tazemama.biz: could not connect to host tazz.in: could not connect to host tcao.info: could not connect to host tcl.ath.cx: did not receive HSTS header tcomms.org: max-age too low: 0 tcp.expert: max-age too low: 2592000 teachforcanada.ca: did not receive HSTS header @@ -2914,23 +2960,23 @@ teamsocial.co: did not receive HSTS head teamzeus.cz: could not connect to host techhub.ml: could not connect to host techllage.com: could not connect to host techloaner.com: could not connect to host techmatehq.com: could not connect to host technosavvyport.com: did not receive HSTS header techvalue.gr: did not receive HSTS header tegelsensanitaironline.nl: did not receive HSTS header -teknologi.or.id: could not connect to host tekshrek.com: max-age too low: 0 temehu.com: did not receive HSTS header tempcraft.net: could not connect to host tendertool.nl: could not connect to host tenni.xyz: could not connect to host tensionup.com: could not connect to host +teodio.cl: did not receive HSTS header terrax.berlin: could not connect to host terrax.info: could not connect to host terrax.net: could not connect to host terry.pub: did not receive HSTS header testandroid.xyz: could not connect to host testbawks.com: did not receive HSTS header testnode.xyz: could not connect to host teunstuinposters.nl: did not receive HSTS header @@ -2954,28 +3000,27 @@ thehiddenbay.me: could not connect to ho thehiddenbay.net: could not connect to host thehistory.me: could not connect to host thehonorguard.org: did not receive HSTS header theinvisibletrailer.com: could not connect to host themarble.co: could not connect to host themerchandiser.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] themicrocapital.com: could not connect to host themillerslive.com: could not connect to host -themusthaves.nl: did not receive HSTS header theodorejones.info: could not connect to host thepartywarehouse.co.uk: did not receive HSTS header thepiratebay.al: could not connect to host therapyportal.com: did not receive HSTS header -therevenge.me: could not connect to host thestack.xyz: could not connect to host thestagchorleywood.co.uk: did not receive HSTS header thetomharling.com: max-age too low: 86400 theurbanyoga.com: did not receive HSTS header thevintagenews.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] -thewhitneypaige.com: did not receive HSTS header +thewhitneypaige.com: could not connect to host +theyosh.nl: could not connect to host thezonders.com: did not receive HSTS header thierfreund.de: could not connect to host thijsalders.nl: did not receive HSTS header thinkcoding.de: could not connect to host thinkcoding.org: could not connect to host thinlyveiledcontempt.com: could not connect to host thirdpartytrade.com: did not receive HSTS header thirty5.net: did not receive HSTS header @@ -2983,25 +3028,24 @@ thorncreek.net: did not receive HSTS hea thumbtack.com: did not receive HSTS header tibbitshall.ca: did not receive HSTS header tickopa.co.uk: could not connect to host tickreport.com: did not receive HSTS header tictactux.de: could not connect to host tiensnet.com: did not receive HSTS header tikutiku.pl: max-age too low: 0 timbeilby.com: could not connect to host +timcamara.com: did not receive HSTS header time-river.xyz: could not connect to host timestamp.io: did not receive HSTS header timotrans.de: did not receive HSTS header timotrans.eu: did not receive HSTS header timwittenberg.com: could not connect to host tipsyk.ru: could not connect to host tirex.media: did not receive HSTS header -tism.in: could not connect to host -titiansgirlphotography.com: could not connect to host tittelbach.at: could not connect to host titties.ml: could not connect to host tkarstens.de: could not connect to host tlo.hosting: could not connect to host tlo.network: could not connect to host tls.li: could not connect to host tm-solutions.eu: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] tmprod.com: did not receive HSTS header @@ -3027,17 +3071,16 @@ topodin.com: did not receive HSTS header topshelfguild.com: could not connect to host topyx.com: did not receive HSTS header torahanytime.com: did not receive HSTS header torprojects.com: could not connect to host tosecure.link: could not connect to host toshnix.com: could not connect to host totem-eshop.cz: could not connect to host toucedo.de: could not connect to host -touchpointidg.us: could not connect to host tourpeer.com: did not receive HSTS header toverland-tickets.nl: did not receive HSTS header toxme.se: did not receive HSTS header tpbcdn.com: could not connect to host tpe-edu.com: could not connect to host track.plus: could not connect to host tracktivity.com.au: did not receive HSTS header tradingcentre.com.au: did not receive HSTS header @@ -3047,17 +3090,16 @@ translate.googleapis.com: did not receiv transportal.sk: did not receive HSTS header trendberry.ru: did not receive HSTS header trinityaffirmations.com: max-age too low: 0 trinitycore.org: max-age too low: 2592000 tripdelta.com: did not receive HSTS header trustmeimfancy.com: could not connect to host trybind.com: could not connect to host ts2.se: did not receive HSTS header -tsaro.io: could not connect to host tsecy.com: did not receive HSTS header tsgoc.com: did not receive HSTS header tssouthernpower.com: max-age too low: 0 tuingereedschappen.net: could not connect to host tuningblog.eu: did not receive HSTS header turtlementors.com: did not receive HSTS header tuturulianda.com: could not connect to host tuvalie.com: could not connect to host @@ -3080,20 +3122,18 @@ txclimbers.com: could not connect to hos txf.pw: could not connect to host ty2u.com: did not receive HSTS header tylian.net: max-age too low: 0 tyrelius.com: did not receive HSTS header tyroproducts.eu: did not receive HSTS header tzappa.net: could not connect to host u-blox.com: did not receive HSTS header ua.search.yahoo.com: did not receive HSTS header -uberwald.ws: could not connect to host ubicloud.de: could not connect to host ublox.com: did not receive HSTS header -ubtce.com: could not connect to host ubuntuhot.com: did not receive HSTS header uega.net: did not receive HSTS header ufotable.uk: max-age too low: 0 ui8.net: did not receive HSTS header ukas.com: did not receive HSTS header ukrgadget.com: could not connect to host ulmo.dk: could not connect to host ultros.io: did not receive HSTS header @@ -3101,24 +3141,24 @@ umidev.com: could not connect to host umie.cc: did not receive HSTS header unapp.me: could not connect to host unbanthe.net: could not connect to host unblocked.host: could not connect to host unccdesign.club: could not connect to host undernet.uy: did not receive HSTS header unfiltered.nyc: did not receive HSTS header uni-games.com: could not connect to host +unicooo.com: could not connect to host unison.com: could not connect to host university4industry.com: did not receive HSTS header universogay.com: did not receive HSTS header univz.com: could not connect to host unknownphenomena.net: could not connect to host unplugg3r.dk: could not connect to host unravel.ie: did not receive HSTS header -unsystem.net: could not connect to host unwiredbrain.com: could not connect to host uonstaffhub.com: could not connect to host uow.ninja: could not connect to host upaknship.com: did not receive HSTS header upani.net: could not connect to host upldr.pw: could not connect to host upr.com.ua: could not connect to host uprotect.it: could not connect to host @@ -3132,34 +3172,36 @@ usercare.com: did not receive HSTS heade ustr.gov: max-age too low: 86400 utumno.ch: could not connect to host uy.search.yahoo.com: did not receive HSTS header uz.search.yahoo.com: did not receive HSTS header uzmandroid.com: did not receive HSTS header uzmandroid.net: did not receive HSTS header uzmandroid.top: could not connect to host vaddder.com: could not connect to host +valasi.eu: could not connect to host valethound.com: could not connect to host valis.sx: could not connect to host valkyrja.xyz: did not receive HSTS header valleyridgepta.org: could not connect to host vallis.net: could not connect to host vanderkley.it: could not connect to host vanetv.com: could not connect to host vanitas.xyz: could not connect to host vanitynailworkz.com: could not connect to host vansieleghem.com: could not connect to host +vantien.com: could not connect to host vasanth.org: did not receive HSTS header +vaur.fr: could not connect to host vbh2o.com: did not receive HSTS header vbulletin-russia.com: could not connect to host vbulletinrussia.com: could not connect to host vcr.re: could not connect to host vdcomp.cz: could not connect to host vechkasov.ru: did not receive HSTS header -velasense.com: could not connect to host vemokin.net: did not receive HSTS header verifikatorindonesia.com: could not connect to host vermontcareergateway.org: could not connect to host versia.ru: did not receive HSTS header veryhax.de: could not connect to host vfree.org: could not connect to host vgatest.nl: could not connect to host vglimg.com: could not connect to host @@ -3168,57 +3210,61 @@ vidbuchanan.co.uk: could not connect to videnskabsklubben.dk: did not receive HSTS header videomuz.com: did not receive HSTS header vidz.ga: could not connect to host vieaw.com: could not connect to host viktorsvantesson.net: did not receive HSTS header vintageheartcoffee.com: did not receive HSTS header vio.no: did not receive HSTS header viperdns.com: could not connect to host +vipmusic.ga: could not connect to host vissanum.com: did not receive HSTS header vistarait.com: did not receive HSTS header viva-french.com: did not receive HSTS header vizeat.com: did not receive HSTS header +vlora.city: could not connect to host vm0.eu: did not receive HSTS header vmrdev.com: could not connect to host voceinveste.com: did not receive HSTS header voicesuk.co.uk: did not receive HSTS header volcrado.com: could not connect to host voliere-info.nl: did not receive HSTS header vorm2.com: did not receive HSTS header vortexhobbies.com: did not receive HSTS header votocek.cz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] votockova.cz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] vox.vg: did not receive HSTS header +vozp.cz: max-age too low: 0 vpl.me: did not receive HSTS header vpn-byen.dk: did not receive HSTS header vratny.space: could not connect to host vvl.me: did not receive HSTS header vxstream-sandbox.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] vyncke.org: max-age too low: 2678400 vyskocil.eu: did not receive HSTS header vzk.io: could not connect to host w4a.fr: max-age too low: 0 w4xzr.top: could not connect to host w4xzr.xyz: could not connect to host -wachter.biz: could not connect to host wait.jp: could not connect to host +waka-mono.com: could not connect to host wakapp.de: could not connect to host walkeryoung.ca: could not connect to host wallet.google.com: did not receive HSTS header (error ignored - included regardless) wallsblog.dk: could not connect to host walnutgaming.co.uk: could not connect to host wanban.io: could not connect to host wangqiliang.xn--fiqs8s: did not receive HSTS header wangzuan168.cc: could not connect to host wapjt.cn: could not connect to host warandpeace.xyz: could not connect to host warhistoryonline.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] warmlyyours.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] warped.com: did not receive HSTS header +wasserspucker.de: did not receive HSTS header wassim.is: could not connect to host watchium.com: did not receive HSTS header watchweasel.com: did not receive HSTS header watsonhall.uk: could not connect to host wave.is: could not connect to host wealthfactory.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] wear2work.nl: did not receive HSTS header weaverhairextensions.nl: did not receive HSTS header @@ -3234,24 +3280,26 @@ webmaniabr.com: did not receive HSTS hea webmarketingfestival.it: did not receive HSTS header webnosql.com: could not connect to host webperformance.ru: max-age too low: 3600 webswitch.io: could not connect to host webtiles.co.uk: could not connect to host webtobesocial.de: could not connect to host webwork.pw: could not connect to host weddingenvelopes.co.uk: did not receive HSTS header +welpy.com: did not receive HSTS header weltmeisterschaft.net: could not connect to host weme.eu: could not connect to host wendalyncheng.com: could not connect to host werdeeintimo.de: did not receive HSTS header werkenbijkfc.nl: did not receive HSTS header werkplaatsoost.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] werkruimtebottendaal.nl: did not receive HSTS header wesleyharris.ca: did not receive HSTS header +westendzone.com: max-age too low: 0 westerhoud.nl: did not receive HSTS header wettbuero.de: did not receive HSTS header wetten.eu: did not receive HSTS header wettertoertchen.com: did not receive HSTS header wetttipps.com: did not receive HSTS header wetttipps.de: did not receive HSTS header wevahoo.com: could not connect to host whats.io: could not connect to host @@ -3261,16 +3309,17 @@ whitestagforge.com: could not connect to whoclicks.net: could not connect to host whoisapi.online: could not connect to host wholebites.com: did not receive HSTS header whysuck.com: could not connect to host whyworldhot.com: could not connect to host wienholding.at: max-age too low: 0 wieninternational.at: could not connect to host wiire.me: could not connect to host +wikidsystems.com: could not connect to host wilf1rst.com: could not connect to host william.si: did not receive HSTS header willosagiede.com: did not receive HSTS header winclient.cn: did not receive HSTS header winecodeavocado.com: did not receive HSTS header winpack.cf: could not connect to host winpack.eu.org: could not connect to host winsec.nl: did not receive HSTS header @@ -3294,28 +3343,27 @@ womosale.de: could not connect to host wonderfall.xyz: did not receive HSTS header woording.com: could not connect to host workfone.io: did not receive HSTS header workwithgo.com: could not connect to host wowapi.org: could not connect to host wphostingspot.com: did not receive HSTS header wpmetadatastandardsproject.org: could not connect to host writeapp.me: did not receive HSTS header -wrldevelopment.com: did not receive HSTS header wsscompany.com.ve: could not connect to host wurzelzwerg.net: could not connect to host www.apollo-auto.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] www.braintreepayments.com: did not receive HSTS header www.calyxinstitute.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] www.cloudflare.com: did not receive HSTS header www.cueup.com: could not connect to host www.cyveillance.com: did not receive HSTS header www.developer.mydigipass.com: could not connect to host www.elanex.biz: did not receive HSTS header -www.gamesdepartment.co.uk: max-age too low: 0 +www.gamesdepartment.co.uk: could not connect to host www.gmail.com: did not receive HSTS header (error ignored - included regardless) www.googlemail.com: did not receive HSTS header (error ignored - included regardless) www.greplin.com: could not connect to host www.honeybadger.io: did not receive HSTS header www.intercom.io: did not receive HSTS header www.jitsi.org: did not receive HSTS header www.ledgerscope.net: could not connect to host www.logentries.com: did not receive HSTS header @@ -3326,52 +3374,56 @@ www.rme.li: did not receive HSTS header www.sandbox.mydigipass.com: could not connect to host www.surfeasy.com: did not receive HSTS header www.zenpayroll.com: did not receive HSTS header www3.info: did not receive HSTS header wxukang.cn: could not connect to host x2w.io: could not connect to host xa.search.yahoo.com: did not receive HSTS header xandocs.com: could not connect to host +xatr0z.org: could not connect to host xavierbarroso.com: could not connect to host xboxlivegoldshop.nl: did not receive HSTS header xcoop.me: could not connect to host xellos.ga: could not connect to host xellos.ml: could not connect to host xenesisziarovky.sk: could not connect to host -xett.com: did not receive HSTS header +xett.com: could not connect to host xfive.de: did not receive HSTS header xiaody.me: could not connect to host xiaolvmu.me: could not connect to host xiaoxiao.im: did not receive HSTS header xiyu.moe: could not connect to host xmppwocky.net: could not connect to host xn--79q87uvkclvgd56ahq5a.net: did not receive HSTS header xn--7rvz7ku3ppnr.jp: did not receive HSTS header +xn--9pr52k0p5a.com: did not receive HSTS header +xn--datenrettung-mnchen-jbc.com: did not receive HSTS header xn--maraa-rta.org: could not connect to host xn--neb-tma3u8u.xyz: could not connect to host xng.io: did not receive HSTS header xombra.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] -xpi.fr: could not connect to host xpj.sx: could not connect to host xplore-dna.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] xsmobile.de: could not connect to host xtream-hosting.com: could not connect to host xtream-hosting.de: could not connect to host xtream-hosting.eu: could not connect to host xtreamhosting.eu: could not connect to host +xtremegaming.it: could not connect to host xuri.me: max-age too low: 2592000 xxbase.com: could not connect to host y-o-w.com: did not receive HSTS header y-s.pw: did not receive HSTS header yal.sh: did not receive HSTS header yalook.com: did not receive HSTS header yamaken.jp: did not receive HSTS header yamamo10.com: could not connect to host -yaporn.tv: max-age too low: 0 +yapbreak.fr: could not connect to host +yaporn.tv: did not receive HSTS header yarogneva.ru: could not connect to host yasinaydin.net: max-age too low: 2592000 yello.website: could not connect to host yellowcar.website: could not connect to host yenniferallulli.de: could not connect to host yenniferallulli.es: did not receive HSTS header yenniferallulli.moda: could not connect to host yenniferallulli.nl: could not connect to host @@ -3385,16 +3437,17 @@ yokeepo.com: max-age too low: 0 yoloboatrentals.com: did not receive HSTS header yoloprod.fr: could not connect to host yoloseo.com: could not connect to host youcontrol.ru: could not connect to host yourstrongbox.com: could not connect to host yout.com: max-age too low: 60000 yu.gg: did not receive HSTS header yuhen.ru: could not connect to host +yunity.org: did not receive HSTS header yunzhu.li: did not receive HSTS header yunzhu.org: could not connect to host z33.ch: did not receive HSTS header z3liff.com: could not connect to host z3liff.net: could not connect to host za.search.yahoo.com: did not receive HSTS header zadieheimlich.com: did not receive HSTS header zamorano.edu: could not connect to host @@ -3402,31 +3455,32 @@ zap.yt: could not connect to host zarooba.com: did not receive HSTS header zbasenem.pl: did not receive HSTS header zbigniewgalucki.eu: did not receive HSTS header zbp.at: did not receive HSTS header zebrababy.cn: did not receive HSTS header zeitpunkt-kulturmagazin.de: did not receive HSTS header zelezny.uk: did not receive HSTS header zelfstandigemakelaars.net: did not receive HSTS header +zellari.ru: could not connect to host zenpayroll.com: did not receive HSTS header zentraler-kreditausschuss.de: did not receive HSTS header zentralwolke.de: did not receive HSTS header zera.com.au: could not connect to host zeto365.pl: could not connect to host zett4.me: did not receive HSTS header zh.search.yahoo.com: did not receive HSTS header zhaochen.xyz: could not connect to host zhaojin97.cn: max-age too low: 604800 zhendingresources.com: max-age too low: 0 +zinc-x.com: could not connect to host zirtue.io: could not connect to host ziyuanabc.xyz: could not connect to host zking.ga: could not connect to host zocken.com: could not connect to host -zombiesecured.com: could not connect to host zomerschoen.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /builds/slave/m-cen-l64-periodicupdate-00000/getHSTSPreloadList.js :: processStsHeader :: line 121" data: no] zoo24.de: did not receive HSTS header zoomingin.net: max-age too low: 2592000 zorium.org: did not receive HSTS header zoznamrealit.sk: did not receive HSTS header zqhong.com: could not connect to host zrn.in: could not connect to host ztan.tk: could not connect to host
--- a/security/manager/ssl/nsSTSPreloadList.inc +++ b/security/manager/ssl/nsSTSPreloadList.inc @@ -3,17 +3,17 @@ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ /*****************************************************************************/ /* This is an automatically generated file. If you're not */ /* nsSiteSecurityService.cpp, you shouldn't be #including it. */ /*****************************************************************************/ #include <stdint.h> -const PRTime gPreloadListExpirationTime = INT64_C(1486848259088000); +const PRTime gPreloadListExpirationTime = INT64_C(1487250653394000); static const char kSTSHostTable[] = { /* "007sascha.de", true */ '0', '0', '7', 's', 'a', 's', 'c', 'h', 'a', '.', 'd', 'e', '\0', /* "00f.net", true */ '0', '0', 'f', '.', 'n', 'e', 't', '\0', /* "01electronica.com.ar", true */ '0', '1', 'e', 'l', 'e', 'c', 't', 'r', 'o', 'n', 'i', 'c', 'a', '.', 'c', 'o', 'm', '.', 'a', 'r', '\0', /* "01seguridad.com.ar", true */ '0', '1', 's', 'e', 'g', 'u', 'r', 'i', 'd', 'a', 'd', '.', 'c', 'o', 'm', '.', 'a', 'r', '\0', /* "050media.nl", true */ '0', '5', '0', 'm', 'e', 'd', 'i', 'a', '.', 'n', 'l', '\0', /* "0513c.com", true */ '0', '5', '1', '3', 'c', '.', 'c', 'o', 'm', '\0', @@ -49,16 +49,17 @@ static const char kSTSHostTable[] = { /* "112app.nl", true */ '1', '1', '2', 'a', 'p', 'p', '.', 'n', 'l', '\0', /* "123.gg", true */ '1', '2', '3', '.', 'g', 'g', '\0', /* "123comparer.fr", true */ '1', '2', '3', 'c', 'o', 'm', 'p', 'a', 'r', 'e', 'r', '.', 'f', 'r', '\0', /* "123test.fr", true */ '1', '2', '3', 't', 'e', 's', 't', '.', 'f', 'r', '\0', /* "126ium.moe", true */ '1', '2', '6', 'i', 'u', 'm', '.', 'm', 'o', 'e', '\0', /* "127011-networks.ch", true */ '1', '2', '7', '0', '1', '1', '-', 'n', 'e', 't', 'w', 'o', 'r', 'k', 's', '.', 'c', 'h', '\0', /* "12vpn.net", true */ '1', '2', 'v', 'p', 'n', '.', 'n', 'e', 't', '\0', /* "12vpn.org", true */ '1', '2', 'v', 'p', 'n', '.', 'o', 'r', 'g', '\0', + /* "1464424382.rsc.cdn77.org", true */ '1', '4', '6', '4', '4', '2', '4', '3', '8', '2', '.', 'r', 's', 'c', '.', 'c', 'd', 'n', '7', '7', '.', 'o', 'r', 'g', '\0', /* "14it.de", true */ '1', '4', 'i', 't', '.', 'd', 'e', '\0', /* "1536.cf", true */ '1', '5', '3', '6', '.', 'c', 'f', '\0', /* "16packets.com", true */ '1', '6', 'p', 'a', 'c', 'k', 'e', 't', 's', '.', 'c', 'o', 'm', '\0', /* "174.net.nz", true */ '1', '7', '4', '.', 'n', 'e', 't', '.', 'n', 'z', '\0', /* "1750studios.com", true */ '1', '7', '5', '0', 's', 't', 'u', 'd', 'i', 'o', 's', '.', 'c', 'o', 'm', '\0', /* "17hats.com", true */ '1', '7', 'h', 'a', 't', 's', '.', 'c', 'o', 'm', '\0', /* "188betwarriors.co.uk", true */ '1', '8', '8', 'b', 'e', 't', 'w', 'a', 'r', 'r', 'i', 'o', 'r', 's', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "188trafalgar.ca", true */ '1', '8', '8', 't', 'r', 'a', 'f', 'a', 'l', 'g', 'a', 'r', '.', 'c', 'a', '\0', @@ -66,17 +67,16 @@ static const char kSTSHostTable[] = { /* "1a-diamantscheiben.de", true */ '1', 'a', '-', 'd', 'i', 'a', 'm', 'a', 'n', 't', 's', 'c', 'h', 'e', 'i', 'b', 'e', 'n', '.', 'd', 'e', '\0', /* "1a-vermessung.at", true */ '1', 'a', '-', 'v', 'e', 'r', 'm', 'e', 's', 's', 'u', 'n', 'g', '.', 'a', 't', '\0', /* "1a-werkstattgeraete.de", true */ '1', 'a', '-', 'w', 'e', 'r', 'k', 's', 't', 'a', 't', 't', 'g', 'e', 'r', 'a', 'e', 't', 'e', '.', 'd', 'e', '\0', /* "1atic.com", true */ '1', 'a', 't', 'i', 'c', '.', 'c', 'o', 'm', '\0', /* "1co-jp.net", true */ '1', 'c', 'o', '-', 'j', 'p', '.', 'n', 'e', 't', '\0', /* "1cover.com", true */ '1', 'c', 'o', 'v', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "1cover.com.au", true */ '1', 'c', 'o', 'v', 'e', 'r', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "1hourproofreading.com", true */ '1', 'h', 'o', 'u', 'r', 'p', 'r', 'o', 'o', 'f', 'r', 'e', 'a', 'd', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', - /* "1item.co.il", true */ '1', 'i', 't', 'e', 'm', '.', 'c', 'o', '.', 'i', 'l', '\0', /* "1k8b.com", true */ '1', 'k', '8', 'b', '.', 'c', 'o', 'm', '\0', /* "1km.ro", true */ '1', 'k', 'm', '.', 'r', 'o', '\0', /* "1on1on1.de", true */ '1', 'o', 'n', '1', 'o', 'n', '1', '.', 'd', 'e', '\0', /* "1on1on1.tv", true */ '1', 'o', 'n', '1', 'o', 'n', '1', '.', 't', 'v', '\0', /* "1pw.ca", true */ '1', 'p', 'w', '.', 'c', 'a', '\0', /* "1px.tv", true */ '1', 'p', 'x', '.', 't', 'v', '\0', /* "1q365a.com", true */ '1', 'q', '3', '6', '5', 'a', '.', 'c', 'o', 'm', '\0', /* "1rs.nl", true */ '1', 'r', 's', '.', 'n', 'l', '\0', @@ -142,16 +142,17 @@ static const char kSTSHostTable[] = { /* "41844.de", true */ '4', '1', '8', '4', '4', '.', 'd', 'e', '\0', /* "4500.co.il", true */ '4', '5', '0', '0', '.', 'c', 'o', '.', 'i', 'l', '\0', /* "4679.space", false */ '4', '6', '7', '9', '.', 's', 'p', 'a', 'c', 'e', '\0', /* "4cclothing.com", true */ '4', 'c', 'c', 'l', 'o', 't', 'h', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "4d2.xyz", true */ '4', 'd', '2', '.', 'x', 'y', 'z', '\0', /* "4eyes.ch", true */ '4', 'e', 'y', 'e', 's', '.', 'c', 'h', '\0', /* "4g-server.eu", false */ '4', 'g', '-', 's', 'e', 'r', 'v', 'e', 'r', '.', 'e', 'u', '\0', /* "4loc.us", true */ '4', 'l', 'o', 'c', '.', 'u', 's', '\0', + /* "4ourty2.org", true */ '4', 'o', 'u', 'r', 't', 'y', '2', '.', 'o', 'r', 'g', '\0', /* "4project.co.il", true */ '4', 'p', 'r', 'o', 'j', 'e', 'c', 't', '.', 'c', 'o', '.', 'i', 'l', '\0', /* "4th-ave-studio.com", true */ '4', 't', 'h', '-', 'a', 'v', 'e', '-', 's', 't', 'u', 'd', 'i', 'o', '.', 'c', 'o', 'm', '\0', /* "4vf.de", true */ '4', 'v', 'f', '.', 'd', 'e', '\0', /* "4w-performers.link", false */ '4', 'w', '-', 'p', 'e', 'r', 'f', 'o', 'r', 'm', 'e', 'r', 's', '.', 'l', 'i', 'n', 'k', '\0', /* "4winds.pt", true */ '4', 'w', 'i', 'n', 'd', 's', '.', 'p', 't', '\0', /* "4x.fi", true */ '4', 'x', '.', 'f', 'i', '\0', /* "500p.xyz", true */ '5', '0', '0', 'p', '.', 'x', 'y', 'z', '\0', /* "50plusnet.nl", true */ '5', '0', 'p', 'l', 'u', 's', 'n', 'e', 't', '.', 'n', 'l', '\0', @@ -204,17 +205,16 @@ static const char kSTSHostTable[] = { /* "aaronkimmig.de", true */ 'a', 'a', 'r', 'o', 'n', 'k', 'i', 'm', 'm', 'i', 'g', '.', 'd', 'e', '\0', /* "aaronsilber.me", true */ 'a', 'a', 'r', 'o', 'n', 's', 'i', 'l', 'b', 'e', 'r', '.', 'm', 'e', '\0', /* "aatf.us", true */ 'a', 'a', 't', 'f', '.', 'u', 's', '\0', /* "aati.info", true */ 'a', 'a', 't', 'i', '.', 'i', 'n', 'f', 'o', '\0', /* "abacustech.co.jp", true */ 'a', 'b', 'a', 'c', 'u', 's', 't', 'e', 'c', 'h', '.', 'c', 'o', '.', 'j', 'p', '\0', /* "abareplace.com", true */ 'a', 'b', 'a', 'r', 'e', 'p', 'l', 'a', 'c', 'e', '.', 'c', 'o', 'm', '\0', /* "abc.li", true */ 'a', 'b', 'c', '.', 'l', 'i', '\0', /* "abe-elektro.de", true */ 'a', 'b', 'e', '-', 'e', 'l', 'e', 'k', 't', 'r', 'o', '.', 'd', 'e', '\0', - /* "abeestrada.com", true */ 'a', 'b', 'e', 'e', 's', 't', 'r', 'a', 'd', 'a', '.', 'c', 'o', 'm', '\0', /* "aberdeenjudo.co.uk", true */ 'a', 'b', 'e', 'r', 'd', 'e', 'e', 'n', 'j', 'u', 'd', 'o', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "abeus.com", true */ 'a', 'b', 'e', 'u', 's', '.', 'c', 'o', 'm', '\0', /* "abiapp.net", true */ 'a', 'b', 'i', 'a', 'p', 'p', '.', 'n', 'e', 't', '\0', /* "abilitynet.org.uk", true */ 'a', 'b', 'i', 'l', 'i', 't', 'y', 'n', 'e', 't', '.', 'o', 'r', 'g', '.', 'u', 'k', '\0', /* "abilymp06.net", true */ 'a', 'b', 'i', 'l', 'y', 'm', 'p', '0', '6', '.', 'n', 'e', 't', '\0', /* "abiturma.de", true */ 'a', 'b', 'i', 't', 'u', 'r', 'm', 'a', '.', 'd', 'e', '\0', /* "ablogagency.net", true */ 'a', 'b', 'l', 'o', 'g', 'a', 'g', 'e', 'n', 'c', 'y', '.', 'n', 'e', 't', '\0', /* "abloop.com", true */ 'a', 'b', 'l', 'o', 'o', 'p', '.', 'c', 'o', 'm', '\0', @@ -251,25 +251,27 @@ static const char kSTSHostTable[] = { /* "achenar.net", true */ 'a', 'c', 'h', 'e', 'n', 'a', 'r', '.', 'n', 'e', 't', '\0', /* "acheritage.co.uk", true */ 'a', 'c', 'h', 'e', 'r', 'i', 't', 'a', 'g', 'e', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "achow101.com", true */ 'a', 'c', 'h', 'o', 'w', '1', '0', '1', '.', 'c', 'o', 'm', '\0', /* "achromatisch.de", true */ 'a', 'c', 'h', 'r', 'o', 'm', 'a', 't', 'i', 's', 'c', 'h', '.', 'd', 'e', '\0', /* "achtzehn.eu", true */ 'a', 'c', 'h', 't', 'z', 'e', 'h', 'n', '.', 'e', 'u', '\0', /* "aciksite.com", true */ 'a', 'c', 'i', 'k', 's', 'i', 't', 'e', '.', 'c', 'o', 'm', '\0', /* "acisonline.net", true */ 'a', 'c', 'i', 's', 'o', 'n', 'l', 'i', 'n', 'e', '.', 'n', 'e', 't', '\0', /* "aclu.org", false */ 'a', 'c', 'l', 'u', '.', 'o', 'r', 'g', '\0', + /* "acnpacific.com", true */ 'a', 'c', 'n', 'p', 'a', 'c', 'i', 'f', 'i', 'c', '.', 'c', 'o', 'm', '\0', /* "acoffeeshops.com", true */ 'a', 'c', 'o', 'f', 'f', 'e', 'e', 's', 'h', 'o', 'p', 's', '.', 'c', 'o', 'm', '\0', /* "acritelli.com", true */ 'a', 'c', 'r', 'i', 't', 'e', 'l', 'l', 'i', '.', 'c', 'o', 'm', '\0', /* "acrylicwifi.com", true */ 'a', 'c', 'r', 'y', 'l', 'i', 'c', 'w', 'i', 'f', 'i', '.', 'c', 'o', 'm', '\0', /* "acsemb.org", true */ 'a', 'c', 's', 'e', 'm', 'b', '.', 'o', 'r', 'g', '\0', /* "acsports.ca", true */ 'a', 'c', 's', 'p', 'o', 'r', 't', 's', '.', 'c', 'a', '\0', /* "activatemyiphone.com", true */ 'a', 'c', 't', 'i', 'v', 'a', 't', 'e', 'm', 'y', 'i', 'p', 'h', 'o', 'n', 'e', '.', 'c', 'o', 'm', '\0', /* "activateplay.com", true */ 'a', 'c', 't', 'i', 'v', 'a', 't', 'e', 'p', 'l', 'a', 'y', '.', 'c', 'o', 'm', '\0', /* "active.hu", false */ 'a', 'c', 't', 'i', 'v', 'e', '.', 'h', 'u', '\0', /* "actorsroom.com", true */ 'a', 'c', 't', 'o', 'r', 's', 'r', 'o', 'o', 'm', '.', 'c', 'o', 'm', '\0', + /* "actserv.co.ke", true */ 'a', 'c', 't', 's', 'e', 'r', 'v', '.', 'c', 'o', '.', 'k', 'e', '\0', /* "acuica.co.uk", false */ 'a', 'c', 'u', 'i', 'c', 'a', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "acus.gov", true */ 'a', 'c', 'u', 's', '.', 'g', 'o', 'v', '\0', /* "ad-notam.asia", true */ 'a', 'd', '-', 'n', 'o', 't', 'a', 'm', '.', 'a', 's', 'i', 'a', '\0', /* "ad-notam.ch", true */ 'a', 'd', '-', 'n', 'o', 't', 'a', 'm', '.', 'c', 'h', '\0', /* "ad-notam.co.uk", true */ 'a', 'd', '-', 'n', 'o', 't', 'a', 'm', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "ad-notam.com", true */ 'a', 'd', '-', 'n', 'o', 't', 'a', 'm', '.', 'c', 'o', 'm', '\0', /* "ad-notam.de", true */ 'a', 'd', '-', 'n', 'o', 't', 'a', 'm', '.', 'd', 'e', '\0', /* "ad-notam.fr", true */ 'a', 'd', '-', 'n', 'o', 't', 'a', 'm', '.', 'f', 'r', '\0', @@ -279,16 +281,17 @@ static const char kSTSHostTable[] = { /* "adalis.org", true */ 'a', 'd', 'a', 'l', 'i', 's', '.', 'o', 'r', 'g', '\0', /* "adam-kostecki.de", true */ 'a', 'd', 'a', 'm', '-', 'k', 'o', 's', 't', 'e', 'c', 'k', 'i', '.', 'd', 'e', '\0', /* "adambyers.com", true */ 'a', 'd', 'a', 'm', 'b', 'y', 'e', 'r', 's', '.', 'c', 'o', 'm', '\0', /* "adamdixon.co.uk", true */ 'a', 'd', 'a', 'm', 'd', 'i', 'x', 'o', 'n', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "adamgold.net", true */ 'a', 'd', 'a', 'm', 'g', 'o', 'l', 'd', '.', 'n', 'e', 't', '\0', /* "adamkaminski.com", true */ 'a', 'd', 'a', 'm', 'k', 'a', 'm', 'i', 'n', 's', 'k', 'i', '.', 'c', 'o', 'm', '\0', /* "adamkostecki.de", true */ 'a', 'd', 'a', 'm', 'k', 'o', 's', 't', 'e', 'c', 'k', 'i', '.', 'd', 'e', '\0', /* "adamoutler.com", true */ 'a', 'd', 'a', 'm', 'o', 'u', 't', 'l', 'e', 'r', '.', 'c', 'o', 'm', '\0', + /* "adamradocz.com", true */ 'a', 'd', 'a', 'm', 'r', 'a', 'd', 'o', 'c', 'z', '.', 'c', 'o', 'm', '\0', /* "adamricheimer.com", true */ 'a', 'd', 'a', 'm', 'r', 'i', 'c', 'h', 'e', 'i', 'm', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "adams.dk", true */ 'a', 'd', 'a', 'm', 's', '.', 'd', 'k', '\0', /* "adamstas.com", true */ 'a', 'd', 'a', 'm', 's', 't', 'a', 's', '.', 'c', 'o', 'm', '\0', /* "adapt-elektronik.com", true */ 'a', 'd', 'a', 'p', 't', '-', 'e', 'l', 'e', 'k', 't', 'r', 'o', 'n', 'i', 'k', '.', 'c', 'o', 'm', '\0', /* "adapt.de", true */ 'a', 'd', 'a', 'p', 't', '.', 'd', 'e', '\0', /* "adapti.de", true */ 'a', 'd', 'a', 'p', 't', 'i', '.', 'd', 'e', '\0', /* "adaptivemechanics.edu.au", true */ 'a', 'd', 'a', 'p', 't', 'i', 'v', 'e', 'm', 'e', 'c', 'h', 'a', 'n', 'i', 'c', 's', '.', 'e', 'd', 'u', '.', 'a', 'u', '\0', /* "adastra.re", true */ 'a', 'd', 'a', 's', 't', 'r', 'a', '.', 'r', 'e', '\0', @@ -437,17 +440,16 @@ static const char kSTSHostTable[] = { /* "aktiv-naturheilmittel.ch", true */ 'a', 'k', 't', 'i', 'v', '-', 'n', 'a', 't', 'u', 'r', 'h', 'e', 'i', 'l', 'm', 'i', 't', 't', 'e', 'l', '.', 'c', 'h', '\0', /* "aktiv-naturheilmittel.de", true */ 'a', 'k', 't', 'i', 'v', '-', 'n', 'a', 't', 'u', 'r', 'h', 'e', 'i', 'l', 'm', 'i', 't', 't', 'e', 'l', '.', 'd', 'e', '\0', /* "aktivist.in", true */ 'a', 'k', 't', 'i', 'v', 'i', 's', 't', '.', 'i', 'n', '\0', /* "akvorrat.at", true */ 'a', 'k', 'v', 'o', 'r', 'r', 'a', 't', '.', 'a', 't', '\0', /* "al-f.net", true */ 'a', 'l', '-', 'f', '.', 'n', 'e', 't', '\0', /* "aladdin.ie", true */ 'a', 'l', 'a', 'd', 'd', 'i', 'n', '.', 'i', 'e', '\0', /* "aladdinschools.appspot.com", true */ 'a', 'l', 'a', 'd', 'd', 'i', 'n', 's', 'c', 'h', 'o', 'o', 'l', 's', '.', 'a', 'p', 'p', 's', 'p', 'o', 't', '.', 'c', 'o', 'm', '\0', /* "alainwolf.ch", true */ 'a', 'l', 'a', 'i', 'n', 'w', 'o', 'l', 'f', '.', 'c', 'h', '\0', - /* "alair.cn", false */ 'a', 'l', 'a', 'i', 'r', '.', 'c', 'n', '\0', /* "alaninkenya.org", true */ 'a', 'l', 'a', 'n', 'i', 'n', 'k', 'e', 'n', 'y', 'a', '.', 'o', 'r', 'g', '\0', /* "alaricfavier.eu", true */ 'a', 'l', 'a', 'r', 'i', 'c', 'f', 'a', 'v', 'i', 'e', 'r', '.', 'e', 'u', '\0', /* "alasta.info", true */ 'a', 'l', 'a', 's', 't', 'a', '.', 'i', 'n', 'f', 'o', '\0', /* "alaundeil.xyz", true */ 'a', 'l', 'a', 'u', 'n', 'd', 'e', 'i', 'l', '.', 'x', 'y', 'z', '\0', /* "alberguecimballa.es", true */ 'a', 'l', 'b', 'e', 'r', 'g', 'u', 'e', 'c', 'i', 'm', 'b', 'a', 'l', 'l', 'a', '.', 'e', 's', '\0', /* "albersdruck.de", true */ 'a', 'l', 'b', 'e', 'r', 's', 'd', 'r', 'u', 'c', 'k', '.', 'd', 'e', '\0', /* "albion2.org", true */ 'a', 'l', 'b', 'i', 'o', 'n', '2', '.', 'o', 'r', 'g', '\0', /* "albuic.tk", true */ 'a', 'l', 'b', 'u', 'i', 'c', '.', 't', 'k', '\0', @@ -472,31 +474,33 @@ static const char kSTSHostTable[] = { /* "alexhd.de", true */ 'a', 'l', 'e', 'x', 'h', 'd', '.', 'd', 'e', '\0', /* "alexismeza.com", true */ 'a', 'l', 'e', 'x', 'i', 's', 'm', 'e', 'z', 'a', '.', 'c', 'o', 'm', '\0', /* "alexismeza.com.mx", true */ 'a', 'l', 'e', 'x', 'i', 's', 'm', 'e', 'z', 'a', '.', 'c', 'o', 'm', '.', 'm', 'x', '\0', /* "alexismeza.dk", true */ 'a', 'l', 'e', 'x', 'i', 's', 'm', 'e', 'z', 'a', '.', 'd', 'k', '\0', /* "alexmerkel.com", true */ 'a', 'l', 'e', 'x', 'm', 'e', 'r', 'k', 'e', 'l', '.', 'c', 'o', 'm', '\0', /* "alexmerkel.me", true */ 'a', 'l', 'e', 'x', 'm', 'e', 'r', 'k', 'e', 'l', '.', 'm', 'e', '\0', /* "alexmerkel.xyz", true */ 'a', 'l', 'e', 'x', 'm', 'e', 'r', 'k', 'e', 'l', '.', 'x', 'y', 'z', '\0', /* "alexn.org", true */ 'a', 'l', 'e', 'x', 'n', '.', 'o', 'r', 'g', '\0', + /* "alexpavel.com", true */ 'a', 'l', 'e', 'x', 'p', 'a', 'v', 'e', 'l', '.', 'c', 'o', 'm', '\0', /* "alexsergeyev.com", true */ 'a', 'l', 'e', 'x', 's', 'e', 'r', 'g', 'e', 'y', 'e', 'v', '.', 'c', 'o', 'm', '\0', /* "alexsexton.com", true */ 'a', 'l', 'e', 'x', 's', 'e', 'x', 't', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "alextsang.net", true */ 'a', 'l', 'e', 'x', 't', 's', 'a', 'n', 'g', '.', 'n', 'e', 't', '\0', /* "alexvetter.de", true */ 'a', 'l', 'e', 'x', 'v', 'e', 't', 't', 'e', 'r', '.', 'd', 'e', '\0', /* "alexwardweb.com", true */ 'a', 'l', 'e', 'x', 'w', 'a', 'r', 'd', 'w', 'e', 'b', '.', 'c', 'o', 'm', '\0', /* "alexyang.me", true */ 'a', 'l', 'e', 'x', 'y', 'a', 'n', 'g', '.', 'm', 'e', '\0', /* "algolia.com", true */ 'a', 'l', 'g', 'o', 'l', 'i', 'a', '.', 'c', 'o', 'm', '\0', /* "alicestudio.it", true */ 'a', 'l', 'i', 'c', 'e', 's', 't', 'u', 'd', 'i', 'o', '.', 'i', 't', '\0', /* "alienstat.com", true */ 'a', 'l', 'i', 'e', 'n', 's', 't', 'a', 't', '.', 'c', 'o', 'm', '\0', /* "alinasmusicstudio.com", true */ 'a', 'l', 'i', 'n', 'a', 's', 'm', 'u', 's', 'i', 'c', 's', 't', 'u', 'd', 'i', 'o', '.', 'c', 'o', 'm', '\0', /* "alisonlitchfield.com", true */ 'a', 'l', 'i', 's', 'o', 'n', 'l', 'i', 't', 'c', 'h', 'f', 'i', 'e', 'l', 'd', '.', 'c', 'o', 'm', '\0', /* "alittlebitcheeky.com", false */ 'a', 'l', 'i', 't', 't', 'l', 'e', 'b', 'i', 't', 'c', 'h', 'e', 'e', 'k', 'y', '.', 'c', 'o', 'm', '\0', /* "aljaspod.com", true */ 'a', 'l', 'j', 'a', 's', 'p', 'o', 'd', '.', 'c', 'o', 'm', '\0', /* "aljaspod.hu", true */ 'a', 'l', 'j', 'a', 's', 'p', 'o', 'd', '.', 'h', 'u', '\0', /* "aljaspod.net", true */ 'a', 'l', 'j', 'a', 's', 'p', 'o', 'd', '.', 'n', 'e', 't', '\0', + /* "alkamitech.com", true */ 'a', 'l', 'k', 'a', 'm', 'i', 't', 'e', 'c', 'h', '.', 'c', 'o', 'm', '\0', /* "alkel.info", true */ 'a', 'l', 'k', 'e', 'l', '.', 'i', 'n', 'f', 'o', '\0', /* "all-connect.net", true */ 'a', 'l', 'l', '-', 'c', 'o', 'n', 'n', 'e', 'c', 't', '.', 'n', 'e', 't', '\0', /* "all.tf", false */ 'a', 'l', 'l', '.', 't', 'f', '\0', /* "all4os.com", true */ 'a', 'l', 'l', '4', 'o', 's', '.', 'c', 'o', 'm', '\0', /* "allabout.me", true */ 'a', 'l', 'l', 'a', 'b', 'o', 'u', 't', '.', 'm', 'e', '\0', /* "allbenjoy.de", true */ 'a', 'l', 'l', 'b', 'e', 'n', 'j', 'o', 'y', '.', 'd', 'e', '\0', /* "allcarepharmacy.com", true */ 'a', 'l', 'l', 'c', 'a', 'r', 'e', 'p', 'h', 'a', 'r', 'm', 'a', 'c', 'y', '.', 'c', 'o', 'm', '\0', /* "alldaymonitoring.com", true */ 'a', 'l', 'l', 'd', 'a', 'y', 'm', 'o', 'n', 'i', 't', 'o', 'r', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', @@ -628,17 +632,16 @@ static const char kSTSHostTable[] = { /* "anfsanchezo.co", true */ 'a', 'n', 'f', 's', 'a', 'n', 'c', 'h', 'e', 'z', 'o', '.', 'c', 'o', '\0', /* "anglesya.win", true */ 'a', 'n', 'g', 'l', 'e', 's', 'y', 'a', '.', 'w', 'i', 'n', '\0', /* "anglictinatabor.cz", true */ 'a', 'n', 'g', 'l', 'i', 'c', 't', 'i', 'n', 'a', 't', 'a', 'b', 'o', 'r', '.', 'c', 'z', '\0', /* "angrapa.ru", true */ 'a', 'n', 'g', 'r', 'a', 'p', 'a', '.', 'r', 'u', '\0', /* "angristan.fr", true */ 'a', 'n', 'g', 'r', 'i', 's', 't', 'a', 'n', '.', 'f', 'r', '\0', /* "angularjs.org", true */ 'a', 'n', 'g', 'u', 'l', 'a', 'r', 'j', 's', '.', 'o', 'r', 'g', '\0', /* "animalnet.de", false */ 'a', 'n', 'i', 'm', 'a', 'l', 'n', 'e', 't', '.', 'd', 'e', '\0', /* "anime.my", false */ 'a', 'n', 'i', 'm', 'e', '.', 'm', 'y', '\0', - /* "animesharp.com", true */ 'a', 'n', 'i', 'm', 'e', 's', 'h', 'a', 'r', 'p', '.', 'c', 'o', 'm', '\0', /* "anitaalbersen.nl", true */ 'a', 'n', 'i', 't', 'a', 'a', 'l', 'b', 'e', 'r', 's', 'e', 'n', '.', 'n', 'l', '\0', /* "anitube-nocookie.ch", true */ 'a', 'n', 'i', 't', 'u', 'b', 'e', '-', 'n', 'o', 'c', 'o', 'o', 'k', 'i', 'e', '.', 'c', 'h', '\0', /* "anitube.ch", true */ 'a', 'n', 'i', 't', 'u', 'b', 'e', '.', 'c', 'h', '\0', /* "ankarakart.com.tr", true */ 'a', 'n', 'k', 'a', 'r', 'a', 'k', 'a', 'r', 't', '.', 'c', 'o', 'm', '.', 't', 'r', '\0', /* "ankaraprofesyonelnakliyat.com", false */ 'a', 'n', 'k', 'a', 'r', 'a', 'p', 'r', 'o', 'f', 'e', 's', 'y', 'o', 'n', 'e', 'l', 'n', 'a', 'k', 'l', 'i', 'y', 'a', 't', '.', 'c', 'o', 'm', '\0', /* "ankaraprofesyonelnakliyat.com.tr", false */ 'a', 'n', 'k', 'a', 'r', 'a', 'p', 'r', 'o', 'f', 'e', 's', 'y', 'o', 'n', 'e', 'l', 'n', 'a', 'k', 'l', 'i', 'y', 'a', 't', '.', 'c', 'o', 'm', '.', 't', 'r', '\0', /* "ankaraprofesyonelwebtasarim.com", true */ 'a', 'n', 'k', 'a', 'r', 'a', 'p', 'r', 'o', 'f', 'e', 's', 'y', 'o', 'n', 'e', 'l', 'w', 'e', 'b', 't', 'a', 's', 'a', 'r', 'i', 'm', '.', 'c', 'o', 'm', '\0', /* "ankarauzmanlarnakliyat.com", true */ 'a', 'n', 'k', 'a', 'r', 'a', 'u', 'z', 'm', 'a', 'n', 'l', 'a', 'r', 'n', 'a', 'k', 'l', 'i', 'y', 'a', 't', '.', 'c', 'o', 'm', '\0', @@ -697,16 +700,17 @@ static const char kSTSHostTable[] = { /* "apexitsolutions.ca", true */ 'a', 'p', 'e', 'x', 'i', 't', 's', 'o', 'l', 'u', 't', 'i', 'o', 'n', 's', '.', 'c', 'a', '\0', /* "api-geek.com", true */ 'a', 'p', 'i', '-', 'g', 'e', 'e', 'k', '.', 'c', 'o', 'm', '\0', /* "api.cloudflare.com", false */ 'a', 'p', 'i', '.', 'c', 'l', 'o', 'u', 'd', 'f', 'l', 'a', 'r', 'e', '.', 'c', 'o', 'm', '\0', /* "api.intercom.io", true */ 'a', 'p', 'i', '.', 'i', 'n', 't', 'e', 'r', 'c', 'o', 'm', '.', 'i', 'o', '\0', /* "api.simple.com", false */ 'a', 'p', 'i', '.', 's', 'i', 'm', 'p', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "api.xero.com", false */ 'a', 'p', 'i', '.', 'x', 'e', 'r', 'o', '.', 'c', 'o', 'm', '\0', /* "apis.google.com", true */ 'a', 'p', 'i', 's', '.', 'g', 'o', 'o', 'g', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "apis.world", true */ 'a', 'p', 'i', 's', '.', 'w', 'o', 'r', 'l', 'd', '\0', + /* "apk4fun.com", true */ 'a', 'p', 'k', '4', 'f', 'u', 'n', '.', 'c', 'o', 'm', '\0', /* "aplpackaging.co.uk", true */ 'a', 'p', 'l', 'p', 'a', 'c', 'k', 'a', 'g', 'i', 'n', 'g', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "apmg-certified.com", true */ 'a', 'p', 'm', 'g', '-', 'c', 'e', 'r', 't', 'i', 'f', 'i', 'e', 'd', '.', 'c', 'o', 'm', '\0', /* "apmg-cyber.com", true */ 'a', 'p', 'm', 'g', '-', 'c', 'y', 'b', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "apn-einstellungen.de", true */ 'a', 'p', 'n', '-', 'e', 'i', 'n', 's', 't', 'e', 'l', 'l', 'u', 'n', 'g', 'e', 'n', '.', 'd', 'e', '\0', /* "apnakliyat.com", false */ 'a', 'p', 'n', 'a', 'k', 'l', 'i', 'y', 'a', 't', '.', 'c', 'o', 'm', '\0', /* "apolloyl.com", true */ 'a', 'p', 'o', 'l', 'l', 'o', 'y', 'l', '.', 'c', 'o', 'm', '\0', /* "aponow.de", true */ 'a', 'p', 'o', 'n', 'o', 'w', '.', 'd', 'e', '\0', /* "aposke.com", true */ 'a', 'p', 'o', 's', 'k', 'e', '.', 'c', 'o', 'm', '\0', @@ -730,17 +734,16 @@ static const char kSTSHostTable[] = { /* "apply.eu", true */ 'a', 'p', 'p', 'l', 'y', '.', 'e', 'u', '\0', /* "appmobile.io", true */ 'a', 'p', 'p', 'm', 'o', 'b', 'i', 'l', 'e', '.', 'i', 'o', '\0', /* "appointed.at", true */ 'a', 'p', 'p', 'o', 'i', 'n', 't', 'e', 'd', '.', 'a', 't', '\0', /* "appreciationkards.com", true */ 'a', 'p', 'p', 'r', 'e', 'c', 'i', 'a', 't', 'i', 'o', 'n', 'k', 'a', 'r', 'd', 's', '.', 'c', 'o', 'm', '\0', /* "approbo.com", true */ 'a', 'p', 'p', 'r', 'o', 'b', 'o', '.', 'c', 'o', 'm', '\0', /* "apps.facebook.com", false */ 'a', 'p', 'p', 's', '.', 'f', 'a', 'c', 'e', 'b', 'o', 'o', 'k', '.', 'c', 'o', 'm', '\0', /* "apps.fedoraproject.org", true */ 'a', 'p', 'p', 's', '.', 'f', 'e', 'd', 'o', 'r', 'a', 'p', 'r', 'o', 'j', 'e', 'c', 't', '.', 'o', 'r', 'g', '\0', /* "apps.stg.fedoraproject.org", true */ 'a', 'p', 'p', 's', '.', 's', 't', 'g', '.', 'f', 'e', 'd', 'o', 'r', 'a', 'p', 'r', 'o', 'j', 'e', 'c', 't', '.', 'o', 'r', 'g', '\0', - /* "appsbystudio.co.uk", true */ 'a', 'p', 'p', 's', 'b', 'y', 's', 't', 'u', 'd', 'i', 'o', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "appsdash.io", true */ 'a', 'p', 'p', 's', 'd', 'a', 's', 'h', '.', 'i', 'o', '\0', /* "appson.co.uk", true */ 'a', 'p', 'p', 's', 'o', 'n', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "appui-de-fenetre.fr", true */ 'a', 'p', 'p', 'u', 'i', '-', 'd', 'e', '-', 'f', 'e', 'n', 'e', 't', 'r', 'e', '.', 'f', 'r', '\0', /* "appuro.com", true */ 'a', 'p', 'p', 'u', 'r', 'o', '.', 'c', 'o', 'm', '\0', /* "aprovpn.com", true */ 'a', 'p', 'r', 'o', 'v', 'p', 'n', '.', 'c', 'o', 'm', '\0', /* "aprsdroid.org", true */ 'a', 'p', 'r', 's', 'd', 'r', 'o', 'i', 'd', '.', 'o', 'r', 'g', '\0', /* "aprz.de", true */ 'a', 'p', 'r', 'z', '.', 'd', 'e', '\0', /* "apstudynotes.org", true */ 'a', 'p', 's', 't', 'u', 'd', 'y', 'n', 'o', 't', 'e', 's', '.', 'o', 'r', 'g', '\0', @@ -797,17 +800,16 @@ static const char kSTSHostTable[] = { /* "arrakis.se", true */ 'a', 'r', 'r', 'a', 'k', 'i', 's', '.', 's', 'e', '\0', /* "arrive.by", true */ 'a', 'r', 'r', 'i', 'v', 'e', '.', 'b', 'y', '\0', /* "arrmaforum.com", true */ 'a', 'r', 'r', 'm', 'a', 'f', 'o', 'r', 'u', 'm', '.', 'c', 'o', 'm', '\0', /* "arrow-analytics.nl", true */ 'a', 'r', 'r', 'o', 'w', '-', 'a', 'n', 'a', 'l', 'y', 't', 'i', 'c', 's', '.', 'n', 'l', '\0', /* "arrow-api.nl", true */ 'a', 'r', 'r', 'o', 'w', '-', 'a', 'p', 'i', '.', 'n', 'l', '\0', /* "arrow-cloud.nl", true */ 'a', 'r', 'r', 'o', 'w', '-', 'c', 'l', 'o', 'u', 'd', '.', 'n', 'l', '\0', /* "arrowgrove.com", true */ 'a', 'r', 'r', 'o', 'w', 'g', 'r', 'o', 'v', 'e', '.', 'c', 'o', 'm', '\0', /* "arrowwebprojects.nl", true */ 'a', 'r', 'r', 'o', 'w', 'w', 'e', 'b', 'p', 'r', 'o', 'j', 'e', 'c', 't', 's', '.', 'n', 'l', '\0', - /* "ars-design.net", true */ 'a', 'r', 's', '-', 'd', 'e', 's', 'i', 'g', 'n', '.', 'n', 'e', 't', '\0', /* "arsenal.ru", true */ 'a', 'r', 's', 'e', 'n', 'a', 'l', '.', 'r', 'u', '\0', /* "artegusto.ru", true */ 'a', 'r', 't', 'e', 'g', 'u', 's', 't', 'o', '.', 'r', 'u', '\0', /* "arteseideias.com.pt", true */ 'a', 'r', 't', 'e', 's', 'e', 'i', 'd', 'e', 'i', 'a', 's', '.', 'c', 'o', 'm', '.', 'p', 't', '\0', /* "artetrama.com", false */ 'a', 'r', 't', 'e', 't', 'r', 'a', 'm', 'a', '.', 'c', 'o', 'm', '\0', /* "arthurlaw.ca", true */ 'a', 'r', 't', 'h', 'u', 'r', 'l', 'a', 'w', '.', 'c', 'a', '\0', /* "articaexports.com", true */ 'a', 'r', 't', 'i', 'c', 'a', 'e', 'x', 'p', 'o', 'r', 't', 's', '.', 'c', 'o', 'm', '\0', /* "artifex21.com", true */ 'a', 'r', 't', 'i', 'f', 'e', 'x', '2', '1', '.', 'c', 'o', 'm', '\0', /* "artifex21.fr", true */ 'a', 'r', 't', 'i', 'f', 'e', 'x', '2', '1', '.', 'f', 'r', '\0', @@ -849,17 +851,16 @@ static const char kSTSHostTable[] = { /* "asianodor.com", true */ 'a', 's', 'i', 'a', 'n', 'o', 'd', 'o', 'r', '.', 'c', 'o', 'm', '\0', /* "ask.fedoraproject.org", true */ 'a', 's', 'k', '.', 'f', 'e', 'd', 'o', 'r', 'a', 'p', 'r', 'o', 'j', 'e', 'c', 't', '.', 'o', 'r', 'g', '\0', /* "ask.stg.fedoraproject.org", true */ 'a', 's', 'k', '.', 's', 't', 'g', '.', 'f', 'e', 'd', 'o', 'r', 'a', 'p', 'r', 'o', 'j', 'e', 'c', 't', '.', 'o', 'r', 'g', '\0', /* "askfit.cz", true */ 'a', 's', 'k', 'f', 'i', 't', '.', 'c', 'z', '\0', /* "askmagicconch.com", true */ 'a', 's', 'k', 'm', 'a', 'g', 'i', 'c', 'c', 'o', 'n', 'c', 'h', '.', 'c', 'o', 'm', '\0', /* "askwhy.cz", true */ 'a', 's', 'k', 'w', 'h', 'y', '.', 'c', 'z', '\0', /* "askwhy.eu", true */ 'a', 's', 'k', 'w', 'h', 'y', '.', 'e', 'u', '\0', /* "asm-x.com", true */ 'a', 's', 'm', '-', 'x', '.', 'c', 'o', 'm', '\0', - /* "asmui.ml", true */ 'a', 's', 'm', 'u', 'i', '.', 'm', 'l', '\0', /* "aspargesgaarden.no", true */ 'a', 's', 'p', 'a', 'r', 'g', 'e', 's', 'g', 'a', 'a', 'r', 'd', 'e', 'n', '.', 'n', 'o', '\0', /* "asphaltfruehling.de", true */ 'a', 's', 'p', 'h', 'a', 'l', 't', 'f', 'r', 'u', 'e', 'h', 'l', 'i', 'n', 'g', '.', 'd', 'e', '\0', /* "aspires.co.jp", true */ 'a', 's', 'p', 'i', 'r', 'e', 's', '.', 'c', 'o', '.', 'j', 'p', '\0', /* "asr.li", true */ 'a', 's', 'r', '.', 'l', 'i', '\0', /* "asr.rocks", true */ 'a', 's', 'r', '.', 'r', 'o', 'c', 'k', 's', '\0', /* "asrob.eu", true */ 'a', 's', 'r', 'o', 'b', '.', 'e', 'u', '\0', /* "assekuranzjobs.de", true */ 'a', 's', 's', 'e', 'k', 'u', 'r', 'a', 'n', 'z', 'j', 'o', 'b', 's', '.', 'd', 'e', '\0', /* "assemble-together.org", true */ 'a', 's', 's', 'e', 'm', 'b', 'l', 'e', '-', 't', 'o', 'g', 'e', 't', 'h', 'e', 'r', '.', 'o', 'r', 'g', '\0', @@ -929,17 +930,16 @@ static const char kSTSHostTable[] = { /* "auraredeye.com", true */ 'a', 'u', 'r', 'a', 'r', 'e', 'd', 'e', 'y', 'e', '.', 'c', 'o', 'm', '\0', /* "auraredshield.com", true */ 'a', 'u', 'r', 'a', 'r', 'e', 'd', 's', 'h', 'i', 'e', 'l', 'd', '.', 'c', 'o', 'm', '\0', /* "aureus.pw", true */ 'a', 'u', 'r', 'e', 'u', 's', '.', 'p', 'w', '\0', /* "ausoptic.com.au", true */ 'a', 'u', 's', 'o', 'p', 't', 'i', 'c', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "ausschreibungen-suedtirol.it", true */ 'a', 'u', 's', 's', 'c', 'h', 'r', 'e', 'i', 'b', 'u', 'n', 'g', 'e', 'n', '-', 's', 'u', 'e', 'd', 't', 'i', 'r', 'o', 'l', '.', 'i', 't', '\0', /* "aussiecable.org", true */ 'a', 'u', 's', 's', 'i', 'e', 'c', 'a', 'b', 'l', 'e', '.', 'o', 'r', 'g', '\0', /* "aussiehq.com.au", true */ 'a', 'u', 's', 's', 'i', 'e', 'h', 'q', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "auth.adult", true */ 'a', 'u', 't', 'h', '.', 'a', 'd', 'u', 'l', 't', '\0', - /* "authint.com", true */ 'a', 'u', 't', 'h', 'i', 'n', 't', '.', 'c', 'o', 'm', '\0', /* "author24.ru", true */ 'a', 'u', 't', 'h', 'o', 'r', '2', '4', '.', 'r', 'u', '\0', /* "authoritynutrition.com", true */ 'a', 'u', 't', 'h', 'o', 'r', 'i', 't', 'y', 'n', 'u', 't', 'r', 'i', 't', 'i', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "autimatisering.nl", true */ 'a', 'u', 't', 'i', 'm', 'a', 't', 'i', 's', 'e', 'r', 'i', 'n', 'g', '.', 'n', 'l', '\0', /* "auto-anleitung.de", true */ 'a', 'u', 't', 'o', '-', 'a', 'n', 'l', 'e', 'i', 't', 'u', 'n', 'g', '.', 'd', 'e', '\0', /* "autoauctionsohio.com", true */ 'a', 'u', 't', 'o', 'a', 'u', 'c', 't', 'i', 'o', 'n', 's', 'o', 'h', 'i', 'o', '.', 'c', 'o', 'm', '\0', /* "autoauctionsvirginia.com", true */ 'a', 'u', 't', 'o', 'a', 'u', 'c', 't', 'i', 'o', 'n', 's', 'v', 'i', 'r', 'g', 'i', 'n', 'i', 'a', '.', 'c', 'o', 'm', '\0', /* "autodeploy.it", true */ 'a', 'u', 't', 'o', 'd', 'e', 'p', 'l', 'o', 'y', '.', 'i', 't', '\0', /* "autojuhos.sk", true */ 'a', 'u', 't', 'o', 'j', 'u', 'h', 'o', 's', '.', 's', 'k', '\0', @@ -1025,17 +1025,16 @@ static const char kSTSHostTable[] = { /* "baer.im", true */ 'b', 'a', 'e', 'r', '.', 'i', 'm', '\0', /* "baer.one", true */ 'b', 'a', 'e', 'r', '.', 'o', 'n', 'e', '\0', /* "baffinlee.com", true */ 'b', 'a', 'f', 'f', 'i', 'n', 'l', 'e', 'e', '.', 'c', 'o', 'm', '\0', /* "bagelsbakery.com", true */ 'b', 'a', 'g', 'e', 'l', 's', 'b', 'a', 'k', 'e', 'r', 'y', '.', 'c', 'o', 'm', '\0', /* "baggy.me.uk", true */ 'b', 'a', 'g', 'g', 'y', '.', 'm', 'e', '.', 'u', 'k', '\0', /* "bagheera.me.uk", true */ 'b', 'a', 'g', 'h', 'e', 'e', 'r', 'a', '.', 'm', 'e', '.', 'u', 'k', '\0', /* "bah.im", true */ 'b', 'a', 'h', '.', 'i', 'm', '\0', /* "baifubao.com", true */ 'b', 'a', 'i', 'f', 'u', 'b', 'a', 'o', '.', 'c', 'o', 'm', '\0', - /* "baiker.info", true */ 'b', 'a', 'i', 'k', 'e', 'r', '.', 'i', 'n', 'f', 'o', '\0', /* "bair.io", true */ 'b', 'a', 'i', 'r', '.', 'i', 'o', '\0', /* "baiyangliu.com", true */ 'b', 'a', 'i', 'y', 'a', 'n', 'g', 'l', 'i', 'u', '.', 'c', 'o', 'm', '\0', /* "bajic.ch", true */ 'b', 'a', 'j', 'i', 'c', '.', 'c', 'h', '\0', /* "bakabt.info", true */ 'b', 'a', 'k', 'a', 'b', 't', '.', 'i', 'n', 'f', 'o', '\0', /* "bakaweb.fr", true */ 'b', 'a', 'k', 'a', 'w', 'e', 'b', '.', 'f', 'r', '\0', /* "balboa.io", true */ 'b', 'a', 'l', 'b', 'o', 'a', '.', 'i', 'o', '\0', /* "baleares.party", true */ 'b', 'a', 'l', 'e', 'a', 'r', 'e', 's', '.', 'p', 'a', 'r', 't', 'y', '\0', /* "balikonos.cz", true */ 'b', 'a', 'l', 'i', 'k', 'o', 'n', 'o', 's', '.', 'c', 'z', '\0', @@ -1049,16 +1048,17 @@ static const char kSTSHostTable[] = { /* "balloonphp.com", true */ 'b', 'a', 'l', 'l', 'o', 'o', 'n', 'p', 'h', 'p', '.', 'c', 'o', 'm', '\0', /* "ballotapi.com", true */ 'b', 'a', 'l', 'l', 'o', 't', 'a', 'p', 'i', '.', 'c', 'o', 'm', '\0', /* "bananabandy.com", true */ 'b', 'a', 'n', 'a', 'n', 'a', 'b', 'a', 'n', 'd', 'y', '.', 'c', 'o', 'm', '\0', /* "bananium.fr", true */ 'b', 'a', 'n', 'a', 'n', 'i', 'u', 'm', '.', 'f', 'r', '\0', /* "banbanchs.com", true */ 'b', 'a', 'n', 'b', 'a', 'n', 'c', 'h', 's', '.', 'c', 'o', 'm', '\0', /* "bancacrs.it", true */ 'b', 'a', 'n', 'c', 'a', 'c', 'r', 's', '.', 'i', 't', '\0', /* "bancoctt.pt", true */ 'b', 'a', 'n', 'c', 'o', 'c', 't', 't', '.', 'p', 't', '\0', /* "bandrcrafts.com", true */ 'b', 'a', 'n', 'd', 'r', 'c', 'r', 'a', 'f', 't', 's', '.', 'c', 'o', 'm', '\0', + /* "bangzafran.com", true */ 'b', 'a', 'n', 'g', 'z', 'a', 'f', 'r', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "bank.simple.com", false */ 'b', 'a', 'n', 'k', '.', 's', 'i', 'm', 'p', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "bankcardoffer.com", true */ 'b', 'a', 'n', 'k', 'c', 'a', 'r', 'd', 'o', 'f', 'f', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "bankcircle.co.in", true */ 'b', 'a', 'n', 'k', 'c', 'i', 'r', 'c', 'l', 'e', '.', 'c', 'o', '.', 'i', 'n', '\0', /* "bankersonline.com", true */ 'b', 'a', 'n', 'k', 'e', 'r', 's', 'o', 'n', 'l', 'i', 'n', 'e', '.', 'c', 'o', 'm', '\0', /* "bankin.com", true */ 'b', 'a', 'n', 'k', 'i', 'n', '.', 'c', 'o', 'm', '\0', /* "bankinter.pt", true */ 'b', 'a', 'n', 'k', 'i', 'n', 't', 'e', 'r', '.', 'p', 't', '\0', /* "bankofdenton.com", true */ 'b', 'a', 'n', 'k', 'o', 'f', 'd', 'e', 'n', 't', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "bannisbierblog.de", true */ 'b', 'a', 'n', 'n', 'i', 's', 'b', 'i', 'e', 'r', 'b', 'l', 'o', 'g', '.', 'd', 'e', '\0', @@ -1141,16 +1141,17 @@ static const char kSTSHostTable[] = { /* "bebefofuxo.com.br", true */ 'b', 'e', 'b', 'e', 'f', 'o', 'f', 'u', 'x', 'o', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', /* "becoast.fr", true */ 'b', 'e', 'c', 'o', 'a', 's', 't', '.', 'f', 'r', '\0', /* "bedabox.com", true */ 'b', 'e', 'd', 'a', 'b', 'o', 'x', '.', 'c', 'o', 'm', '\0', /* "beehive42.com", true */ 'b', 'e', 'e', 'h', 'i', 'v', 'e', '4', '2', '.', 'c', 'o', 'm', '\0', /* "beehive42.eu", true */ 'b', 'e', 'e', 'h', 'i', 'v', 'e', '4', '2', '.', 'e', 'u', '\0', /* "beehive42.net", true */ 'b', 'e', 'e', 'h', 'i', 'v', 'e', '4', '2', '.', 'n', 'e', 't', '\0', /* "beehive42.nl", true */ 'b', 'e', 'e', 'h', 'i', 'v', 'e', '4', '2', '.', 'n', 'l', '\0', /* "beehive42.org", true */ 'b', 'e', 'e', 'h', 'i', 'v', 'e', '4', '2', '.', 'o', 'r', 'g', '\0', + /* "beeksnetwork.nl", true */ 'b', 'e', 'e', 'k', 's', 'n', 'e', 't', 'w', 'o', 'r', 'k', '.', 'n', 'l', '\0', /* "beepan.com", true */ 'b', 'e', 'e', 'p', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "beercandle.com", true */ 'b', 'e', 'e', 'r', 'c', 'a', 'n', 'd', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "beerians.com", true */ 'b', 'e', 'e', 'r', 'i', 'a', 'n', 's', '.', 'c', 'o', 'm', '\0', /* "beerradar.no", true */ 'b', 'e', 'e', 'r', 'r', 'a', 'd', 'a', 'r', '.', 'n', 'o', '\0', /* "beerradar.party", true */ 'b', 'e', 'e', 'r', 'r', 'a', 'd', 'a', 'r', '.', 'p', 'a', 'r', 't', 'y', '\0', /* "beetman.net", true */ 'b', 'e', 'e', 't', 'm', 'a', 'n', '.', 'n', 'e', 't', '\0', /* "beeznest.com", true */ 'b', 'e', 'e', 'z', 'n', 'e', 's', 't', '.', 'c', 'o', 'm', '\0', /* "beframed.ch", true */ 'b', 'e', 'f', 'r', 'a', 'm', 'e', 'd', '.', 'c', 'h', '\0', @@ -1233,17 +1234,16 @@ static const char kSTSHostTable[] = { /* "betaworx.eu", true */ 'b', 'e', 't', 'a', 'w', 'o', 'r', 'x', '.', 'e', 'u', '\0', /* "betcafearena.ro", false */ 'b', 'e', 't', 'c', 'a', 'f', 'e', 'a', 'r', 'e', 'n', 'a', '.', 'r', 'o', '\0', /* "betlander.com", true */ 'b', 'e', 't', 'l', 'a', 'n', 'd', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "betonmoney.com", true */ 'b', 'e', 't', 'o', 'n', 'm', 'o', 'n', 'e', 'y', '.', 'c', 'o', 'm', '\0', /* "betpamm.com", true */ 'b', 'e', 't', 'p', 'a', 'm', 'm', '.', 'c', 'o', 'm', '\0', /* "betterbabyshop.com.au", true */ 'b', 'e', 't', 't', 'e', 'r', 'b', 'a', 'b', 'y', 's', 'h', 'o', 'p', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "bettercrypto.org", true */ 'b', 'e', 't', 't', 'e', 'r', 'c', 'r', 'y', 'p', 't', 'o', '.', 'o', 'r', 'g', '\0', /* "betterhelp.com", true */ 'b', 'e', 't', 't', 'e', 'r', 'h', 'e', 'l', 'p', '.', 'c', 'o', 'm', '\0', - /* "betterlifemakers.com", true */ 'b', 'e', 't', 't', 'e', 'r', 'l', 'i', 'f', 'e', 'm', 'a', 'k', 'e', 'r', 's', '.', 'c', 'o', 'm', '\0', /* "bettertest.it", true */ 'b', 'e', 't', 't', 'e', 'r', 't', 'e', 's', 't', '.', 'i', 't', '\0', /* "bettingbusiness.ru", true */ 'b', 'e', 't', 't', 'i', 'n', 'g', 'b', 'u', 's', 'i', 'n', 'e', 's', 's', '.', 'r', 'u', '\0', /* "bettrlifeapp.com", true */ 'b', 'e', 't', 't', 'r', 'l', 'i', 'f', 'e', 'a', 'p', 'p', '.', 'c', 'o', 'm', '\0', /* "betulashop.ch", true */ 'b', 'e', 't', 'u', 'l', 'a', 's', 'h', 'o', 'p', '.', 'c', 'h', '\0', /* "beulahtabernacle.com", true */ 'b', 'e', 'u', 'l', 'a', 'h', 't', 'a', 'b', 'e', 'r', 'n', 'a', 'c', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "bevinco2020.com", true */ 'b', 'e', 'v', 'i', 'n', 'c', 'o', '2', '0', '2', '0', '.', 'c', 'o', 'm', '\0', /* "bevinsco.org", true */ 'b', 'e', 'v', 'i', 'n', 's', 'c', 'o', '.', 'o', 'r', 'g', '\0', /* "bewerbungsfibel.de", true */ 'b', 'e', 'w', 'e', 'r', 'b', 'u', 'n', 'g', 's', 'f', 'i', 'b', 'e', 'l', '.', 'd', 'e', '\0', @@ -1359,30 +1359,28 @@ static const char kSTSHostTable[] = { /* "bitcoinprivacy.net", true */ 'b', 'i', 't', 'c', 'o', 'i', 'n', 'p', 'r', 'i', 'v', 'a', 'c', 'y', '.', 'n', 'e', 't', '\0', /* "bitcoinx.ro", true */ 'b', 'i', 't', 'c', 'o', 'i', 'n', 'x', '.', 'r', 'o', '\0', /* "biteoftech.com", true */ 'b', 'i', 't', 'e', 'o', 'f', 't', 'e', 'c', 'h', '.', 'c', 'o', 'm', '\0', /* "bitex.la", true */ 'b', 'i', 't', 'e', 'x', '.', 'l', 'a', '\0', /* "bitfasching.de", true */ 'b', 'i', 't', 'f', 'a', 's', 'c', 'h', 'i', 'n', 'g', '.', 'd', 'e', '\0', /* "bitfehler.net", true */ 'b', 'i', 't', 'f', 'e', 'h', 'l', 'e', 'r', '.', 'n', 'e', 't', '\0', /* "bitfinder.nl", true */ 'b', 'i', 't', 'f', 'i', 'n', 'd', 'e', 'r', '.', 'n', 'l', '\0', /* "bitfuse.net", true */ 'b', 'i', 't', 'f', 'u', 's', 'e', '.', 'n', 'e', 't', '\0', - /* "bitheus.com", true */ 'b', 'i', 't', 'h', 'e', 'u', 's', '.', 'c', 'o', 'm', '\0', /* "bitlish.com", true */ 'b', 'i', 't', 'l', 'i', 's', 'h', '.', 'c', 'o', 'm', '\0', /* "bitmessage.ch", true */ 'b', 'i', 't', 'm', 'e', 's', 's', 'a', 'g', 'e', '.', 'c', 'h', '\0', /* "bitmex.com", true */ 'b', 'i', 't', 'm', 'e', 'x', '.', 'c', 'o', 'm', '\0', /* "bitminter.com", true */ 'b', 'i', 't', 'm', 'i', 'n', 't', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "bitmoe.com", true */ 'b', 'i', 't', 'm', 'o', 'e', '.', 'c', 'o', 'm', '\0', /* "bitmon.net", true */ 'b', 'i', 't', 'm', 'o', 'n', '.', 'n', 'e', 't', '\0', /* "bitnet.io", false */ 'b', 'i', 't', 'n', 'e', 't', '.', 'i', 'o', '\0', /* "bitok.com", true */ 'b', 'i', 't', 'o', 'k', '.', 'c', 'o', 'm', '\0', /* "bitpod.de", true */ 'b', 'i', 't', 'p', 'o', 'd', '.', 'd', 'e', '\0', /* "bitrage.de", true */ 'b', 'i', 't', 'r', 'a', 'g', 'e', '.', 'd', 'e', '\0', /* "bitraum.io", true */ 'b', 'i', 't', 'r', 'a', 'u', 'm', '.', 'i', 'o', '\0', /* "bitref.com", true */ 'b', 'i', 't', 'r', 'e', 'f', '.', 'c', 'o', 'm', '\0', - /* "bitsensor.io", true */ 'b', 'i', 't', 's', 'e', 'n', 's', 'o', 'r', '.', 'i', 'o', '\0', /* "bitshaker.net", true */ 'b', 'i', 't', 's', 'h', 'a', 'k', 'e', 'r', '.', 'n', 'e', 't', '\0', /* "bitskins.co", true */ 'b', 'i', 't', 's', 'k', 'i', 'n', 's', '.', 'c', 'o', '\0', /* "bitskrieg.net", true */ 'b', 'i', 't', 's', 'k', 'r', 'i', 'e', 'g', '.', 'n', 'e', 't', '\0', /* "bittersweetcandybowl.com", true */ 'b', 'i', 't', 't', 'e', 'r', 's', 'w', 'e', 'e', 't', 'c', 'a', 'n', 'd', 'y', 'b', 'o', 'w', 'l', '.', 'c', 'o', 'm', '\0', /* "bittmann.me", true */ 'b', 'i', 't', 't', 'm', 'a', 'n', 'n', '.', 'm', 'e', '\0', /* "bittylicious.com", true */ 'b', 'i', 't', 't', 'y', 'l', 'i', 'c', 'i', 'o', 'u', 's', '.', 'c', 'o', 'm', '\0', /* "bitvest.io", true */ 'b', 'i', 't', 'v', 'e', 's', 't', '.', 'i', 'o', '\0', /* "bitwolk.nl", true */ 'b', 'i', 't', 'w', 'o', 'l', 'k', '.', 'n', 'l', '\0', @@ -1444,17 +1442,16 @@ static const char kSTSHostTable[] = { /* "blayne.me", true */ 'b', 'l', 'a', 'y', 'n', 'e', '.', 'm', 'e', '\0', /* "blazor.nl", true */ 'b', 'l', 'a', 'z', 'o', 'r', '.', 'n', 'l', '\0', /* "bleche-onlineshop.de", true */ 'b', 'l', 'e', 'c', 'h', 'e', '-', 'o', 'n', 'l', 'i', 'n', 'e', 's', 'h', 'o', 'p', '.', 'd', 'e', '\0', /* "blechschmidt.saarland", true */ 'b', 'l', 'e', 'c', 'h', 's', 'c', 'h', 'm', 'i', 'd', 't', '.', 's', 'a', 'a', 'r', 'l', 'a', 'n', 'd', '\0', /* "blendle.com", true */ 'b', 'l', 'e', 'n', 'd', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "blendle.nl", true */ 'b', 'l', 'e', 'n', 'd', 'l', 'e', '.', 'n', 'l', '\0', /* "blendlecdn.com", true */ 'b', 'l', 'e', 'n', 'd', 'l', 'e', 'c', 'd', 'n', '.', 'c', 'o', 'm', '\0', /* "blendr.com", true */ 'b', 'l', 'e', 'n', 'd', 'r', '.', 'c', 'o', 'm', '\0', - /* "blenheimchalcot.com", true */ 'b', 'l', 'e', 'n', 'h', 'e', 'i', 'm', 'c', 'h', 'a', 'l', 'c', 'o', 't', '.', 'c', 'o', 'm', '\0', /* "blessedguy.com", true */ 'b', 'l', 'e', 's', 's', 'e', 'd', 'g', 'u', 'y', '.', 'c', 'o', 'm', '\0', /* "blessedguy.net", true */ 'b', 'l', 'e', 's', 's', 'e', 'd', 'g', 'u', 'y', '.', 'n', 'e', 't', '\0', /* "blessnet.jp", true */ 'b', 'l', 'e', 's', 's', 'n', 'e', 't', '.', 'j', 'p', '\0', /* "blewebprojects.com", true */ 'b', 'l', 'e', 'w', 'e', 'b', 'p', 'r', 'o', 'j', 'e', 'c', 't', 's', '.', 'c', 'o', 'm', '\0', /* "blichmann.eu", true */ 'b', 'l', 'i', 'c', 'h', 'm', 'a', 'n', 'n', '.', 'e', 'u', '\0', /* "blieque.co.uk", true */ 'b', 'l', 'i', 'e', 'q', 'u', 'e', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "blingsparkleshine.com", true */ 'b', 'l', 'i', 'n', 'g', 's', 'p', 'a', 'r', 'k', 'l', 'e', 's', 'h', 'i', 'n', 'e', '.', 'c', 'o', 'm', '\0', /* "blinkenlight.co.uk", true */ 'b', 'l', 'i', 'n', 'k', 'e', 'n', 'l', 'i', 'g', 'h', 't', '.', 'c', 'o', '.', 'u', 'k', '\0', @@ -1469,21 +1466,21 @@ static const char kSTSHostTable[] = { /* "blocksatz-medien.de", true */ 'b', 'l', 'o', 'c', 'k', 's', 'a', 't', 'z', '-', 'm', 'e', 'd', 'i', 'e', 'n', '.', 'd', 'e', '\0', /* "bloemendal.me", true */ 'b', 'l', 'o', 'e', 'm', 'e', 'n', 'd', 'a', 'l', '.', 'm', 'e', '\0', /* "blog.gov.uk", true */ 'b', 'l', 'o', 'g', '.', 'g', 'o', 'v', '.', 'u', 'k', '\0', /* "blog.gparent.org", true */ 'b', 'l', 'o', 'g', '.', 'g', 'p', 'a', 'r', 'e', 'n', 't', '.', 'o', 'r', 'g', '\0', /* "blog.linode.com", false */ 'b', 'l', 'o', 'g', '.', 'l', 'i', 'n', 'o', 'd', 'e', '.', 'c', 'o', 'm', '\0', /* "blog.torproject.org", false */ 'b', 'l', 'o', 'g', '.', 't', 'o', 'r', 'p', 'r', 'o', 'j', 'e', 'c', 't', '.', 'o', 'r', 'g', '\0', /* "blogarts.net", true */ 'b', 'l', 'o', 'g', 'a', 'r', 't', 's', '.', 'n', 'e', 't', '\0', /* "blogcuaviet.com", true */ 'b', 'l', 'o', 'g', 'c', 'u', 'a', 'v', 'i', 'e', 't', '.', 'c', 'o', 'm', '\0', - /* "bloglikepro.com", true */ 'b', 'l', 'o', 'g', 'l', 'i', 'k', 'e', 'p', 'r', 'o', '.', 'c', 'o', 'm', '\0', /* "blognone.com", true */ 'b', 'l', 'o', 'g', 'n', 'o', 'n', 'e', '.', 'c', 'o', 'm', '\0', /* "blogreen.org", true */ 'b', 'l', 'o', 'g', 'r', 'e', 'e', 'n', '.', 'o', 'r', 'g', '\0', /* "blowjs.com", true */ 'b', 'l', 'o', 'w', 'j', 's', '.', 'c', 'o', 'm', '\0', /* "blubberladen.de", true */ 'b', 'l', 'u', 'b', 'b', 'e', 'r', 'l', 'a', 'd', 'e', 'n', '.', 'd', 'e', '\0', + /* "blue-labs.org", true */ 'b', 'l', 'u', 'e', '-', 'l', 'a', 'b', 's', '.', 'o', 'r', 'g', '\0', /* "blue-leaf81.net", true */ 'b', 'l', 'u', 'e', '-', 'l', 'e', 'a', 'f', '8', '1', '.', 'n', 'e', 't', '\0', /* "blue42.net", true */ 'b', 'l', 'u', 'e', '4', '2', '.', 'n', 'e', 't', '\0', /* "bluebill.net", true */ 'b', 'l', 'u', 'e', 'b', 'i', 'l', 'l', '.', 'n', 'e', 't', '\0', /* "bluechilli.com", true */ 'b', 'l', 'u', 'e', 'c', 'h', 'i', 'l', 'l', 'i', '.', 'c', 'o', 'm', '\0', /* "blueflare.org", true */ 'b', 'l', 'u', 'e', 'f', 'l', 'a', 'r', 'e', '.', 'o', 'r', 'g', '\0', /* "bluefuzz.nl", true */ 'b', 'l', 'u', 'e', 'f', 'u', 'z', 'z', '.', 'n', 'l', '\0', /* "blueglobalmedia.com", true */ 'b', 'l', 'u', 'e', 'g', 'l', 'o', 'b', 'a', 'l', 'm', 'e', 'd', 'i', 'a', '.', 'c', 'o', 'm', '\0', /* "blueimp.net", true */ 'b', 'l', 'u', 'e', 'i', 'm', 'p', '.', 'n', 'e', 't', '\0', @@ -1604,17 +1601,16 @@ static const char kSTSHostTable[] = { /* "brava.bg", true */ 'b', 'r', 'a', 'v', 'a', '.', 'b', 'g', '\0', /* "brave.com", true */ 'b', 'r', 'a', 'v', 'e', '.', 'c', 'o', 'm', '\0', /* "bravz.de", true */ 'b', 'r', 'a', 'v', 'z', '.', 'd', 'e', '\0', /* "brb.city", true */ 'b', 'r', 'b', '.', 'c', 'i', 't', 'y', '\0', /* "brd.ro", true */ 'b', 'r', 'd', '.', 'r', 'o', '\0', /* "breechdepot.com", false */ 'b', 'r', 'e', 'e', 'c', 'h', 'd', 'e', 'p', 'o', 't', '.', 'c', 'o', 'm', '\0', /* "breeswish.org", true */ 'b', 'r', 'e', 'e', 's', 'w', 'i', 's', 'h', '.', 'o', 'r', 'g', '\0', /* "brefy.com", true */ 'b', 'r', 'e', 'f', 'y', '.', 'c', 'o', 'm', '\0', - /* "bregnedalsystems.dk", true */ 'b', 'r', 'e', 'g', 'n', 'e', 'd', 'a', 'l', 's', 'y', 's', 't', 'e', 'm', 's', '.', 'd', 'k', '\0', /* "breitbild-beamer.de", true */ 'b', 'r', 'e', 'i', 't', 'b', 'i', 'l', 'd', '-', 'b', 'e', 'a', 'm', 'e', 'r', '.', 'd', 'e', '\0', /* "brejoc.com", true */ 'b', 'r', 'e', 'j', 'o', 'c', '.', 'c', 'o', 'm', '\0', /* "brettabel.com", true */ 'b', 'r', 'e', 't', 't', 'a', 'b', 'e', 'l', '.', 'c', 'o', 'm', '\0', /* "bretz-hufer.de", true */ 'b', 'r', 'e', 't', 'z', '-', 'h', 'u', 'f', 'e', 'r', '.', 'd', 'e', '\0', /* "brevboxar.se", true */ 'b', 'r', 'e', 'v', 'b', 'o', 'x', 'a', 'r', '.', 's', 'e', '\0', /* "brewtrackr.com", true */ 'b', 'r', 'e', 'w', 't', 'r', 'a', 'c', 'k', 'r', '.', 'c', 'o', 'm', '\0', /* "brianmwaters.net", true */ 'b', 'r', 'i', 'a', 'n', 'm', 'w', 'a', 't', 'e', 'r', 's', '.', 'n', 'e', 't', '\0', /* "brianpcurran.com", true */ 'b', 'r', 'i', 'a', 'n', 'p', 'c', 'u', 'r', 'r', 'a', 'n', '.', 'c', 'o', 'm', '\0', @@ -1651,17 +1647,16 @@ static const char kSTSHostTable[] = { /* "bru6.de", true */ 'b', 'r', 'u', '6', '.', 'd', 'e', '\0', /* "brunn.email", true */ 'b', 'r', 'u', 'n', 'n', '.', 'e', 'm', 'a', 'i', 'l', '\0', /* "brunoonline.co.uk", true */ 'b', 'r', 'u', 'n', 'o', 'o', 'n', 'l', 'i', 'n', 'e', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "brunoramos.com", true */ 'b', 'r', 'u', 'n', 'o', 'r', 'a', 'm', 'o', 's', '.', 'c', 'o', 'm', '\0', /* "brunoramos.org", true */ 'b', 'r', 'u', 'n', 'o', 'r', 'a', 'm', 'o', 's', '.', 'o', 'r', 'g', '\0', /* "brunosouza.org", true */ 'b', 'r', 'u', 'n', 'o', 's', 'o', 'u', 'z', 'a', '.', 'o', 'r', 'g', '\0', /* "bryanquigley.com", true */ 'b', 'r', 'y', 'a', 'n', 'q', 'u', 'i', 'g', 'l', 'e', 'y', '.', 'c', 'o', 'm', '\0', /* "bryn.xyz", true */ 'b', 'r', 'y', 'n', '.', 'x', 'y', 'z', '\0', - /* "bsagan.fr", true */ 'b', 's', 'a', 'g', 'a', 'n', '.', 'f', 'r', '\0', /* "bsalyzer.com", true */ 'b', 's', 'a', 'l', 'y', 'z', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "bsdug.org", true */ 'b', 's', 'd', 'u', 'g', '.', 'o', 'r', 'g', '\0', /* "bsidessf.com", true */ 'b', 's', 'i', 'd', 'e', 's', 's', 'f', '.', 'c', 'o', 'm', '\0', /* "bsklabels.com", false */ 'b', 's', 'k', 'l', 'a', 'b', 'e', 'l', 's', '.', 'c', 'o', 'm', '\0', /* "bsquared.org", true */ 'b', 's', 'q', 'u', 'a', 'r', 'e', 'd', '.', 'o', 'r', 'g', '\0', /* "bsw-solution.de", true */ 'b', 's', 'w', '-', 's', 'o', 'l', 'u', 't', 'i', 'o', 'n', '.', 'd', 'e', '\0', /* "bta.lv", false */ 'b', 't', 'a', '.', 'l', 'v', '\0', /* "btc-e.com", true */ 'b', 't', 'c', '-', 'e', '.', 'c', 'o', 'm', '\0', @@ -1731,17 +1726,16 @@ static const char kSTSHostTable[] = { /* "businessimmigration-eu.ru", true */ 'b', 'u', 's', 'i', 'n', 'e', 's', 's', 'i', 'm', 'm', 'i', 'g', 'r', 'a', 't', 'i', 'o', 'n', '-', 'e', 'u', '.', 'r', 'u', '\0', /* "businessloanconnection.org", true */ 'b', 'u', 's', 'i', 'n', 'e', 's', 's', 'l', 'o', 'a', 'n', 'c', 'o', 'n', 'n', 'e', 'c', 't', 'i', 'o', 'n', '.', 'o', 'r', 'g', '\0', /* "businessloanstoday.com", true */ 'b', 'u', 's', 'i', 'n', 'e', 's', 's', 'l', 'o', 'a', 'n', 's', 't', 'o', 'd', 'a', 'y', '.', 'c', 'o', 'm', '\0', /* "bustimes.org.uk", true */ 'b', 'u', 's', 't', 'i', 'm', 'e', 's', '.', 'o', 'r', 'g', '.', 'u', 'k', '\0', /* "buyinginvestmentproperty.com", true */ 'b', 'u', 'y', 'i', 'n', 'g', 'i', 'n', 'v', 'e', 's', 't', 'm', 'e', 'n', 't', 'p', 'r', 'o', 'p', 'e', 'r', 't', 'y', '.', 'c', 'o', 'm', '\0', /* "buzzconf.io", true */ 'b', 'u', 'z', 'z', 'c', 'o', 'n', 'f', '.', 'i', 'o', '\0', /* "bvionline.eu", true */ 'b', 'v', 'i', 'o', 'n', 'l', 'i', 'n', 'e', '.', 'e', 'u', '\0', /* "bw.codes", true */ 'b', 'w', '.', 'c', 'o', 'd', 'e', 's', '\0', - /* "bw81.xyz", true */ 'b', 'w', '8', '1', '.', 'x', 'y', 'z', '\0', /* "bwcscorecard.org", true */ 'b', 'w', 'c', 's', 'c', 'o', 'r', 'e', 'c', 'a', 'r', 'd', '.', 'o', 'r', 'g', '\0', /* "bwear4all.de", true */ 'b', 'w', 'e', 'a', 'r', '4', 'a', 'l', 'l', '.', 'd', 'e', '\0', /* "bwh1.net", true */ 'b', 'w', 'h', '1', '.', 'n', 'e', 't', '\0', /* "bwilkinson.co.uk", true */ 'b', 'w', 'i', 'l', 'k', 'i', 'n', 's', 'o', 'n', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "bws16.de", true */ 'b', 'w', 's', '1', '6', '.', 'd', 'e', '\0', /* "bx-n.de", true */ 'b', 'x', '-', 'n', '.', 'd', 'e', '\0', /* "by4cqb.cn", true */ 'b', 'y', '4', 'c', 'q', 'b', '.', 'c', 'n', '\0', /* "bygningsregistrering.dk", true */ 'b', 'y', 'g', 'n', 'i', 'n', 'g', 's', 'r', 'e', 'g', 'i', 's', 't', 'r', 'e', 'r', 'i', 'n', 'g', '.', 'd', 'k', '\0', @@ -1767,16 +1761,17 @@ static const char kSTSHostTable[] = { /* "byrtz.de", true */ 'b', 'y', 'r', 't', 'z', '.', 'd', 'e', '\0', /* "byte-time.com", true */ 'b', 'y', 't', 'e', '-', 't', 'i', 'm', 'e', '.', 'c', 'o', 'm', '\0', /* "byte.wtf", true */ 'b', 'y', 't', 'e', '.', 'w', 't', 'f', '\0', /* "bytejail.com", true */ 'b', 'y', 't', 'e', 'j', 'a', 'i', 'l', '.', 'c', 'o', 'm', '\0', /* "bytema.cz", true */ 'b', 'y', 't', 'e', 'm', 'a', '.', 'c', 'z', '\0', /* "byteshark.org", true */ 'b', 'y', 't', 'e', 's', 'h', 'a', 'r', 'k', '.', 'o', 'r', 'g', '\0', /* "bytesofcode.de", true */ 'b', 'y', 't', 'e', 's', 'o', 'f', 'c', 'o', 'd', 'e', '.', 'd', 'e', '\0', /* "bytesund.biz", true */ 'b', 'y', 't', 'e', 's', 'u', 'n', 'd', '.', 'b', 'i', 'z', '\0', + /* "bytesunlimited.com", true */ 'b', 'y', 't', 'e', 's', 'u', 'n', 'l', 'i', 'm', 'i', 't', 'e', 'd', '.', 'c', 'o', 'm', '\0', /* "bytesystems.com", true */ 'b', 'y', 't', 'e', 's', 'y', 's', 't', 'e', 'm', 's', '.', 'c', 'o', 'm', '\0', /* "byteturtle.eu", true */ 'b', 'y', 't', 'e', 't', 'u', 'r', 't', 'l', 'e', '.', 'e', 'u', '\0', /* "bziaks.xyz", true */ 'b', 'z', 'i', 'a', 'k', 's', '.', 'x', 'y', 'z', '\0', /* "bztech.com.br", true */ 'b', 'z', 't', 'e', 'c', 'h', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', /* "bzv-fr.eu", true */ 'b', 'z', 'v', '-', 'f', 'r', '.', 'e', 'u', '\0', /* "c-shock.org", true */ 'c', '-', 's', 'h', 'o', 'c', 'k', '.', 'o', 'r', 'g', '\0', /* "c-webdesign.net", true */ 'c', '-', 'w', 'e', 'b', 'd', 'e', 's', 'i', 'g', 'n', '.', 'n', 'e', 't', '\0', /* "c-world.co.uk", true */ 'c', '-', 'w', 'o', 'r', 'l', 'd', '.', 'c', 'o', '.', 'u', 'k', '\0', @@ -1788,17 +1783,16 @@ static const char kSTSHostTable[] = { /* "ca.search.yahoo.com", false */ 'c', 'a', '.', 's', 'e', 'a', 'r', 'c', 'h', '.', 'y', 'a', 'h', 'o', 'o', '.', 'c', 'o', 'm', '\0', /* "caasd.org", true */ 'c', 'a', 'a', 's', 'd', '.', 'o', 'r', 'g', '\0', /* "cablemod.com", true */ 'c', 'a', 'b', 'l', 'e', 'm', 'o', 'd', '.', 'c', 'o', 'm', '\0', /* "cablesandkits.com", true */ 'c', 'a', 'b', 'l', 'e', 's', 'a', 'n', 'd', 'k', 'i', 't', 's', '.', 'c', 'o', 'm', '\0', /* "cabsites.com", true */ 'c', 'a', 'b', 's', 'i', 't', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "cacaolalina.com", true */ 'c', 'a', 'c', 'a', 'o', 'l', 'a', 'l', 'i', 'n', 'a', '.', 'c', 'o', 'm', '\0', /* "cachethq.io", true */ 'c', 'a', 'c', 'h', 'e', 't', 'h', 'q', '.', 'i', 'o', '\0', /* "cackette.com", true */ 'c', 'a', 'c', 'k', 'e', 't', 't', 'e', '.', 'c', 'o', 'm', '\0', - /* "caconnect.org", true */ 'c', 'a', 'c', 'o', 'n', 'n', 'e', 'c', 't', '.', 'o', 'r', 'g', '\0', /* "cadmail.nl", true */ 'c', 'a', 'd', 'm', 'a', 'i', 'l', '.', 'n', 'l', '\0', /* "cadoth.net", true */ 'c', 'a', 'd', 'o', 't', 'h', '.', 'n', 'e', 't', '\0', /* "caesarkabalan.com", true */ 'c', 'a', 'e', 's', 'a', 'r', 'k', 'a', 'b', 'a', 'l', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "caesreon.com", true */ 'c', 'a', 'e', 's', 'r', 'e', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "cafe-murr.de", true */ 'c', 'a', 'f', 'e', '-', 'm', 'u', 'r', 'r', '.', 'd', 'e', '\0', /* "caffeinatedcode.com", true */ 'c', 'a', 'f', 'f', 'e', 'i', 'n', 'a', 't', 'e', 'd', 'c', 'o', 'd', 'e', '.', 'c', 'o', 'm', '\0', /* "cainhosting.com", true */ 'c', 'a', 'i', 'n', 'h', 'o', 's', 't', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "cais.de", true */ 'c', 'a', 'i', 's', '.', 'd', 'e', '\0', @@ -1937,33 +1931,31 @@ static const char kSTSHostTable[] = { /* "cattivo.nl", true */ 'c', 'a', 't', 't', 'i', 'v', 'o', '.', 'n', 'l', '\0', /* "cavac.at", true */ 'c', 'a', 'v', 'a', 'c', '.', 'a', 't', '\0', /* "cazes.info", true */ 'c', 'a', 'z', 'e', 's', '.', 'i', 'n', 'f', 'o', '\0', /* "cbamo.org", true */ 'c', 'b', 'a', 'm', 'o', '.', 'o', 'r', 'g', '\0', /* "cbbank.com", true */ 'c', 'b', 'b', 'a', 'n', 'k', '.', 'c', 'o', 'm', '\0', /* "cbecrft.net", true */ 'c', 'b', 'e', 'c', 'r', 'f', 't', '.', 'n', 'e', 't', '\0', /* "cbtistexcalac.mx", true */ 'c', 'b', 't', 'i', 's', 't', 'e', 'x', 'c', 'a', 'l', 'a', 'c', '.', 'm', 'x', '\0', /* "ccayearbook.com", true */ 'c', 'c', 'a', 'y', 'e', 'a', 'r', 'b', 'o', 'o', 'k', '.', 'c', 'o', 'm', '\0', - /* "ccblog.de", true */ 'c', 'c', 'b', 'l', 'o', 'g', '.', 'd', 'e', '\0', /* "ccgn.co", true */ 'c', 'c', 'g', 'n', '.', 'c', 'o', '\0', /* "ccja.ro", false */ 'c', 'c', 'j', 'a', '.', 'r', 'o', '\0', /* "cdkeyworld.de", true */ 'c', 'd', 'k', 'e', 'y', 'w', 'o', 'r', 'l', 'd', '.', 'd', 'e', '\0', /* "cdlcenter.com", true */ 'c', 'd', 'l', 'c', 'e', 'n', 't', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "cdnjs.com", true */ 'c', 'd', 'n', 'j', 's', '.', 'c', 'o', 'm', '\0', /* "cdt.org", true */ 'c', 'd', 't', '.', 'o', 'r', 'g', '\0', /* "cecipu.gob.cl", true */ 'c', 'e', 'c', 'i', 'p', 'u', '.', 'g', 'o', 'b', '.', 'c', 'l', '\0', /* "ced-services.nl", true */ 'c', 'e', 'd', '-', 's', 'e', 'r', 'v', 'i', 'c', 'e', 's', '.', 'n', 'l', '\0', /* "ceilingpac.org", true */ 'c', 'e', 'i', 'l', 'i', 'n', 'g', 'p', 'a', 'c', '.', 'o', 'r', 'g', '\0', /* "celec.gob.ec", false */ 'c', 'e', 'l', 'e', 'c', '.', 'g', 'o', 'b', '.', 'e', 'c', '\0', /* "cellsites.nz", true */ 'c', 'e', 'l', 'l', 's', 'i', 't', 'e', 's', '.', 'n', 'z', '\0', /* "celltek-server.de", true */ 'c', 'e', 'l', 'l', 't', 'e', 'k', '-', 's', 'e', 'r', 'v', 'e', 'r', '.', 'd', 'e', '\0', /* "celti.ie.eu.org", true */ 'c', 'e', 'l', 't', 'i', '.', 'i', 'e', '.', 'e', 'u', '.', 'o', 'r', 'g', '\0', /* "celti.name", true */ 'c', 'e', 'l', 't', 'i', '.', 'n', 'a', 'm', 'e', '\0', /* "cementscience.com", true */ 'c', 'e', 'm', 'e', 'n', 't', 's', 'c', 'i', 'e', 'n', 'c', 'e', '.', 'c', 'o', 'm', '\0', - /* "ceml.ch", true */ 'c', 'e', 'm', 'l', '.', 'c', 'h', '\0', /* "centennialrewards.com", true */ 'c', 'e', 'n', 't', 'e', 'n', 'n', 'i', 'a', 'l', 'r', 'e', 'w', 'a', 'r', 'd', 's', '.', 'c', 'o', 'm', '\0', /* "centerpereezd.ru", false */ 'c', 'e', 'n', 't', 'e', 'r', 'p', 'e', 'r', 'e', 'e', 'z', 'd', '.', 'r', 'u', '\0', /* "centillien.com", true */ 'c', 'e', 'n', 't', 'i', 'l', 'l', 'i', 'e', 'n', '.', 'c', 'o', 'm', '\0', /* "centralpoint.be", true */ 'c', 'e', 'n', 't', 'r', 'a', 'l', 'p', 'o', 'i', 'n', 't', '.', 'b', 'e', '\0', /* "centralpoint.nl", true */ 'c', 'e', 'n', 't', 'r', 'a', 'l', 'p', 'o', 'i', 'n', 't', '.', 'n', 'l', '\0', /* "centralstatecu.org", true */ 'c', 'e', 'n', 't', 'r', 'a', 'l', 's', 't', 'a', 't', 'e', 'c', 'u', '.', 'o', 'r', 'g', '\0', /* "centralvoice.org", true */ 'c', 'e', 'n', 't', 'r', 'a', 'l', 'v', 'o', 'i', 'c', 'e', '.', 'o', 'r', 'g', '\0', /* "centralync.com", true */ 'c', 'e', 'n', 't', 'r', 'a', 'l', 'y', 'n', 'c', '.', 'c', 'o', 'm', '\0', @@ -1971,17 +1963,16 @@ static const char kSTSHostTable[] = { /* "centrobill.com", true */ 'c', 'e', 'n', 't', 'r', 'o', 'b', 'i', 'l', 'l', '.', 'c', 'o', 'm', '\0', /* "centrojovencuenca.es", true */ 'c', 'e', 'n', 't', 'r', 'o', 'j', 'o', 'v', 'e', 'n', 'c', 'u', 'e', 'n', 'c', 'a', '.', 'e', 's', '\0', /* "centrumhodinek.cz", true */ 'c', 'e', 'n', 't', 'r', 'u', 'm', 'h', 'o', 'd', 'i', 'n', 'e', 'k', '.', 'c', 'z', '\0', /* "ceoimon.com", true */ 'c', 'e', 'o', 'i', 'm', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "ceopedia.org", true */ 'c', 'e', 'o', 'p', 'e', 'd', 'i', 'a', '.', 'o', 'r', 'g', '\0', /* "cerastar.com", true */ 'c', 'e', 'r', 'a', 's', 't', 'a', 'r', '.', 'c', 'o', 'm', '\0', /* "cerebelo.info", true */ 'c', 'e', 'r', 'e', 'b', 'e', 'l', 'o', '.', 'i', 'n', 'f', 'o', '\0', /* "ceritamalam.net", false */ 'c', 'e', 'r', 'i', 't', 'a', 'm', 'a', 'l', 'a', 'm', '.', 'n', 'e', 't', '\0', - /* "cerize.love", true */ 'c', 'e', 'r', 'i', 'z', 'e', '.', 'l', 'o', 'v', 'e', '\0', /* "certcenter.com", true */ 'c', 'e', 'r', 't', 'c', 'e', 'n', 't', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "certcenter.de", true */ 'c', 'e', 'r', 't', 'c', 'e', 'n', 't', 'e', 'r', '.', 'd', 'e', '\0', /* "certible.com", true */ 'c', 'e', 'r', 't', 'i', 'b', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "certifi.io", true */ 'c', 'e', 'r', 't', 'i', 'f', 'i', '.', 'i', 'o', '\0', /* "certly.io", true */ 'c', 'e', 'r', 't', 'l', 'y', '.', 'i', 'o', '\0', /* "certmgr.org", true */ 'c', 'e', 'r', 't', 'm', 'g', 'r', '.', 'o', 'r', 'g', '\0', /* "certnazionale.it", true */ 'c', 'e', 'r', 't', 'n', 'a', 'z', 'i', 'o', 'n', 'a', 'l', 'e', '.', 'i', 't', '\0', /* "certspotter.com", true */ 'c', 'e', 'r', 't', 's', 'p', 'o', 't', 't', 'e', 'r', '.', 'c', 'o', 'm', '\0', @@ -2149,16 +2140,17 @@ static const char kSTSHostTable[] = { /* "cipherli.st", true */ 'c', 'i', 'p', 'h', 'e', 'r', 'l', 'i', '.', 's', 't', '\0', /* "ciphrex.com", true */ 'c', 'i', 'p', 'h', 'r', 'e', 'x', '.', 'c', 'o', 'm', '\0', /* "circara.com", true */ 'c', 'i', 'r', 'c', 'a', 'r', 'a', '.', 'c', 'o', 'm', '\0', /* "cirfi.com", true */ 'c', 'i', 'r', 'f', 'i', '.', 'c', 'o', 'm', '\0', /* "cirope.com", true */ 'c', 'i', 'r', 'o', 'p', 'e', '.', 'c', 'o', 'm', '\0', /* "cirrus0.de", true */ 'c', 'i', 'r', 'r', 'u', 's', '0', '.', 'd', 'e', '\0', /* "ciscodude.net", true */ 'c', 'i', 's', 'c', 'o', 'd', 'u', 'd', 'e', '.', 'n', 'e', 't', '\0', /* "ciscohomeanalytics.com", true */ 'c', 'i', 's', 'c', 'o', 'h', 'o', 'm', 'e', 'a', 'n', 'a', 'l', 'y', 't', 'i', 'c', 's', '.', 'c', 'o', 'm', '\0', + /* "ciscommerce.net", true */ 'c', 'i', 's', 'c', 'o', 'm', 'm', 'e', 'r', 'c', 'e', '.', 'n', 'e', 't', '\0', /* "cisy.me", true */ 'c', 'i', 's', 'y', '.', 'm', 'e', '\0', /* "citizen-cam.de", true */ 'c', 'i', 't', 'i', 'z', 'e', 'n', '-', 'c', 'a', 'm', '.', 'd', 'e', '\0', /* "citizensbankal.com", true */ 'c', 'i', 't', 'i', 'z', 'e', 'n', 's', 'b', 'a', 'n', 'k', 'a', 'l', '.', 'c', 'o', 'm', '\0', /* "cittadesign.com", true */ 'c', 'i', 't', 't', 'a', 'd', 'e', 's', 'i', 'g', 'n', '.', 'c', 'o', 'm', '\0', /* "citya.com", true */ 'c', 'i', 't', 'y', 'a', '.', 'c', 'o', 'm', '\0', /* "citybusexpress.com", true */ 'c', 'i', 't', 'y', 'b', 'u', 's', 'e', 'x', 'p', 'r', 'e', 's', 's', '.', 'c', 'o', 'm', '\0', /* "ciubotaru.tk", true */ 'c', 'i', 'u', 'b', 'o', 't', 'a', 'r', 'u', '.', 't', 'k', '\0', /* "cium.ru", true */ 'c', 'i', 'u', 'm', '.', 'r', 'u', '\0', @@ -2195,16 +2187,17 @@ static const char kSTSHostTable[] = { /* "clearviewwealthprojector.com.au", true */ 'c', 'l', 'e', 'a', 'r', 'v', 'i', 'e', 'w', 'w', 'e', 'a', 'l', 't', 'h', 'p', 'r', 'o', 'j', 'e', 'c', 't', 'o', 'r', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "clemovementlaw.com", true */ 'c', 'l', 'e', 'm', 'o', 'v', 'e', 'm', 'e', 'n', 't', 'l', 'a', 'w', '.', 'c', 'o', 'm', '\0', /* "clevertarget.ru", true */ 'c', 'l', 'e', 'v', 'e', 'r', 't', 'a', 'r', 'g', 'e', 't', '.', 'r', 'u', '\0', /* "clevisto.com", true */ 'c', 'l', 'e', 'v', 'i', 's', 't', 'o', '.', 'c', 'o', 'm', '\0', /* "clickandshoot.nl", true */ 'c', 'l', 'i', 'c', 'k', 'a', 'n', 'd', 's', 'h', 'o', 'o', 't', '.', 'n', 'l', '\0', /* "clickclickphish.com", true */ 'c', 'l', 'i', 'c', 'k', 'c', 'l', 'i', 'c', 'k', 'p', 'h', 'i', 's', 'h', '.', 'c', 'o', 'm', '\0', /* "clickenergy.com.au", true */ 'c', 'l', 'i', 'c', 'k', 'e', 'n', 'e', 'r', 'g', 'y', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "clickforclever.com", true */ 'c', 'l', 'i', 'c', 'k', 'f', 'o', 'r', 'c', 'l', 'e', 'v', 'e', 'r', '.', 'c', 'o', 'm', '\0', + /* "clickphish.com", true */ 'c', 'l', 'i', 'c', 'k', 'p', 'h', 'i', 's', 'h', '.', 'c', 'o', 'm', '\0', /* "clicks.co.za", true */ 'c', 'l', 'i', 'c', 'k', 's', '.', 'c', 'o', '.', 'z', 'a', '\0', /* "clientboss.com", true */ 'c', 'l', 'i', 'e', 'n', 't', 'b', 'o', 's', 's', '.', 'c', 'o', 'm', '\0', /* "clientsecure.me", true */ 'c', 'l', 'i', 'e', 'n', 't', 's', 'e', 'c', 'u', 'r', 'e', '.', 'm', 'e', '\0', /* "clifflu.net", true */ 'c', 'l', 'i', 'f', 'f', 'l', 'u', '.', 'n', 'e', 't', '\0', /* "climaprecio.es", true */ 'c', 'l', 'i', 'm', 'a', 'p', 'r', 'e', 'c', 'i', 'o', '.', 'e', 's', '\0', /* "climateinteractive.org", true */ 'c', 'l', 'i', 'm', 'a', 't', 'e', 'i', 'n', 't', 'e', 'r', 'a', 'c', 't', 'i', 'v', 'e', '.', 'o', 'r', 'g', '\0', /* "climatestew.com", true */ 'c', 'l', 'i', 'm', 'a', 't', 'e', 's', 't', 'e', 'w', '.', 'c', 'o', 'm', '\0', /* "cliniko.com", true */ 'c', 'l', 'i', 'n', 'i', 'k', 'o', '.', 'c', 'o', 'm', '\0', @@ -2250,23 +2243,18 @@ static const char kSTSHostTable[] = { /* "clubmini.jp", true */ 'c', 'l', 'u', 'b', 'm', 'i', 'n', 'i', '.', 'j', 'p', '\0', /* "clubmix.co.kr", true */ 'c', 'l', 'u', 'b', 'm', 'i', 'x', '.', 'c', 'o', '.', 'k', 'r', '\0', /* "clubon.space", true */ 'c', 'l', 'u', 'b', 'o', 'n', '.', 's', 'p', 'a', 'c', 'e', '\0', /* "clustermaze.net", true */ 'c', 'l', 'u', 's', 't', 'e', 'r', 'm', 'a', 'z', 'e', '.', 'n', 'e', 't', '\0', /* "clvrwebdesign.com", true */ 'c', 'l', 'v', 'r', 'w', 'e', 'b', 'd', 'e', 's', 'i', 'g', 'n', '.', 'c', 'o', 'm', '\0', /* "clvs7.com", true */ 'c', 'l', 'v', 's', '7', '.', 'c', 'o', 'm', '\0', /* "clycat.ru", true */ 'c', 'l', 'y', 'c', 'a', 't', '.', 'r', 'u', '\0', /* "clywedogmaths.co.uk", true */ 'c', 'l', 'y', 'w', 'e', 'd', 'o', 'g', 'm', 'a', 't', 'h', 's', '.', 'c', 'o', '.', 'u', 'k', '\0', - /* "cmacacias.ch", true */ 'c', 'm', 'a', 'c', 'a', 'c', 'i', 'a', 's', '.', 'c', 'h', '\0', /* "cmahy.be", true */ 'c', 'm', 'a', 'h', 'y', '.', 'b', 'e', '\0', /* "cmdline.org", true */ 'c', 'm', 'd', 'l', 'i', 'n', 'e', '.', 'o', 'r', 'g', '\0', - /* "cmlachapelle.ch", true */ 'c', 'm', 'l', 'a', 'c', 'h', 'a', 'p', 'e', 'l', 'l', 'e', '.', 'c', 'h', '\0', - /* "cmlancy.ch", true */ 'c', 'm', 'l', 'a', 'n', 'c', 'y', '.', 'c', 'h', '\0', - /* "cmlignon.ch", true */ 'c', 'm', 'l', 'i', 'g', 'n', 'o', 'n', '.', 'c', 'h', '\0', - /* "cmplainpalais.ch", true */ 'c', 'm', 'p', 'l', 'a', 'i', 'n', 'p', 'a', 'l', 'a', 'i', 's', '.', 'c', 'h', '\0', /* "cmylife.nl", true */ 'c', 'm', 'y', 'l', 'i', 'f', 'e', '.', 'n', 'l', '\0', /* "cnam.net", true */ 'c', 'n', 'a', 'm', '.', 'n', 'e', 't', '\0', /* "cnc-lehrgang.de", true */ 'c', 'n', 'c', '-', 'l', 'e', 'h', 'r', 'g', 'a', 'n', 'g', '.', 'd', 'e', '\0', /* "cni-certing.it", true */ 'c', 'n', 'i', '-', 'c', 'e', 'r', 't', 'i', 'n', 'g', '.', 'i', 't', '\0', /* "cnlic.com", true */ 'c', 'n', 'l', 'i', 'c', '.', 'c', 'o', 'm', '\0', /* "co.search.yahoo.com", false */ 'c', 'o', '.', 's', 'e', 'a', 'r', 'c', 'h', '.', 'y', 'a', 'h', 'o', 'o', '.', 'c', 'o', 'm', '\0', /* "coachingconsultancy.com", true */ 'c', 'o', 'a', 'c', 'h', 'i', 'n', 'g', 'c', 'o', 'n', 's', 'u', 'l', 't', 'a', 'n', 'c', 'y', '.', 'c', 'o', 'm', '\0', /* "coalpointcottage.com", true */ 'c', 'o', 'a', 'l', 'p', 'o', 'i', 'n', 't', 'c', 'o', 't', 't', 'a', 'g', 'e', '.', 'c', 'o', 'm', '\0', @@ -2297,35 +2285,34 @@ static const char kSTSHostTable[] = { /* "codepult.com", true */ 'c', 'o', 'd', 'e', 'p', 'u', 'l', 't', '.', 'c', 'o', 'm', '\0', /* "codereview.appspot.com", false */ 'c', 'o', 'd', 'e', 'r', 'e', 'v', 'i', 'e', 'w', '.', 'a', 'p', 'p', 's', 'p', 'o', 't', '.', 'c', 'o', 'm', '\0', /* "codereview.chromium.org", false */ 'c', 'o', 'd', 'e', 'r', 'e', 'v', 'i', 'e', 'w', '.', 'c', 'h', 'r', 'o', 'm', 'i', 'u', 'm', '.', 'o', 'r', 'g', '\0', /* "coderhangout.com", true */ 'c', 'o', 'd', 'e', 'r', 'h', 'a', 'n', 'g', 'o', 'u', 't', '.', 'c', 'o', 'm', '\0', /* "codesport.io", true */ 'c', 'o', 'd', 'e', 's', 'p', 'o', 'r', 't', '.', 'i', 'o', '\0', /* "codeux.com", true */ 'c', 'o', 'd', 'e', 'u', 'x', '.', 'c', 'o', 'm', '\0', /* "codewild.de", true */ 'c', 'o', 'd', 'e', 'w', 'i', 'l', 'd', '.', 'd', 'e', '\0', /* "codeyellow.nl", true */ 'c', 'o', 'd', 'e', 'y', 'e', 'l', 'l', 'o', 'w', '.', 'n', 'l', '\0', + /* "coding.net", true */ 'c', 'o', 'd', 'i', 'n', 'g', '.', 'n', 'e', 't', '\0', /* "codingforspeed.com", true */ 'c', 'o', 'd', 'i', 'n', 'g', 'f', 'o', 'r', 's', 'p', 'e', 'e', 'd', '.', 'c', 'o', 'm', '\0', /* "codingrobots.com", true */ 'c', 'o', 'd', 'i', 'n', 'g', 'r', 'o', 'b', 'o', 't', 's', '.', 'c', 'o', 'm', '\0', - /* "codiva.io", true */ 'c', 'o', 'd', 'i', 'v', 'a', '.', 'i', 'o', '\0', /* "codyevanscomputer.com", true */ 'c', 'o', 'd', 'y', 'e', 'v', 'a', 'n', 's', 'c', 'o', 'm', 'p', 'u', 't', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "codymoniz.com", true */ 'c', 'o', 'd', 'y', 'm', 'o', 'n', 'i', 'z', '.', 'c', 'o', 'm', '\0', /* "coffee-mamenoki.jp", true */ 'c', 'o', 'f', 'f', 'e', 'e', '-', 'm', 'a', 'm', 'e', 'n', 'o', 'k', 'i', '.', 'j', 'p', '\0', /* "cogent.cc", true */ 'c', 'o', 'g', 'e', 'n', 't', '.', 'c', 'c', '\0', /* "cogitoltd.com", true */ 'c', 'o', 'g', 'i', 't', 'o', 'l', 't', 'd', '.', 'c', 'o', 'm', '\0', /* "cogumelosmagicos.org", true */ 'c', 'o', 'g', 'u', 'm', 'e', 'l', 'o', 's', 'm', 'a', 'g', 'i', 'c', 'o', 's', '.', 'o', 'r', 'g', '\0', /* "coi-verify.com", true */ 'c', 'o', 'i', '-', 'v', 'e', 'r', 'i', 'f', 'y', '.', 'c', 'o', 'm', '\0', /* "coimmvest.com", true */ 'c', 'o', 'i', 'm', 'm', 'v', 'e', 's', 't', '.', 'c', 'o', 'm', '\0', /* "coin.dance", true */ 'c', 'o', 'i', 'n', '.', 'd', 'a', 'n', 'c', 'e', '\0', /* "coinapult.com", true */ 'c', 'o', 'i', 'n', 'a', 'p', 'u', 'l', 't', '.', 'c', 'o', 'm', '\0', /* "coinbase.com", true */ 'c', 'o', 'i', 'n', 'b', 'a', 's', 'e', '.', 'c', 'o', 'm', '\0', /* "coinessa.com", true */ 'c', 'o', 'i', 'n', 'e', 's', 's', 'a', '.', 'c', 'o', 'm', '\0', /* "coinjar-sandbox.com", true */ 'c', 'o', 'i', 'n', 'j', 'a', 'r', '-', 's', 'a', 'n', 'd', 'b', 'o', 'x', '.', 'c', 'o', 'm', '\0', /* "cojo.eu", true */ 'c', 'o', 'j', 'o', '.', 'e', 'u', '\0', /* "coldawn.com", true */ 'c', 'o', 'l', 'd', 'a', 'w', 'n', '.', 'c', 'o', 'm', '\0', - /* "coldfff.com", false */ 'c', 'o', 'l', 'd', 'f', 'f', 'f', '.', 'c', 'o', 'm', '\0', /* "coldhak.ca", true */ 'c', 'o', 'l', 'd', 'h', 'a', 'k', '.', 'c', 'a', '\0', /* "coldlostsick.net", true */ 'c', 'o', 'l', 'd', 'l', 'o', 's', 't', 's', 'i', 'c', 'k', '.', 'n', 'e', 't', '\0', /* "coldwatericecream.com", true */ 'c', 'o', 'l', 'd', 'w', 'a', 't', 'e', 'r', 'i', 'c', 'e', 'c', 'r', 'e', 'a', 'm', '.', 'c', 'o', 'm', '\0', /* "colemak.com", true */ 'c', 'o', 'l', 'e', 'm', 'a', 'k', '.', 'c', 'o', 'm', '\0', /* "colinchartier.com", true */ 'c', 'o', 'l', 'i', 'n', 'c', 'h', 'a', 'r', 't', 'i', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "colinstark.ca", true */ 'c', 'o', 'l', 'i', 'n', 's', 't', 'a', 'r', 'k', '.', 'c', 'a', '\0', /* "colinwolff.com", true */ 'c', 'o', 'l', 'i', 'n', 'w', 'o', 'l', 'f', 'f', '.', 'c', 'o', 'm', '\0', /* "collabornation.net", true */ 'c', 'o', 'l', 'l', 'a', 'b', 'o', 'r', 'n', 'a', 't', 'i', 'o', 'n', '.', 'n', 'e', 't', '\0', @@ -2525,19 +2512,19 @@ static const char kSTSHostTable[] = { /* "crimson.no", true */ 'c', 'r', 'i', 'm', 's', 'o', 'n', '.', 'n', 'o', '\0', /* "cristiandeluxe.com", true */ 'c', 'r', 'i', 's', 't', 'i', 'a', 'n', 'd', 'e', 'l', 'u', 'x', 'e', '.', 'c', 'o', 'm', '\0', /* "critcola.com", true */ 'c', 'r', 'i', 't', 'c', 'o', 'l', 'a', '.', 'c', 'o', 'm', '\0', /* "critical.today", true */ 'c', 'r', 'i', 't', 'i', 'c', 'a', 'l', '.', 't', 'o', 'd', 'a', 'y', '\0', /* "criticalaim.com", true */ 'c', 'r', 'i', 't', 'i', 'c', 'a', 'l', 'a', 'i', 'm', '.', 'c', 'o', 'm', '\0', /* "criticalsurveys.co.uk", true */ 'c', 'r', 'i', 't', 'i', 'c', 'a', 'l', 's', 'u', 'r', 'v', 'e', 'y', 's', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "crl-autos.com", true */ 'c', 'r', 'l', '-', 'a', 'u', 't', 'o', 's', '.', 'c', 'o', 'm', '\0', /* "crm.onlime.ch", false */ 'c', 'r', 'm', '.', 'o', 'n', 'l', 'i', 'm', 'e', '.', 'c', 'h', '\0', + /* "cross-view.com", true */ 'c', 'r', 'o', 's', 's', '-', 'v', 'i', 'e', 'w', '.', 'c', 'o', 'm', '\0', /* "crosscom.ch", true */ 'c', 'r', 'o', 's', 's', 'c', 'o', 'm', '.', 'c', 'h', '\0', /* "crossfitblackwater.com", true */ 'c', 'r', 'o', 's', 's', 'f', 'i', 't', 'b', 'l', 'a', 'c', 'k', 'w', 'a', 't', 'e', 'r', '.', 'c', 'o', 'm', '\0', - /* "crosssec.com", true */ 'c', 'r', 'o', 's', 's', 's', 'e', 'c', '.', 'c', 'o', 'm', '\0', /* "crosssellguide.com", true */ 'c', 'r', 'o', 's', 's', 's', 'e', 'l', 'l', 'g', 'u', 'i', 'd', 'e', '.', 'c', 'o', 'm', '\0', /* "crow.tw", true */ 'c', 'r', 'o', 'w', '.', 't', 'w', '\0', /* "crowdsupply.com", true */ 'c', 'r', 'o', 'w', 'd', 's', 'u', 'p', 'p', 'l', 'y', '.', 'c', 'o', 'm', '\0', /* "crownruler.com", true */ 'c', 'r', 'o', 'w', 'n', 'r', 'u', 'l', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "crstat.ru", true */ 'c', 'r', 's', 't', 'a', 't', '.', 'r', 'u', '\0', /* "crt.sh", true */ 'c', 'r', 't', '.', 's', 'h', '\0', /* "crtvmgmt.com", false */ 'c', 'r', 't', 'v', 'm', 'g', 'm', 't', '.', 'c', 'o', 'm', '\0', /* "crufad.org", true */ 'c', 'r', 'u', 'f', 'a', 'd', '.', 'o', 'r', 'g', '\0', @@ -2552,17 +2539,16 @@ static const char kSTSHostTable[] = { /* "crypto.is", false */ 'c', 'r', 'y', 'p', 't', 'o', '.', 'i', 's', '\0', /* "cryptobin.co", true */ 'c', 'r', 'y', 'p', 't', 'o', 'b', 'i', 'n', '.', 'c', 'o', '\0', /* "cryptocon.org", true */ 'c', 'r', 'y', 'p', 't', 'o', 'c', 'o', 'n', '.', 'o', 'r', 'g', '\0', /* "cryptodash.net", true */ 'c', 'r', 'y', 'p', 't', 'o', 'd', 'a', 's', 'h', '.', 'n', 'e', 't', '\0', /* "cryptography.io", true */ 'c', 'r', 'y', 'p', 't', 'o', 'g', 'r', 'a', 'p', 'h', 'y', '.', 'i', 'o', '\0', /* "cryptoisnotacrime.org", true */ 'c', 'r', 'y', 'p', 't', 'o', 'i', 's', 'n', 'o', 't', 'a', 'c', 'r', 'i', 'm', 'e', '.', 'o', 'r', 'g', '\0', /* "cryptoki.fr", true */ 'c', 'r', 'y', 'p', 't', 'o', 'k', 'i', '.', 'f', 'r', '\0', /* "cryptolab.pro", true */ 'c', 'r', 'y', 'p', 't', 'o', 'l', 'a', 'b', '.', 'p', 'r', 'o', '\0', - /* "cryptolab.tk", true */ 'c', 'r', 'y', 'p', 't', 'o', 'l', 'a', 'b', '.', 't', 'k', '\0', /* "cryptonit.net", true */ 'c', 'r', 'y', 'p', 't', 'o', 'n', 'i', 't', '.', 'n', 'e', 't', '\0', /* "cryptonym.com", true */ 'c', 'r', 'y', 'p', 't', 'o', 'n', 'y', 'm', '.', 'c', 'o', 'm', '\0', /* "cryptoparty.at", true */ 'c', 'r', 'y', 'p', 't', 'o', 'p', 'a', 'r', 't', 'y', '.', 'a', 't', '\0', /* "cryptoparty.dk", true */ 'c', 'r', 'y', 'p', 't', 'o', 'p', 'a', 'r', 't', 'y', '.', 'd', 'k', '\0', /* "cryptopartyatx.org", true */ 'c', 'r', 'y', 'p', 't', 'o', 'p', 'a', 'r', 't', 'y', 'a', 't', 'x', '.', 'o', 'r', 'g', '\0', /* "cryptopartynewcastle.org", true */ 'c', 'r', 'y', 'p', 't', 'o', 'p', 'a', 'r', 't', 'y', 'n', 'e', 'w', 'c', 'a', 's', 't', 'l', 'e', '.', 'o', 'r', 'g', '\0', /* "cryptopartyutah.org", true */ 'c', 'r', 'y', 'p', 't', 'o', 'p', 'a', 'r', 't', 'y', 'u', 't', 'a', 'h', '.', 'o', 'r', 'g', '\0', /* "cryptophobia.nl", true */ 'c', 'r', 'y', 'p', 't', 'o', 'p', 'h', 'o', 'b', 'i', 'a', '.', 'n', 'l', '\0', @@ -2718,16 +2704,17 @@ static const char kSTSHostTable[] = { /* "damngoodpepper.com", true */ 'd', 'a', 'm', 'n', 'g', 'o', 'o', 'd', 'p', 'e', 'p', 'p', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "dan.me.uk", true */ 'd', 'a', 'n', '.', 'm', 'e', '.', 'u', 'k', '\0', /* "danaketh.com", true */ 'd', 'a', 'n', 'a', 'k', 'e', 't', 'h', '.', 'c', 'o', 'm', '\0', /* "dancerdates.net", true */ 'd', 'a', 'n', 'c', 'e', 'r', 'd', 'a', 't', 'e', 's', '.', 'n', 'e', 't', '\0', /* "dango.in", true */ 'd', 'a', 'n', 'g', 'o', '.', 'i', 'n', '\0', /* "daniel-baumann.ch", true */ 'd', 'a', 'n', 'i', 'e', 'l', '-', 'b', 'a', 'u', 'm', 'a', 'n', 'n', '.', 'c', 'h', '\0', /* "daniel-ruf.de", true */ 'd', 'a', 'n', 'i', 'e', 'l', '-', 'r', 'u', 'f', '.', 'd', 'e', '\0', /* "danielalvarez.net", true */ 'd', 'a', 'n', 'i', 'e', 'l', 'a', 'l', 'v', 'a', 'r', 'e', 'z', '.', 'n', 'e', 't', '\0', + /* "danielcowie.me", true */ 'd', 'a', 'n', 'i', 'e', 'l', 'c', 'o', 'w', 'i', 'e', '.', 'm', 'e', '\0', /* "danielheal.net", true */ 'd', 'a', 'n', 'i', 'e', 'l', 'h', 'e', 'a', 'l', '.', 'n', 'e', 't', '\0', /* "danielhochleitner.de", true */ 'd', 'a', 'n', 'i', 'e', 'l', 'h', 'o', 'c', 'h', 'l', 'e', 'i', 't', 'n', 'e', 'r', '.', 'd', 'e', '\0', /* "danieliancu.com", true */ 'd', 'a', 'n', 'i', 'e', 'l', 'i', 'a', 'n', 'c', 'u', '.', 'c', 'o', 'm', '\0', /* "danieljamesscott.org", true */ 'd', 'a', 'n', 'i', 'e', 'l', 'j', 'a', 'm', 'e', 's', 's', 'c', 'o', 't', 't', '.', 'o', 'r', 'g', '\0', /* "danielkoster.nl", true */ 'd', 'a', 'n', 'i', 'e', 'l', 'k', 'o', 's', 't', 'e', 'r', '.', 'n', 'l', '\0', /* "danielmarquard.com", true */ 'd', 'a', 'n', 'i', 'e', 'l', 'm', 'a', 'r', 'q', 'u', 'a', 'r', 'd', '.', 'c', 'o', 'm', '\0', /* "danielmostertman.com", true */ 'd', 'a', 'n', 'i', 'e', 'l', 'm', 'o', 's', 't', 'e', 'r', 't', 'm', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "danielmostertman.nl", true */ 'd', 'a', 'n', 'i', 'e', 'l', 'm', 'o', 's', 't', 'e', 'r', 't', 'm', 'a', 'n', '.', 'n', 'l', '\0', @@ -2803,17 +2790,16 @@ static const char kSTSHostTable[] = { /* "datortipsen.se", true */ 'd', 'a', 't', 'o', 'r', 't', 'i', 'p', 's', 'e', 'n', '.', 's', 'e', '\0', /* "datsound.ru", true */ 'd', 'a', 't', 's', 'o', 'u', 'n', 'd', '.', 'r', 'u', '\0', /* "daveoc64.co.uk", true */ 'd', 'a', 'v', 'e', 'o', 'c', '6', '4', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "davescomputertips.com", true */ 'd', 'a', 'v', 'e', 's', 'c', 'o', 'm', 'p', 'u', 't', 'e', 'r', 't', 'i', 'p', 's', '.', 'c', 'o', 'm', '\0', /* "davevelopment.net", true */ 'd', 'a', 'v', 'e', 'v', 'e', 'l', 'o', 'p', 'm', 'e', 'n', 't', '.', 'n', 'e', 't', '\0', /* "david-corry.com", true */ 'd', 'a', 'v', 'i', 'd', '-', 'c', 'o', 'r', 'r', 'y', '.', 'c', 'o', 'm', '\0', /* "david-schiffmann.de", true */ 'd', 'a', 'v', 'i', 'd', '-', 's', 'c', 'h', 'i', 'f', 'f', 'm', 'a', 'n', 'n', '.', 'd', 'e', '\0', /* "david.kitchen", true */ 'd', 'a', 'v', 'i', 'd', '.', 'k', 'i', 't', 'c', 'h', 'e', 'n', '\0', - /* "davidadrian.org", true */ 'd', 'a', 'v', 'i', 'd', 'a', 'd', 'r', 'i', 'a', 'n', '.', 'o', 'r', 'g', '\0', /* "davidandersson.se", true */ 'd', 'a', 'v', 'i', 'd', 'a', 'n', 'd', 'e', 'r', 's', 's', 'o', 'n', '.', 's', 'e', '\0', /* "davidcrx.net", true */ 'd', 'a', 'v', 'i', 'd', 'c', 'r', 'x', '.', 'n', 'e', 't', '\0', /* "davidgouveia.net", true */ 'd', 'a', 'v', 'i', 'd', 'g', 'o', 'u', 'v', 'e', 'i', 'a', '.', 'n', 'e', 't', '\0', /* "davidgow.net", true */ 'd', 'a', 'v', 'i', 'd', 'g', 'o', 'w', '.', 'n', 'e', 't', '\0', /* "davidgrudl.com", true */ 'd', 'a', 'v', 'i', 'd', 'g', 'r', 'u', 'd', 'l', '.', 'c', 'o', 'm', '\0', /* "davidlillo.com", true */ 'd', 'a', 'v', 'i', 'd', 'l', 'i', 'l', 'l', 'o', '.', 'c', 'o', 'm', '\0', /* "davidlyness.com", true */ 'd', 'a', 'v', 'i', 'd', 'l', 'y', 'n', 'e', 's', 's', '.', 'c', 'o', 'm', '\0', /* "davidmcevoy.org.uk", true */ 'd', 'a', 'v', 'i', 'd', 'm', 'c', 'e', 'v', 'o', 'y', '.', 'o', 'r', 'g', '.', 'u', 'k', '\0', @@ -2895,17 +2881,16 @@ static const char kSTSHostTable[] = { /* "delayrefunds.co.uk", true */ 'd', 'e', 'l', 'a', 'y', 'r', 'e', 'f', 'u', 'n', 'd', 's', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "delfic.org", true */ 'd', 'e', 'l', 'f', 'i', 'c', '.', 'o', 'r', 'g', '\0', /* "deliciisanatoase.ro", true */ 'd', 'e', 'l', 'i', 'c', 'i', 'i', 's', 'a', 'n', 'a', 't', 'o', 'a', 's', 'e', '.', 'r', 'o', '\0', /* "deliciousmedia.co.uk", true */ 'd', 'e', 'l', 'i', 'c', 'i', 'o', 'u', 's', 'm', 'e', 'd', 'i', 'a', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "delphine.dance", true */ 'd', 'e', 'l', 'p', 'h', 'i', 'n', 'e', '.', 'd', 'a', 'n', 'c', 'e', '\0', /* "delta-data.ch", true */ 'd', 'e', 'l', 't', 'a', '-', 'd', 'a', 't', 'a', '.', 'c', 'h', '\0', /* "delvj.org", true */ 'd', 'e', 'l', 'v', 'j', '.', 'o', 'r', 'g', '\0', /* "dementiapraecox.de", true */ 'd', 'e', 'm', 'e', 'n', 't', 'i', 'a', 'p', 'r', 'a', 'e', 'c', 'o', 'x', '.', 'd', 'e', '\0', - /* "demilitarized.ninja", true */ 'd', 'e', 'm', 'i', 'l', 'i', 't', 'a', 'r', 'i', 'z', 'e', 'd', '.', 'n', 'i', 'n', 'j', 'a', '\0', /* "demo.swedbank.se", true */ 'd', 'e', 'm', 'o', '.', 's', 'w', 'e', 'd', 'b', 'a', 'n', 'k', '.', 's', 'e', '\0', /* "democracy.io", true */ 'd', 'e', 'm', 'o', 'c', 'r', 'a', 'c', 'y', '.', 'i', 'o', '\0', /* "demomanca.com", true */ 'd', 'e', 'm', 'o', 'm', 'a', 'n', 'c', 'a', '.', 'c', 'o', 'm', '\0', /* "demotops.com", false */ 'd', 'e', 'm', 'o', 't', 'o', 'p', 's', '.', 'c', 'o', 'm', '\0', /* "demuzere.be", true */ 'd', 'e', 'm', 'u', 'z', 'e', 'r', 'e', '.', 'b', 'e', '\0', /* "demuzere.com", true */ 'd', 'e', 'm', 'u', 'z', 'e', 'r', 'e', '.', 'c', 'o', 'm', '\0', /* "demuzere.eu", true */ 'd', 'e', 'm', 'u', 'z', 'e', 'r', 'e', '.', 'e', 'u', '\0', /* "demuzere.net", true */ 'd', 'e', 'm', 'u', 'z', 'e', 'r', 'e', '.', 'n', 'e', 't', '\0', @@ -2980,16 +2965,17 @@ static const char kSTSHostTable[] = { /* "deviltraxxx.de", true */ 'd', 'e', 'v', 'i', 'l', 't', 'r', 'a', 'x', 'x', 'x', '.', 'd', 'e', '\0', /* "devistravaux.org", true */ 'd', 'e', 'v', 'i', 's', 't', 'r', 'a', 'v', 'a', 'u', 'x', '.', 'o', 'r', 'g', '\0', /* "devklog.net", true */ 'd', 'e', 'v', 'k', 'l', 'o', 'g', '.', 'n', 'e', 't', '\0', /* "devlogr.com", true */ 'd', 'e', 'v', 'l', 'o', 'g', 'r', '.', 'c', 'o', 'm', '\0', /* "devlux.ch", true */ 'd', 'e', 'v', 'l', 'u', 'x', '.', 'c', 'h', '\0', /* "devmsg.com", true */ 'd', 'e', 'v', 'm', 's', 'g', '.', 'c', 'o', 'm', '\0', /* "devnsec.com", true */ 'd', 'e', 'v', 'n', 's', 'e', 'c', '.', 'c', 'o', 'm', '\0', /* "devnull.team", true */ 'd', 'e', 'v', 'n', 'u', 'l', 'l', '.', 't', 'e', 'a', 'm', '\0', + /* "devolution.ws", true */ 'd', 'e', 'v', 'o', 'l', 'u', 't', 'i', 'o', 'n', '.', 'w', 's', '\0', /* "devonsawatzky.ca", true */ 'd', 'e', 'v', 'o', 'n', 's', 'a', 'w', 'a', 't', 'z', 'k', 'y', '.', 'c', 'a', '\0', /* "devopps.me", true */ 'd', 'e', 'v', 'o', 'p', 'p', 's', '.', 'm', 'e', '\0', /* "devops-survey.com", true */ 'd', 'e', 'v', 'o', 'p', 's', '-', 's', 'u', 'r', 'v', 'e', 'y', '.', 'c', 'o', 'm', '\0', /* "devopsconnected.com", false */ 'd', 'e', 'v', 'o', 'p', 's', 'c', 'o', 'n', 'n', 'e', 'c', 't', 'e', 'd', '.', 'c', 'o', 'm', '\0', /* "devstaff.gr", true */ 'd', 'e', 'v', 's', 't', 'a', 'f', 'f', '.', 'g', 'r', '\0', /* "devtub.com", true */ 'd', 'e', 'v', 't', 'u', 'b', '.', 'c', 'o', 'm', '\0', /* "dewalch.net", true */ 'd', 'e', 'w', 'a', 'l', 'c', 'h', '.', 'n', 'e', 't', '\0', /* "dezeregio.nl", true */ 'd', 'e', 'z', 'e', 'r', 'e', 'g', 'i', 'o', '.', 'n', 'l', '\0', @@ -3005,17 +2991,16 @@ static const char kSTSHostTable[] = { /* "dhauwer.nl", true */ 'd', 'h', 'a', 'u', 'w', 'e', 'r', '.', 'n', 'l', '\0', /* "dhedegaard.dk", true */ 'd', 'h', 'e', 'd', 'e', 'g', 'a', 'a', 'r', 'd', '.', 'd', 'k', '\0', /* "dhome.at", true */ 'd', 'h', 'o', 'm', 'e', '.', 'a', 't', '\0', /* "dhuy.net", true */ 'd', 'h', 'u', 'y', '.', 'n', 'e', 't', '\0', /* "diagnostix.org", true */ 'd', 'i', 'a', 'g', 'n', 'o', 's', 't', 'i', 'x', '.', 'o', 'r', 'g', '\0', /* "diamante.ro", true */ 'd', 'i', 'a', 'm', 'a', 'n', 't', 'e', '.', 'r', 'o', '\0', /* "dianlujitao.com", true */ 'd', 'i', 'a', 'n', 'l', 'u', 'j', 'i', 't', 'a', 'o', '.', 'c', 'o', 'm', '\0', /* "diasdasemana.com", true */ 'd', 'i', 'a', 's', 'd', 'a', 's', 'e', 'm', 'a', 'n', 'a', '.', 'c', 'o', 'm', '\0', - /* "diasp.org", true */ 'd', 'i', 'a', 's', 'p', '.', 'o', 'r', 'g', '\0', /* "diasporadialogues.com", true */ 'd', 'i', 'a', 's', 'p', 'o', 'r', 'a', 'd', 'i', 'a', 'l', 'o', 'g', 'u', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "diavo.de", true */ 'd', 'i', 'a', 'v', 'o', '.', 'd', 'e', '\0', /* "dibiphp.com", true */ 'd', 'i', 'b', 'i', 'p', 'h', 'p', '.', 'c', 'o', 'm', '\0', /* "dicgaming.net", true */ 'd', 'i', 'c', 'g', 'a', 'm', 'i', 'n', 'g', '.', 'n', 'e', 't', '\0', /* "dicionariodenomesproprios.com.br", true */ 'd', 'i', 'c', 'i', 'o', 'n', 'a', 'r', 'i', 'o', 'd', 'e', 'n', 'o', 'm', 'e', 's', 'p', 'r', 'o', 'p', 'r', 'i', 'o', 's', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', /* "dicionariofinanceiro.com", true */ 'd', 'i', 'c', 'i', 'o', 'n', 'a', 'r', 'i', 'o', 'f', 'i', 'n', 'a', 'n', 'c', 'e', 'i', 'r', 'o', '.', 'c', 'o', 'm', '\0', /* "dick.red", true */ 'd', 'i', 'c', 'k', '.', 'r', 'e', 'd', '\0', /* "dickieslife.com", true */ 'd', 'i', 'c', 'k', 'i', 'e', 's', 'l', 'i', 'f', 'e', '.', 'c', 'o', 'm', '\0', @@ -3174,16 +3159,17 @@ static const char kSTSHostTable[] = { /* "dogfi.sh", true */ 'd', 'o', 'g', 'f', 'i', '.', 's', 'h', '\0', /* "doggieholic.net", true */ 'd', 'o', 'g', 'g', 'i', 'e', 'h', 'o', 'l', 'i', 'c', '.', 'n', 'e', 't', '\0', /* "dogoodbehappyllc.com", true */ 'd', 'o', 'g', 'o', 'o', 'd', 'b', 'e', 'h', 'a', 'p', 'p', 'y', 'l', 'l', 'c', '.', 'c', 'o', 'm', '\0', /* "dokan.online", true */ 'd', 'o', 'k', 'a', 'n', '.', 'o', 'n', 'l', 'i', 'n', 'e', '\0', /* "doku-gilde.de", true */ 'd', 'o', 'k', 'u', '-', 'g', 'i', 'l', 'd', 'e', '.', 'd', 'e', '\0', /* "dokuboard.com", true */ 'd', 'o', 'k', 'u', 'b', 'o', 'a', 'r', 'd', '.', 'c', 'o', 'm', '\0', /* "dokuraum.de", true */ 'd', 'o', 'k', 'u', 'r', 'a', 'u', 'm', '.', 'd', 'e', '\0', /* "dolarcanadense.com.br", true */ 'd', 'o', 'l', 'a', 'r', 'c', 'a', 'n', 'a', 'd', 'e', 'n', 's', 'e', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', + /* "doleta.gov", false */ 'd', 'o', 'l', 'e', 't', 'a', '.', 'g', 'o', 'v', '\0', /* "dolevik.com", true */ 'd', 'o', 'l', 'e', 'v', 'i', 'k', '.', 'c', 'o', 'm', '\0', /* "dolice.net", true */ 'd', 'o', 'l', 'i', 'c', 'e', '.', 'n', 'e', 't', '\0', /* "dollemore.com", true */ 'd', 'o', 'l', 'l', 'e', 'm', 'o', 'r', 'e', '.', 'c', 'o', 'm', '\0', /* "dolphin-hosting.com", true */ 'd', 'o', 'l', 'p', 'h', 'i', 'n', '-', 'h', 'o', 's', 't', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "dolphin-it.de", true */ 'd', 'o', 'l', 'p', 'h', 'i', 'n', '-', 'i', 't', '.', 'd', 'e', '\0', /* "dolphinswithlasers.com", true */ 'd', 'o', 'l', 'p', 'h', 'i', 'n', 's', 'w', 'i', 't', 'h', 'l', 'a', 's', 'e', 'r', 's', '.', 'c', 'o', 'm', '\0', /* "domadillo.com", true */ 'd', 'o', 'm', 'a', 'd', 'i', 'l', 'l', 'o', '.', 'c', 'o', 'm', '\0', /* "domainexpress.de", true */ 'd', 'o', 'm', 'a', 'i', 'n', 'e', 'x', 'p', 'r', 'e', 's', 's', '.', 'd', 'e', '\0', @@ -3218,17 +3204,16 @@ static const char kSTSHostTable[] = { /* "doooonoooob.com", true */ 'd', 'o', 'o', 'o', 'o', 'n', 'o', 'o', 'o', 'o', 'b', '.', 'c', 'o', 'm', '\0', /* "doordecor.bg", true */ 'd', 'o', 'o', 'r', 'd', 'e', 'c', 'o', 'r', '.', 'b', 'g', '\0', /* "doorflow.com", true */ 'd', 'o', 'o', 'r', 'f', 'l', 'o', 'w', '.', 'c', 'o', 'm', '\0', /* "dopesoft.de", true */ 'd', 'o', 'p', 'e', 's', 'o', 'f', 't', '.', 'd', 'e', '\0', /* "doppenpost.nl", true */ 'd', 'o', 'p', 'p', 'e', 'n', 'p', 'o', 's', 't', '.', 'n', 'l', '\0', /* "dorianharmans.nl", true */ 'd', 'o', 'r', 'i', 'a', 'n', 'h', 'a', 'r', 'm', 'a', 'n', 's', '.', 'n', 'l', '\0', /* "dorianmuthig.com", true */ 'd', 'o', 'r', 'i', 'a', 'n', 'm', 'u', 't', 'h', 'i', 'g', '.', 'c', 'o', 'm', '\0', /* "dossplumbing.co.za", true */ 'd', 'o', 's', 's', 'p', 'l', 'u', 'm', 'b', 'i', 'n', 'g', '.', 'c', 'o', '.', 'z', 'a', '\0', - /* "dot.ro", true */ 'd', 'o', 't', '.', 'r', 'o', '\0', /* "dot42.no", true */ 'd', 'o', 't', '4', '2', '.', 'n', 'o', '\0', /* "dotbigbang.com", true */ 'd', 'o', 't', 'b', 'i', 'g', 'b', 'a', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "dotbox.org", true */ 'd', 'o', 't', 'b', 'o', 'x', '.', 'o', 'r', 'g', '\0', /* "dothebangthingsalon.com", true */ 'd', 'o', 't', 'h', 'e', 'b', 'a', 'n', 'g', 't', 'h', 'i', 'n', 'g', 's', 'a', 'l', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "dotkod.com", true */ 'd', 'o', 't', 'k', 'o', 'd', '.', 'c', 'o', 'm', '\0', /* "dotkod.pl", true */ 'd', 'o', 't', 'k', 'o', 'd', '.', 'p', 'l', '\0', /* "dotrox.net", true */ 'd', 'o', 't', 'r', 'o', 'x', '.', 'n', 'e', 't', '\0', /* "dotsiam.com", true */ 'd', 'o', 't', 's', 'i', 'a', 'm', '.', 'c', 'o', 'm', '\0', @@ -3239,17 +3224,17 @@ static const char kSTSHostTable[] = { /* "doujinshi.info", true */ 'd', 'o', 'u', 'j', 'i', 'n', 's', 'h', 'i', '.', 'i', 'n', 'f', 'o', '\0', /* "dounats.com", true */ 'd', 'o', 'u', 'n', 'a', 't', 's', '.', 'c', 'o', 'm', '\0', /* "dovecotadmin.org", true */ 'd', 'o', 'v', 'e', 'c', 'o', 't', 'a', 'd', 'm', 'i', 'n', '.', 'o', 'r', 'g', '\0', /* "dovetailnow.com", true */ 'd', 'o', 'v', 'e', 't', 'a', 'i', 'l', 'n', 'o', 'w', '.', 'c', 'o', 'm', '\0', /* "downloadaja.com", true */ 'd', 'o', 'w', 'n', 'l', 'o', 'a', 'd', 'a', 'j', 'a', '.', 'c', 'o', 'm', '\0', /* "downloadgram.com", true */ 'd', 'o', 'w', 'n', 'l', 'o', 'a', 'd', 'g', 'r', 'a', 'm', '.', 'c', 'o', 'm', '\0', /* "downloadsoftwaregratisan.com", true */ 'd', 'o', 'w', 'n', 'l', 'o', 'a', 'd', 's', 'o', 'f', 't', 'w', 'a', 'r', 'e', 'g', 'r', 'a', 't', 'i', 's', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "dpd.com.pl", true */ 'd', 'p', 'd', '.', 'c', 'o', 'm', '.', 'p', 'l', '\0', - /* "dpsg-roden.de", true */ 'd', 'p', 's', 'g', '-', 'r', 'o', 'd', 'e', 'n', '.', 'd', 'e', '\0', + /* "dpsg-roden.de", false */ 'd', 'p', 's', 'g', '-', 'r', 'o', 'd', 'e', 'n', '.', 'd', 'e', '\0', /* "dr2dr.ca", true */ 'd', 'r', '2', 'd', 'r', '.', 'c', 'a', '\0', /* "dragon-chem.eu", true */ 'd', 'r', 'a', 'g', 'o', 'n', '-', 'c', 'h', 'e', 'm', '.', 'e', 'u', '\0', /* "dragonschool.org", true */ 'd', 'r', 'a', 'g', 'o', 'n', 's', 'c', 'h', 'o', 'o', 'l', '.', 'o', 'r', 'g', '\0', /* "dragonteam.ninja", true */ 'd', 'r', 'a', 'g', 'o', 'n', 't', 'e', 'a', 'm', '.', 'n', 'i', 'n', 'j', 'a', '\0', /* "drahcro.uk", true */ 'd', 'r', 'a', 'h', 'c', 'r', 'o', '.', 'u', 'k', '\0', /* "drainagebuizen.nl", true */ 'd', 'r', 'a', 'i', 'n', 'a', 'g', 'e', 'b', 'u', 'i', 'z', 'e', 'n', '.', 'n', 'l', '\0', /* "drakefortreasurer.sexy", true */ 'd', 'r', 'a', 'k', 'e', 'f', 'o', 'r', 't', 'r', 'e', 'a', 's', 'u', 'r', 'e', 'r', '.', 's', 'e', 'x', 'y', '\0', /* "drakeluce.com", true */ 'd', 'r', 'a', 'k', 'e', 'l', 'u', 'c', 'e', '.', 'c', 'o', 'm', '\0', @@ -3263,17 +3248,16 @@ static const char kSTSHostTable[] = { /* "drdevil.ru", true */ 'd', 'r', 'd', 'e', 'v', 'i', 'l', '.', 'r', 'u', '\0', /* "drdim.ru", true */ 'd', 'r', 'd', 'i', 'm', '.', 'r', 'u', '\0', /* "dreamcreator108.com", true */ 'd', 'r', 'e', 'a', 'm', 'c', 'r', 'e', 'a', 't', 'o', 'r', '1', '0', '8', '.', 'c', 'o', 'm', '\0', /* "dreaming.solutions", true */ 'd', 'r', 'e', 'a', 'm', 'i', 'n', 'g', '.', 's', 'o', 'l', 'u', 't', 'i', 'o', 'n', 's', '\0', /* "dreamsforabetterworld.com.au", true */ 'd', 'r', 'e', 'a', 'm', 's', 'f', 'o', 'r', 'a', 'b', 'e', 't', 't', 'e', 'r', 'w', 'o', 'r', 'l', 'd', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "dreamtechie.com", true */ 'd', 'r', 'e', 'a', 'm', 't', 'e', 'c', 'h', 'i', 'e', '.', 'c', 'o', 'm', '\0', /* "dredgepress.com", true */ 'd', 'r', 'e', 'd', 'g', 'e', 'p', 'r', 'e', 's', 's', '.', 'c', 'o', 'm', '\0', /* "dreid.org", true */ 'd', 'r', 'e', 'i', 'd', '.', 'o', 'r', 'g', '\0', - /* "dreizwosechs.de", true */ 'd', 'r', 'e', 'i', 'z', 'w', 'o', 's', 'e', 'c', 'h', 's', '.', 'd', 'e', '\0', /* "drew.red", true */ 'd', 'r', 'e', 'w', '.', 'r', 'e', 'd', '\0', /* "dreweryinc.com", true */ 'd', 'r', 'e', 'w', 'e', 'r', 'y', 'i', 'n', 'c', '.', 'c', 'o', 'm', '\0', /* "drewgle.net", true */ 'd', 'r', 'e', 'w', 'g', 'l', 'e', '.', 'n', 'e', 't', '\0', /* "drhopeson.com", true */ 'd', 'r', 'h', 'o', 'p', 'e', 's', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "driesjtuver.nl", true */ 'd', 'r', 'i', 'e', 's', 'j', 't', 'u', 'v', 'e', 'r', '.', 'n', 'l', '\0', /* "driftdude.nl", true */ 'd', 'r', 'i', 'f', 't', 'd', 'u', 'd', 'e', '.', 'n', 'l', '\0', /* "drino.org", false */ 'd', 'r', 'i', 'n', 'o', '.', 'o', 'r', 'g', '\0', /* "drive.google.com", true */ 'd', 'r', 'i', 'v', 'e', '.', 'g', 'o', 'o', 'g', 'l', 'e', '.', 'c', 'o', 'm', '\0', @@ -3302,20 +3286,17 @@ static const char kSTSHostTable[] = { /* "drweissbrot.net", true */ 'd', 'r', 'w', 'e', 'i', 's', 's', 'b', 'r', 'o', 't', '.', 'n', 'e', 't', '\0', /* "drycreekphoto.com", true */ 'd', 'r', 'y', 'c', 'r', 'e', 'e', 'k', 'p', 'h', 'o', 't', 'o', '.', 'c', 'o', 'm', '\0', /* "ds-christiansen.de", true */ 'd', 's', '-', 'c', 'h', 'r', 'i', 's', 't', 'i', 'a', 'n', 's', 'e', 'n', '.', 'd', 'e', '\0', /* "dsbrowser.com", true */ 'd', 's', 'b', 'r', 'o', 'w', 's', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "dsebastien.net", true */ 'd', 's', 'e', 'b', 'a', 's', 't', 'i', 'e', 'n', '.', 'n', 'e', 't', '\0', /* "dsol.hu", true */ 'd', 's', 'o', 'l', '.', 'h', 'u', '\0', /* "dt27.org", true */ 'd', 't', '2', '7', '.', 'o', 'r', 'g', '\0', /* "dubaieveningsafari.com", true */ 'd', 'u', 'b', 'a', 'i', 'e', 'v', 'e', 'n', 'i', 'n', 'g', 's', 'a', 'f', 'a', 'r', 'i', '.', 'c', 'o', 'm', '\0', - /* "dubrovskiy.net", true */ 'd', 'u', 'b', 'r', 'o', 'v', 's', 'k', 'i', 'y', '.', 'n', 'e', 't', '\0', - /* "dubrovskiy.pro", true */ 'd', 'u', 'b', 'r', 'o', 'v', 's', 'k', 'i', 'y', '.', 'p', 'r', 'o', '\0', /* "duch.cloud", true */ 'd', 'u', 'c', 'h', '.', 'c', 'l', 'o', 'u', 'd', '\0', - /* "duckasylum.com", true */ 'd', 'u', 'c', 'k', 'a', 's', 'y', 'l', 'u', 'm', '.', 'c', 'o', 'm', '\0', /* "duckduckstart.com", true */ 'd', 'u', 'c', 'k', 'd', 'u', 'c', 'k', 's', 't', 'a', 'r', 't', '.', 'c', 'o', 'm', '\0', /* "duckinc.net", true */ 'd', 'u', 'c', 'k', 'i', 'n', 'c', '.', 'n', 'e', 't', '\0', /* "ducohosting.com", true */ 'd', 'u', 'c', 'o', 'h', 'o', 's', 't', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "duelysthub.com", true */ 'd', 'u', 'e', 'l', 'y', 's', 't', 'h', 'u', 'b', '.', 'c', 'o', 'm', '\0', /* "duernberg.at", true */ 'd', 'u', 'e', 'r', 'n', 'b', 'e', 'r', 'g', '.', 'a', 't', '\0', /* "duijf.info", true */ 'd', 'u', 'i', 'j', 'f', '.', 'i', 'n', 'f', 'o', '\0', /* "duijfathome.nl", true */ 'd', 'u', 'i', 'j', 'f', 'a', 't', 'h', 'o', 'm', 'e', '.', 'n', 'l', '\0', /* "dukan-recepty.ru", true */ 'd', 'u', 'k', 'a', 'n', '-', 'r', 'e', 'c', 'e', 'p', 't', 'y', '.', 'r', 'u', '\0', @@ -3353,16 +3334,17 @@ static const char kSTSHostTable[] = { /* "dymersion.com", true */ 'd', 'y', 'm', 'e', 'r', 's', 'i', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "dyn-nserve.net", true */ 'd', 'y', 'n', '-', 'n', 's', 'e', 'r', 'v', 'e', '.', 'n', 'e', 't', '\0', /* "dyn.im", true */ 'd', 'y', 'n', '.', 'i', 'm', '\0', /* "dynaloop.net", true */ 'd', 'y', 'n', 'a', 'l', 'o', 'o', 'p', '.', 'n', 'e', 't', '\0', /* "dynamicnet.net", false */ 'd', 'y', 'n', 'a', 'm', 'i', 'c', 'n', 'e', 't', '.', 'n', 'e', 't', '\0', /* "dynamicsnetwork.net", true */ 'd', 'y', 'n', 'a', 'm', 'i', 'c', 's', 'n', 'e', 't', 'w', 'o', 'r', 'k', '.', 'n', 'e', 't', '\0', /* "dynamize.solutions", true */ 'd', 'y', 'n', 'a', 'm', 'i', 'z', 'e', '.', 's', 'o', 'l', 'u', 't', 'i', 'o', 'n', 's', '\0', /* "dyrenesverden.no", true */ 'd', 'y', 'r', 'e', 'n', 'e', 's', 'v', 'e', 'r', 'd', 'e', 'n', '.', 'n', 'o', '\0', + /* "dziekonski.com", true */ 'd', 'z', 'i', 'e', 'k', 'o', 'n', 's', 'k', 'i', '.', 'c', 'o', 'm', '\0', /* "dzyabchenko.com", true */ 'd', 'z', 'y', 'a', 'b', 'c', 'h', 'e', 'n', 'k', 'o', '.', 'c', 'o', 'm', '\0', /* "e-kontakti.fi", true */ 'e', '-', 'k', 'o', 'n', 't', 'a', 'k', 't', 'i', '.', 'f', 'i', '\0', /* "e-lifetechnology.com", true */ 'e', '-', 'l', 'i', 'f', 'e', 't', 'e', 'c', 'h', 'n', 'o', 'l', 'o', 'g', 'y', '.', 'c', 'o', 'm', '\0', /* "e-mak.eu", true */ 'e', '-', 'm', 'a', 'k', '.', 'e', 'u', '\0', /* "e-sa.com", true */ 'e', '-', 's', 'a', '.', 'c', 'o', 'm', '\0', /* "e-teacher.pl", true */ 'e', '-', 't', 'e', 'a', 'c', 'h', 'e', 'r', '.', 'p', 'l', '\0', /* "e-tmf.org", true */ 'e', '-', 't', 'm', 'f', '.', 'o', 'r', 'g', '\0', /* "e-tresor.at", true */ 'e', '-', 't', 'r', 'e', 's', 'o', 'r', '.', 'a', 't', '\0', @@ -3471,17 +3453,16 @@ static const char kSTSHostTable[] = { /* "eelzak.nl", true */ 'e', 'e', 'l', 'z', 'a', 'k', '.', 'n', 'l', '\0', /* "eeqj.com", true */ 'e', 'e', 'q', 'j', '.', 'c', 'o', 'm', '\0', /* "eery.de", true */ 'e', 'e', 'r', 'y', '.', 'd', 'e', '\0', /* "eewna.org", true */ 'e', 'e', 'w', 'n', 'a', '.', 'o', 'r', 'g', '\0', /* "ef.gy", true */ 'e', 'f', '.', 'g', 'y', '\0', /* "eff.org", true */ 'e', 'f', 'f', '.', 'o', 'r', 'g', '\0', /* "effortlesshr.com", true */ 'e', 'f', 'f', 'o', 'r', 't', 'l', 'e', 's', 's', 'h', 'r', '.', 'c', 'o', 'm', '\0', /* "egfl.org.uk", true */ 'e', 'g', 'f', 'l', '.', 'o', 'r', 'g', '.', 'u', 'k', '\0', - /* "egg-ortho.ch", true */ 'e', 'g', 'g', '-', 'o', 'r', 't', 'h', 'o', '.', 'c', 'h', '\0', /* "egge.com", true */ 'e', 'g', 'g', 'e', '.', 'c', 'o', 'm', '\0', /* "eggplant.today", true */ 'e', 'g', 'g', 'p', 'l', 'a', 'n', 't', '.', 't', 'o', 'd', 'a', 'y', '\0', /* "ego4u.com", true */ 'e', 'g', 'o', '4', 'u', '.', 'c', 'o', 'm', '\0', /* "ego4u.de", true */ 'e', 'g', 'o', '4', 'u', '.', 'd', 'e', '\0', /* "egretail.no", true */ 'e', 'g', 'r', 'e', 't', 'a', 'i', 'l', '.', 'n', 'o', '\0', /* "ehealthcounselor.com", true */ 'e', 'h', 'e', 'a', 'l', 't', 'h', 'c', 'o', 'u', 'n', 's', 'e', 'l', 'o', 'r', '.', 'c', 'o', 'm', '\0', /* "ehipaa.com", true */ 'e', 'h', 'i', 'p', 'a', 'a', '.', 'c', 'o', 'm', '\0', /* "ehipaadev.com", true */ 'e', 'h', 'i', 'p', 'a', 'a', 'd', 'e', 'v', '.', 'c', 'o', 'm', '\0', @@ -3535,16 +3516,17 @@ static const char kSTSHostTable[] = { /* "elemenx.com", true */ 'e', 'l', 'e', 'm', 'e', 'n', 'x', '.', 'c', 'o', 'm', '\0', /* "elena-baykova.ru", true */ 'e', 'l', 'e', 'n', 'a', '-', 'b', 'a', 'y', 'k', 'o', 'v', 'a', '.', 'r', 'u', '\0', /* "elenagherta.ga", true */ 'e', 'l', 'e', 'n', 'a', 'g', 'h', 'e', 'r', 't', 'a', '.', 'g', 'a', '\0', /* "elenorsmadness.org", true */ 'e', 'l', 'e', 'n', 'o', 'r', 's', 'm', 'a', 'd', 'n', 'e', 's', 's', '.', 'o', 'r', 'g', '\0', /* "elephpant.cz", true */ 'e', 'l', 'e', 'p', 'h', 'p', 'a', 'n', 't', '.', 'c', 'z', '\0', /* "elgacien.de", true */ 'e', 'l', 'g', 'a', 'c', 'i', 'e', 'n', '.', 'd', 'e', '\0', /* "elglobo.com.mx", true */ 'e', 'l', 'g', 'l', 'o', 'b', 'o', '.', 'c', 'o', 'm', '.', 'm', 'x', '\0', /* "elgosblanc.com", true */ 'e', 'l', 'g', 'o', 's', 'b', 'l', 'a', 'n', 'c', '.', 'c', 'o', 'm', '\0', + /* "eligible.com", true */ 'e', 'l', 'i', 'g', 'i', 'b', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "eligibleapi.com", true */ 'e', 'l', 'i', 'g', 'i', 'b', 'l', 'e', 'a', 'p', 'i', '.', 'c', 'o', 'm', '\0', /* "eligrey.com", true */ 'e', 'l', 'i', 'g', 'r', 'e', 'y', '.', 'c', 'o', 'm', '\0', /* "eliolita.com", true */ 'e', 'l', 'i', 'o', 'l', 'i', 't', 'a', '.', 'c', 'o', 'm', '\0', /* "eliott.be", true */ 'e', 'l', 'i', 'o', 't', 't', '.', 'b', 'e', '\0', /* "elisa.ee", false */ 'e', 'l', 'i', 's', 'a', '.', 'e', 'e', '\0', /* "elisabeth-kostecki.de", true */ 'e', 'l', 'i', 's', 'a', 'b', 'e', 't', 'h', '-', 'k', 'o', 's', 't', 'e', 'c', 'k', 'i', '.', 'd', 'e', '\0', /* "elisabeth-strunz.de", true */ 'e', 'l', 'i', 's', 'a', 'b', 'e', 't', 'h', '-', 's', 't', 'r', 'u', 'n', 'z', '.', 'd', 'e', '\0', /* "elisabethkostecki.de", true */ 'e', 'l', 'i', 's', 'a', 'b', 'e', 't', 'h', 'k', 'o', 's', 't', 'e', 'c', 'k', 'i', '.', 'd', 'e', '\0', @@ -3560,16 +3542,17 @@ static const char kSTSHostTable[] = { /* "ellsinger.me", true */ 'e', 'l', 'l', 's', 'i', 'n', 'g', 'e', 'r', '.', 'm', 'e', '\0', /* "elmermx.ch", true */ 'e', 'l', 'm', 'e', 'r', 'm', 'x', '.', 'c', 'h', '\0', /* "elnan.do", true */ 'e', 'l', 'n', 'a', 'n', '.', 'd', 'o', '\0', /* "eloanpersonal.com", true */ 'e', 'l', 'o', 'a', 'n', 'p', 'e', 'r', 's', 'o', 'n', 'a', 'l', '.', 'c', 'o', 'm', '\0', /* "eloge.se", true */ 'e', 'l', 'o', 'g', 'e', '.', 's', 'e', '\0', /* "elonbase.com", true */ 'e', 'l', 'o', 'n', 'b', 'a', 's', 'e', '.', 'c', 'o', 'm', '\0', /* "elpo.net", true */ 'e', 'l', 'p', 'o', '.', 'n', 'e', 't', '\0', /* "elsamakhin.com", true */ 'e', 'l', 's', 'a', 'm', 'a', 'k', 'h', 'i', 'n', '.', 'c', 'o', 'm', '\0', + /* "eltagroup.co.uk", true */ 'e', 'l', 't', 'a', 'g', 'r', 'o', 'u', 'p', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "elternforum-birmensdorf.ch", true */ 'e', 'l', 't', 'e', 'r', 'n', 'f', 'o', 'r', 'u', 'm', '-', 'b', 'i', 'r', 'm', 'e', 'n', 's', 'd', 'o', 'r', 'f', '.', 'c', 'h', '\0', /* "eluhome.de", true */ 'e', 'l', 'u', 'h', 'o', 'm', 'e', '.', 'd', 'e', '\0', /* "elvidence.com.au", true */ 'e', 'l', 'v', 'i', 'd', 'e', 'n', 'c', 'e', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "em-biotek.cz", true */ 'e', 'm', '-', 'b', 'i', 'o', 't', 'e', 'k', '.', 'c', 'z', '\0', /* "email2rss.net", true */ 'e', 'm', 'a', 'i', 'l', '2', 'r', 's', 's', '.', 'n', 'e', 't', '\0', /* "emailfuermich.de", true */ 'e', 'm', 'a', 'i', 'l', 'f', 'u', 'e', 'r', 'm', 'i', 'c', 'h', '.', 'd', 'e', '\0', /* "emailhunter.co", true */ 'e', 'm', 'a', 'i', 'l', 'h', 'u', 'n', 't', 'e', 'r', '.', 'c', 'o', '\0', /* "emailprivacytester.com", true */ 'e', 'm', 'a', 'i', 'l', 'p', 'r', 'i', 'v', 'a', 'c', 'y', 't', 'e', 's', 't', 'e', 'r', '.', 'c', 'o', 'm', '\0', @@ -3609,17 +3592,16 @@ static const char kSTSHostTable[] = { /* "encryptallthethings.net", true */ 'e', 'n', 'c', 'r', 'y', 'p', 't', 'a', 'l', 'l', 't', 'h', 'e', 't', 'h', 'i', 'n', 'g', 's', '.', 'n', 'e', 't', '\0', /* "encrypted.google.com", true */ 'e', 'n', 'c', 'r', 'y', 'p', 't', 'e', 'd', '.', 'g', 'o', 'o', 'g', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "encryptedaudience.com", true */ 'e', 'n', 'c', 'r', 'y', 'p', 't', 'e', 'd', 'a', 'u', 'd', 'i', 'e', 'n', 'c', 'e', '.', 'c', 'o', 'm', '\0', /* "encryptio.com", true */ 'e', 'n', 'c', 'r', 'y', 'p', 't', 'i', 'o', '.', 'c', 'o', 'm', '\0', /* "end.pp.ua", true */ 'e', 'n', 'd', '.', 'p', 'p', '.', 'u', 'a', '\0', /* "endeal.nl", true */ 'e', 'n', 'd', 'e', 'a', 'l', '.', 'n', 'l', '\0', /* "ender.co.at", true */ 'e', 'n', 'd', 'e', 'r', '.', 'c', 'o', '.', 'a', 't', '\0', /* "endlessdark.net", true */ 'e', 'n', 'd', 'l', 'e', 's', 's', 'd', 'a', 'r', 'k', '.', 'n', 'e', 't', '\0', - /* "endlessdiy.ca", true */ 'e', 'n', 'd', 'l', 'e', 's', 's', 'd', 'i', 'y', '.', 'c', 'a', '\0', /* "endlesshorizon.net", true */ 'e', 'n', 'd', 'l', 'e', 's', 's', 'h', 'o', 'r', 'i', 'z', 'o', 'n', '.', 'n', 'e', 't', '\0', /* "endlesstone.com", true */ 'e', 'n', 'd', 'l', 'e', 's', 's', 't', 'o', 'n', 'e', '.', 'c', 'o', 'm', '\0', /* "endofnet.org", true */ 'e', 'n', 'd', 'o', 'f', 'n', 'e', 't', '.', 'o', 'r', 'g', '\0', /* "endohaus.ca", true */ 'e', 'n', 'd', 'o', 'h', 'a', 'u', 's', '.', 'c', 'a', '\0', /* "endohaus.com", true */ 'e', 'n', 'd', 'o', 'h', 'a', 'u', 's', '.', 'c', 'o', 'm', '\0', /* "endohaus.eu", true */ 'e', 'n', 'd', 'o', 'h', 'a', 'u', 's', '.', 'e', 'u', '\0', /* "endohaus.us", true */ 'e', 'n', 'd', 'o', 'h', 'a', 'u', 's', '.', 'u', 's', '\0', /* "enecoshop.nl", true */ 'e', 'n', 'e', 'c', 'o', 's', 'h', 'o', 'p', '.', 'n', 'l', '\0', @@ -3697,17 +3679,16 @@ static const char kSTSHostTable[] = { /* "ericdiao.com", true */ 'e', 'r', 'i', 'c', 'd', 'i', 'a', 'o', '.', 'c', 'o', 'm', '\0', /* "erichalv.com", true */ 'e', 'r', 'i', 'c', 'h', 'a', 'l', 'v', '.', 'c', 'o', 'm', '\0', /* "erichorstmanshof.nl", true */ 'e', 'r', 'i', 'c', 'h', 'o', 'r', 's', 't', 'm', 'a', 'n', 's', 'h', 'o', 'f', '.', 'n', 'l', '\0', /* "ericisaweso.me", true */ 'e', 'r', 'i', 'c', 'i', 's', 'a', 'w', 'e', 's', 'o', '.', 'm', 'e', '\0', /* "ericleuthardt.com", true */ 'e', 'r', 'i', 'c', 'l', 'e', 'u', 't', 'h', 'a', 'r', 'd', 't', '.', 'c', 'o', 'm', '\0', /* "erico.jp", true */ 'e', 'r', 'i', 'c', 'o', '.', 'j', 'p', '\0', /* "ericwie.se", true */ 'e', 'r', 'i', 'c', 'w', 'i', 'e', '.', 's', 'e', '\0', /* "erigrid.eu", true */ 'e', 'r', 'i', 'g', 'r', 'i', 'd', '.', 'e', 'u', '\0', - /* "eriix.org", true */ 'e', 'r', 'i', 'i', 'x', '.', 'o', 'r', 'g', '\0', /* "erikhubers.nl", true */ 'e', 'r', 'i', 'k', 'h', 'u', 'b', 'e', 'r', 's', '.', 'n', 'l', '\0', /* "erikseth.de", true */ 'e', 'r', 'i', 'k', 's', 'e', 't', 'h', '.', 'd', 'e', '\0', /* "eriner.me", true */ 'e', 'r', 'i', 'n', 'e', 'r', '.', 'm', 'e', '\0', /* "erisrenee.com", true */ 'e', 'r', 'i', 's', 'r', 'e', 'n', 'e', 'e', '.', 'c', 'o', 'm', '\0', /* "ernest.ly", true */ 'e', 'r', 'n', 'e', 's', 't', '.', 'l', 'y', '\0', /* "ernesto.at", true */ 'e', 'r', 'n', 'e', 's', 't', 'o', '.', 'a', 't', '\0', /* "erp-band.ru", true */ 'e', 'r', 'p', '-', 'b', 'a', 'n', 'd', '.', 'r', 'u', '\0', /* "erp.band", true */ 'e', 'r', 'p', '.', 'b', 'a', 'n', 'd', '\0', @@ -3807,17 +3788,16 @@ static const char kSTSHostTable[] = { /* "evegalaxy.net", true */ 'e', 'v', 'e', 'g', 'a', 'l', 'a', 'x', 'y', '.', 'n', 'e', 't', '\0', /* "evelyndayman.com", true */ 'e', 'v', 'e', 'l', 'y', 'n', 'd', 'a', 'y', 'm', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "eventaro.com", true */ 'e', 'v', 'e', 'n', 't', 'a', 'r', 'o', '.', 'c', 'o', 'm', '\0', /* "everhome.de", true */ 'e', 'v', 'e', 'r', 'h', 'o', 'm', 'e', '.', 'd', 'e', '\0', /* "everling.lu", true */ 'e', 'v', 'e', 'r', 'l', 'i', 'n', 'g', '.', 'l', 'u', '\0', /* "everylab.org", true */ 'e', 'v', 'e', 'r', 'y', 'l', 'a', 'b', '.', 'o', 'r', 'g', '\0', /* "everymove.org", true */ 'e', 'v', 'e', 'r', 'y', 'm', 'o', 'v', 'e', '.', 'o', 'r', 'g', '\0', /* "everywhere.cloud", true */ 'e', 'v', 'e', 'r', 'y', 'w', 'h', 'e', 'r', 'e', '.', 'c', 'l', 'o', 'u', 'd', '\0', - /* "eveseat.net", true */ 'e', 'v', 'e', 's', 'e', 'a', 't', '.', 'n', 'e', 't', '\0', /* "eveshamglass.co.uk", true */ 'e', 'v', 'e', 's', 'h', 'a', 'm', 'g', 'l', 'a', 's', 's', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "evilized.de", true */ 'e', 'v', 'i', 'l', 'i', 'z', 'e', 'd', '.', 'd', 'e', '\0', /* "evilsay.com", true */ 'e', 'v', 'i', 'l', 's', 'a', 'y', '.', 'c', 'o', 'm', '\0', /* "evites.me", true */ 'e', 'v', 'i', 't', 'e', 's', '.', 'm', 'e', '\0', /* "evlear.com", true */ 'e', 'v', 'l', 'e', 'a', 'r', '.', 'c', 'o', 'm', '\0', /* "evodation.com", true */ 'e', 'v', 'o', 'd', 'a', 't', 'i', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "evolutionlending.co.uk", true */ 'e', 'v', 'o', 'l', 'u', 't', 'i', 'o', 'n', 'l', 'e', 'n', 'd', 'i', 'n', 'g', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "evomon.com", true */ 'e', 'v', 'o', 'm', 'o', 'n', '.', 'c', 'o', 'm', '\0', @@ -3937,17 +3917,16 @@ static const char kSTSHostTable[] = { /* "fanvoice.com", true */ 'f', 'a', 'n', 'v', 'o', 'i', 'c', 'e', '.', 'c', 'o', 'm', '\0', /* "fanyue123.tk", true */ 'f', 'a', 'n', 'y', 'u', 'e', '1', '2', '3', '.', 't', 'k', '\0', /* "fanz.pro", true */ 'f', 'a', 'n', 'z', '.', 'p', 'r', 'o', '\0', /* "fap.no", true */ 'f', 'a', 'p', '.', 'n', 'o', '\0', /* "faq.lookout.com", false */ 'f', 'a', 'q', '.', 'l', 'o', 'o', 'k', 'o', 'u', 't', '.', 'c', 'o', 'm', '\0', /* "faretravel.co.uk", true */ 'f', 'a', 'r', 'e', 't', 'r', 'a', 'v', 'e', 'l', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "fargtorget.se", true */ 'f', 'a', 'r', 'g', 't', 'o', 'r', 'g', 'e', 't', '.', 's', 'e', '\0', /* "farhadexchange.com", true */ 'f', 'a', 'r', 'h', 'a', 'd', 'e', 'x', 'c', 'h', 'a', 'n', 'g', 'e', '.', 'c', 'o', 'm', '\0', - /* "farhood.org", true */ 'f', 'a', 'r', 'h', 'o', 'o', 'd', '.', 'o', 'r', 'g', '\0', /* "farmacialaboratorio.it", true */ 'f', 'a', 'r', 'm', 'a', 'c', 'i', 'a', 'l', 'a', 'b', 'o', 'r', 'a', 't', 'o', 'r', 'i', 'o', '.', 'i', 't', '\0', /* "fasdoutreach.ca", true */ 'f', 'a', 's', 'd', 'o', 'u', 't', 'r', 'e', 'a', 'c', 'h', '.', 'c', 'a', '\0', /* "fashion.net", true */ 'f', 'a', 's', 'h', 'i', 'o', 'n', '.', 'n', 'e', 't', '\0', /* "fashionholic.my", true */ 'f', 'a', 's', 'h', 'i', 'o', 'n', 'h', 'o', 'l', 'i', 'c', '.', 'm', 'y', '\0', /* "fashionunited.cl", true */ 'f', 'a', 's', 'h', 'i', 'o', 'n', 'u', 'n', 'i', 't', 'e', 'd', '.', 'c', 'l', '\0', /* "fashionunited.com", true */ 'f', 'a', 's', 'h', 'i', 'o', 'n', 'u', 'n', 'i', 't', 'e', 'd', '.', 'c', 'o', 'm', '\0', /* "fashionunited.com.ar", true */ 'f', 'a', 's', 'h', 'i', 'o', 'n', 'u', 'n', 'i', 't', 'e', 'd', '.', 'c', 'o', 'm', '.', 'a', 'r', '\0', /* "fashionunited.hk", true */ 'f', 'a', 's', 'h', 'i', 'o', 'n', 'u', 'n', 'i', 't', 'e', 'd', '.', 'h', 'k', '\0', @@ -3990,16 +3969,17 @@ static const char kSTSHostTable[] = { /* "feen.us", true */ 'f', 'e', 'e', 'n', '.', 'u', 's', '\0', /* "fehngarten.de", true */ 'f', 'e', 'h', 'n', 'g', 'a', 'r', 't', 'e', 'n', '.', 'd', 'e', '\0', /* "fehnladen.de", true */ 'f', 'e', 'h', 'n', 'l', 'a', 'd', 'e', 'n', '.', 'd', 'e', '\0', /* "feirlane.org", false */ 'f', 'e', 'i', 'r', 'l', 'a', 'n', 'e', '.', 'o', 'r', 'g', '\0', /* "feistyduck.com", true */ 'f', 'e', 'i', 's', 't', 'y', 'd', 'u', 'c', 'k', '.', 'c', 'o', 'm', '\0', /* "felixklein.at", true */ 'f', 'e', 'l', 'i', 'x', 'k', 'l', 'e', 'i', 'n', '.', 'a', 't', '\0', /* "felixrr.pro", true */ 'f', 'e', 'l', 'i', 'x', 'r', 'r', '.', 'p', 'r', 'o', '\0', /* "felixsanz.com", true */ 'f', 'e', 'l', 'i', 'x', 's', 'a', 'n', 'z', '.', 'c', 'o', 'm', '\0', + /* "fenno.net", true */ 'f', 'e', 'n', 'n', 'o', '.', 'n', 'e', 't', '\0', /* "fenster-bank.at", true */ 'f', 'e', 'n', 's', 't', 'e', 'r', '-', 'b', 'a', 'n', 'k', '.', 'a', 't', '\0', /* "fenster-bank.de", true */ 'f', 'e', 'n', 's', 't', 'e', 'r', '-', 'b', 'a', 'n', 'k', '.', 'd', 'e', '\0', /* "ferien-netzwerk.de", true */ 'f', 'e', 'r', 'i', 'e', 'n', '-', 'n', 'e', 't', 'z', 'w', 'e', 'r', 'k', '.', 'd', 'e', '\0', /* "ferienhaus-polchow-ruegen.de", false */ 'f', 'e', 'r', 'i', 'e', 'n', 'h', 'a', 'u', 's', '-', 'p', 'o', 'l', 'c', 'h', 'o', 'w', '-', 'r', 'u', 'e', 'g', 'e', 'n', '.', 'd', 'e', '\0', /* "fernandes.org", true */ 'f', 'e', 'r', 'n', 'a', 'n', 'd', 'e', 's', '.', 'o', 'r', 'g', '\0', /* "fernandob.com", true */ 'f', 'e', 'r', 'n', 'a', 'n', 'd', 'o', 'b', '.', 'c', 'o', 'm', '\0', /* "fernandobarillas.com", true */ 'f', 'e', 'r', 'n', 'a', 'n', 'd', 'o', 'b', 'a', 'r', 'i', 'l', 'l', 'a', 's', '.', 'c', 'o', 'm', '\0', /* "fernseher-kauf.de", true */ 'f', 'e', 'r', 'n', 's', 'e', 'h', 'e', 'r', '-', 'k', 'a', 'u', 'f', '.', 'd', 'e', '\0', @@ -4052,17 +4032,16 @@ static const char kSTSHostTable[] = { /* "financieringsportaal.nl", true */ 'f', 'i', 'n', 'a', 'n', 'c', 'i', 'e', 'r', 'i', 'n', 'g', 's', 'p', 'o', 'r', 't', 'a', 'a', 'l', '.', 'n', 'l', '\0', /* "findigo.fish", true */ 'f', 'i', 'n', 'd', 'i', 'g', 'o', '.', 'f', 'i', 's', 'h', '\0', /* "finditez.com", true */ 'f', 'i', 'n', 'd', 'i', 't', 'e', 'z', '.', 'c', 'o', 'm', '\0', /* "findyour.diet", true */ 'f', 'i', 'n', 'd', 'y', 'o', 'u', 'r', '.', 'd', 'i', 'e', 't', '\0', /* "findyourvoice.ca", true */ 'f', 'i', 'n', 'd', 'y', 'o', 'u', 'r', 'v', 'o', 'i', 'c', 'e', '.', 'c', 'a', '\0', /* "finenet.com.tw", true */ 'f', 'i', 'n', 'e', 'n', 'e', 't', '.', 'c', 'o', 'm', '.', 't', 'w', '\0', /* "finfev.de", true */ 'f', 'i', 'n', 'f', 'e', 'v', '.', 'd', 'e', '\0', /* "finisron.in", true */ 'f', 'i', 'n', 'i', 's', 'r', 'o', 'n', '.', 'i', 'n', '\0', - /* "finiteheap.com", true */ 'f', 'i', 'n', 'i', 't', 'e', 'h', 'e', 'a', 'p', '.', 'c', 'o', 'm', '\0', /* "finkelstein.fr", true */ 'f', 'i', 'n', 'k', 'e', 'l', 's', 't', 'e', 'i', 'n', '.', 'f', 'r', '\0', /* "finn.io", true */ 'f', 'i', 'n', 'n', '.', 'i', 'o', '\0', /* "finneas.net", true */ 'f', 'i', 'n', 'n', 'e', 'a', 's', '.', 'n', 'e', 't', '\0', /* "finpt.com", true */ 'f', 'i', 'n', 'p', 't', '.', 'c', 'o', 'm', '\0', /* "finstererlebnis.de", true */ 'f', 'i', 'n', 's', 't', 'e', 'r', 'e', 'r', 'l', 'e', 'b', 'n', 'i', 's', '.', 'd', 'e', '\0', /* "finsterlebnis.de", true */ 'f', 'i', 'n', 's', 't', 'e', 'r', 'l', 'e', 'b', 'n', 'i', 's', '.', 'd', 'e', '\0', /* "fionamcbride.com", true */ 'f', 'i', 'o', 'n', 'a', 'm', 'c', 'b', 'r', 'i', 'd', 'e', '.', 'c', 'o', 'm', '\0', /* "firebaseio.com", true */ 'f', 'i', 'r', 'e', 'b', 'a', 's', 'e', 'i', 'o', '.', 'c', 'o', 'm', '\0', @@ -4107,25 +4086,25 @@ static const char kSTSHostTable[] = { /* "flajshans.cz", true */ 'f', 'l', 'a', 'j', 's', 'h', 'a', 'n', 's', '.', 'c', 'z', '\0', /* "flamer-scene.com", false */ 'f', 'l', 'a', 'm', 'e', 'r', '-', 's', 'c', 'e', 'n', 'e', '.', 'c', 'o', 'm', '\0', /* "flamingcow.tv", true */ 'f', 'l', 'a', 'm', 'i', 'n', 'g', 'c', 'o', 'w', '.', 't', 'v', '\0', /* "flamingkeys.com", true */ 'f', 'l', 'a', 'm', 'i', 'n', 'g', 'k', 'e', 'y', 's', '.', 'c', 'o', 'm', '\0', /* "flamingkeys.com.au", false */ 'f', 'l', 'a', 'm', 'i', 'n', 'g', 'k', 'e', 'y', 's', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "flamme-von-anor.de", true */ 'f', 'l', 'a', 'm', 'm', 'e', '-', 'v', 'o', 'n', '-', 'a', 'n', 'o', 'r', '.', 'd', 'e', '\0', /* "flana.com", true */ 'f', 'l', 'a', 'n', 'a', '.', 'c', 'o', 'm', '\0', /* "flareon.net", true */ 'f', 'l', 'a', 'r', 'e', 'o', 'n', '.', 'n', 'e', 't', '\0', + /* "flashback.org", true */ 'f', 'l', 'a', 's', 'h', 'b', 'a', 'c', 'k', '.', 'o', 'r', 'g', '\0', /* "flat.io", true */ 'f', 'l', 'a', 't', '.', 'i', 'o', '\0', /* "flawcheck.com", true */ 'f', 'l', 'a', 'w', 'c', 'h', 'e', 'c', 'k', '.', 'c', 'o', 'm', '\0', /* "flawlesscowboy.xyz", true */ 'f', 'l', 'a', 'w', 'l', 'e', 's', 's', 'c', 'o', 'w', 'b', 'o', 'y', '.', 'x', 'y', 'z', '\0', /* "flazznetworks.com", false */ 'f', 'l', 'a', 'z', 'z', 'n', 'e', 't', 'w', 'o', 'r', 'k', 's', '.', 'c', 'o', 'm', '\0', /* "fleep.io", true */ 'f', 'l', 'e', 'e', 'p', '.', 'i', 'o', '\0', /* "fleisch.club", true */ 'f', 'l', 'e', 'i', 's', 'c', 'h', '.', 'c', 'l', 'u', 'b', '\0', /* "fletchto99.com", true */ 'f', 'l', 'e', 't', 'c', 'h', 't', 'o', '9', '9', '.', 'c', 'o', 'm', '\0', /* "flexapplications.se", true */ 'f', 'l', 'e', 'x', 'a', 'p', 'p', 'l', 'i', 'c', 'a', 't', 'i', 'o', 'n', 's', '.', 's', 'e', '\0', - /* "fleximus.org", false */ 'f', 'l', 'e', 'x', 'i', 'm', 'u', 's', '.', 'o', 'r', 'g', '\0', /* "flexinvesting.fi", true */ 'f', 'l', 'e', 'x', 'i', 'n', 'v', 'e', 's', 't', 'i', 'n', 'g', '.', 'f', 'i', '\0', /* "flexport.com", true */ 'f', 'l', 'e', 'x', 'p', 'o', 'r', 't', '.', 'c', 'o', 'm', '\0', /* "flexstart.me", true */ 'f', 'l', 'e', 'x', 's', 't', 'a', 'r', 't', '.', 'm', 'e', '\0', /* "flightschoolbooking.com", true */ 'f', 'l', 'i', 'g', 'h', 't', 's', 'c', 'h', 'o', 'o', 'l', 'b', 'o', 'o', 'k', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "flightschoolcandidates.gov", true */ 'f', 'l', 'i', 'g', 'h', 't', 's', 'c', 'h', 'o', 'o', 'l', 'c', 'a', 'n', 'd', 'i', 'd', 'a', 't', 'e', 's', '.', 'g', 'o', 'v', '\0', /* "fling.dating", true */ 'f', 'l', 'i', 'n', 'g', '.', 'd', 'a', 't', 'i', 'n', 'g', '\0', /* "flipagram.com", false */ 'f', 'l', 'i', 'p', 'a', 'g', 'r', 'a', 'm', '.', 'c', 'o', 'm', '\0', /* "flipkey.com", true */ 'f', 'l', 'i', 'p', 'k', 'e', 'y', '.', 'c', 'o', 'm', '\0', @@ -4144,38 +4123,37 @@ static const char kSTSHostTable[] = { /* "floriankeller.de", true */ 'f', 'l', 'o', 'r', 'i', 'a', 'n', 'k', 'e', 'l', 'l', 'e', 'r', '.', 'd', 'e', '\0', /* "florianmitrea.uk", true */ 'f', 'l', 'o', 'r', 'i', 'a', 'n', 'm', 'i', 't', 'r', 'e', 'a', '.', 'u', 'k', '\0', /* "floridafieros.org", true */ 'f', 'l', 'o', 'r', 'i', 'd', 'a', 'f', 'i', 'e', 'r', 'o', 's', '.', 'o', 'r', 'g', '\0', /* "florismoo.nl", true */ 'f', 'l', 'o', 'r', 'i', 's', 'm', 'o', 'o', '.', 'n', 'l', '\0', /* "florismouwen.com", true */ 'f', 'l', 'o', 'r', 'i', 's', 'm', 'o', 'u', 'w', 'e', 'n', '.', 'c', 'o', 'm', '\0', /* "florisvdk.net", true */ 'f', 'l', 'o', 'r', 'i', 's', 'v', 'd', 'k', '.', 'n', 'e', 't', '\0', /* "floskelwolke.de", true */ 'f', 'l', 'o', 's', 'k', 'e', 'l', 'w', 'o', 'l', 'k', 'e', '.', 'd', 'e', '\0', /* "flow.pe", true */ 'f', 'l', 'o', 'w', '.', 'p', 'e', '\0', - /* "flow.su", true */ 'f', 'l', 'o', 'w', '.', 's', 'u', '\0', /* "floweslawncare.com", true */ 'f', 'l', 'o', 'w', 'e', 's', 'l', 'a', 'w', 'n', 'c', 'a', 'r', 'e', '.', 'c', 'o', 'm', '\0', /* "flowlo.me", true */ 'f', 'l', 'o', 'w', 'l', 'o', '.', 'm', 'e', '\0', /* "flox.io", true */ 'f', 'l', 'o', 'x', '.', 'i', 'o', '\0', /* "flra.gov", true */ 'f', 'l', 'r', 'a', '.', 'g', 'o', 'v', '\0', /* "fluidojobs.com", true */ 'f', 'l', 'u', 'i', 'd', 'o', 'j', 'o', 'b', 's', '.', 'c', 'o', 'm', '\0', /* "flukethoughts.com", true */ 'f', 'l', 'u', 'k', 'e', 't', 'h', 'o', 'u', 'g', 'h', 't', 's', '.', 'c', 'o', 'm', '\0', /* "fluxent.de", false */ 'f', 'l', 'u', 'x', 'e', 'n', 't', '.', 'd', 'e', '\0', /* "fluxfingers.net", true */ 'f', 'l', 'u', 'x', 'f', 'i', 'n', 'g', 'e', 'r', 's', '.', 'n', 'e', 't', '\0', /* "fluxforge.com", true */ 'f', 'l', 'u', 'x', 'f', 'o', 'r', 'g', 'e', '.', 'c', 'o', 'm', '\0', /* "fly.moe", true */ 'f', 'l', 'y', '.', 'm', 'o', 'e', '\0', /* "flynn.io", true */ 'f', 'l', 'y', 'n', 'n', '.', 'i', 'o', '\0', /* "flyserver.co.il", true */ 'f', 'l', 'y', 's', 'e', 'r', 'v', 'e', 'r', '.', 'c', 'o', '.', 'i', 'l', '\0', - /* "flyss.net", true */ 'f', 'l', 'y', 's', 's', '.', 'n', 'e', 't', '\0', /* "fm.ie", true */ 'f', 'm', '.', 'i', 'e', '\0', /* "fmarchal.fr", true */ 'f', 'm', 'a', 'r', 'c', 'h', 'a', 'l', '.', 'f', 'r', '\0', /* "fnb-griffinonline.com", true */ 'f', 'n', 'b', '-', 'g', 'r', 'i', 'f', 'f', 'i', 'n', 'o', 'n', 'l', 'i', 'n', 'e', '.', 'c', 'o', 'm', '\0', /* "fniephaus.com", true */ 'f', 'n', 'i', 'e', 'p', 'h', 'a', 'u', 's', '.', 'c', 'o', 'm', '\0', /* "fnordserver.eu", true */ 'f', 'n', 'o', 'r', 'd', 's', 'e', 'r', 'v', 'e', 'r', '.', 'e', 'u', '\0', /* "fnzc.co.nz", true */ 'f', 'n', 'z', 'c', '.', 'c', 'o', '.', 'n', 'z', '\0', /* "fobc-usa.org", true */ 'f', 'o', 'b', 'c', '-', 'u', 's', 'a', '.', 'o', 'r', 'g', '\0', /* "focalforest.com", true */ 'f', 'o', 'c', 'a', 'l', 'f', 'o', 'r', 'e', 's', 't', '.', 'c', 'o', 'm', '\0', + /* "focusmark.jp", false */ 'f', 'o', 'c', 'u', 's', 'm', 'a', 'r', 'k', '.', 'j', 'p', '\0', /* "fokkusu.fi", true */ 'f', 'o', 'k', 'k', 'u', 's', 'u', '.', 'f', 'i', '\0', /* "folv.es", true */ 'f', 'o', 'l', 'v', '.', 'e', 's', '\0', /* "fondanastasia.ru", true */ 'f', 'o', 'n', 'd', 'a', 'n', 'a', 's', 't', 'a', 's', 'i', 'a', '.', 'r', 'u', '\0', /* "fondy.eu", true */ 'f', 'o', 'n', 'd', 'y', '.', 'e', 'u', '\0', /* "fonga.ch", true */ 'f', 'o', 'n', 'g', 'a', '.', 'c', 'h', '\0', /* "font-converter.net", true */ 'f', 'o', 'n', 't', '-', 'c', 'o', 'n', 'v', 'e', 'r', 't', 'e', 'r', '.', 'n', 'e', 't', '\0', /* "fontein.de", true */ 'f', 'o', 'n', 't', 'e', 'i', 'n', '.', 'd', 'e', '\0', /* "fontlibrary.org", true */ 'f', 'o', 'n', 't', 'l', 'i', 'b', 'r', 'a', 'r', 'y', '.', 'o', 'r', 'g', '\0', @@ -4217,17 +4195,16 @@ static const char kSTSHostTable[] = { /* "foto-janvanaefst.nl", true */ 'f', 'o', 't', 'o', '-', 'j', 'a', 'n', 'v', 'a', 'n', 'a', 'e', 'f', 's', 't', '.', 'n', 'l', '\0', /* "foto4.cz", true */ 'f', 'o', 't', 'o', '4', '.', 'c', 'z', '\0', /* "fotocerita.net", false */ 'f', 'o', 't', 'o', 'c', 'e', 'r', 'i', 't', 'a', '.', 'n', 'e', 't', '\0', /* "fotofaerie.net", true */ 'f', 'o', 't', 'o', 'f', 'a', 'e', 'r', 'i', 'e', '.', 'n', 'e', 't', '\0', /* "fotografiadellalucerossa.com", true */ 'f', 'o', 't', 'o', 'g', 'r', 'a', 'f', 'i', 'a', 'd', 'e', 'l', 'l', 'a', 'l', 'u', 'c', 'e', 'r', 'o', 's', 's', 'a', '.', 'c', 'o', 'm', '\0', /* "fotostudio-schweiz.ch", true */ 'f', 'o', 't', 'o', 's', 't', 'u', 'd', 'i', 'o', '-', 's', 'c', 'h', 'w', 'e', 'i', 'z', '.', 'c', 'h', '\0', /* "fotowettbewerb.co", true */ 'f', 'o', 't', 'o', 'w', 'e', 't', 't', 'b', 'e', 'w', 'e', 'r', 'b', '.', 'c', 'o', '\0', /* "fotowolfy.com", true */ 'f', 'o', 't', 'o', 'w', 'o', 'l', 'f', 'y', '.', 'c', 'o', 'm', '\0', - /* "fourchin.net", true */ 'f', 'o', 'u', 'r', 'c', 'h', 'i', 'n', '.', 'n', 'e', 't', '\0', /* "foxbnc.co.uk", true */ 'f', 'o', 'x', 'b', 'n', 'c', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "foxdev.co", true */ 'f', 'o', 'x', 'd', 'e', 'v', '.', 'c', 'o', '\0', /* "foxley-farm.co.uk", true */ 'f', 'o', 'x', 'l', 'e', 'y', '-', 'f', 'a', 'r', 'm', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "foxley-seeds.co.uk", true */ 'f', 'o', 'x', 'l', 'e', 'y', '-', 's', 'e', 'e', 'd', 's', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "foxleyseeds.co.uk", true */ 'f', 'o', 'x', 'l', 'e', 'y', 's', 'e', 'e', 'd', 's', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "fpy.cz", true */ 'f', 'p', 'y', '.', 'c', 'z', '\0', /* "fr.search.yahoo.com", false */ 'f', 'r', '.', 's', 'e', 'a', 'r', 'c', 'h', '.', 'y', 'a', 'h', 'o', 'o', '.', 'c', 'o', 'm', '\0', /* "frack.nl", true */ 'f', 'r', 'a', 'c', 'k', '.', 'n', 'l', '\0', @@ -4414,17 +4391,16 @@ static const char kSTSHostTable[] = { /* "gambitcloud.net", true */ 'g', 'a', 'm', 'b', 'i', 't', 'c', 'l', 'o', 'u', 'd', '.', 'n', 'e', 't', '\0', /* "gambitnash.co.uk", true */ 'g', 'a', 'm', 'b', 'i', 't', 'n', 'a', 's', 'h', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "gambitnash.com", true */ 'g', 'a', 'm', 'b', 'i', 't', 'n', 'a', 's', 'h', '.', 'c', 'o', 'm', '\0', /* "gambitprint.com", true */ 'g', 'a', 'm', 'b', 'i', 't', 'p', 'r', 'i', 'n', 't', '.', 'c', 'o', 'm', '\0', /* "game-files.net", true */ 'g', 'a', 'm', 'e', '-', 'f', 'i', 'l', 'e', 's', '.', 'n', 'e', 't', '\0', /* "game-gentle.com", true */ 'g', 'a', 'm', 'e', '-', 'g', 'e', 'n', 't', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "game.yt", true */ 'g', 'a', 'm', 'e', '.', 'y', 't', '\0', /* "game7.de", true */ 'g', 'a', 'm', 'e', '7', '.', 'd', 'e', '\0', - /* "gamechasm.com", true */ 'g', 'a', 'm', 'e', 'c', 'h', 'a', 's', 'm', '.', 'c', 'o', 'm', '\0', /* "gamecollector.be", true */ 'g', 'a', 'm', 'e', 'c', 'o', 'l', 'l', 'e', 'c', 't', 'o', 'r', '.', 'b', 'e', '\0', /* "gamedevelopers.pl", true */ 'g', 'a', 'm', 'e', 'd', 'e', 'v', 'e', 'l', 'o', 'p', 'e', 'r', 's', '.', 'p', 'l', '\0', /* "gamegix.com", true */ 'g', 'a', 'm', 'e', 'g', 'i', 'x', '.', 'c', 'o', 'm', '\0', /* "gameguardian.net", true */ 'g', 'a', 'm', 'e', 'g', 'u', 'a', 'r', 'd', 'i', 'a', 'n', '.', 'n', 'e', 't', '\0', /* "gamehacks.me", true */ 'g', 'a', 'm', 'e', 'h', 'a', 'c', 'k', 's', '.', 'm', 'e', '\0', /* "gameisbest.jp", true */ 'g', 'a', 'm', 'e', 'i', 's', 'b', 'e', 's', 't', '.', 'j', 'p', '\0', /* "gameofbay.org", true */ 'g', 'a', 'm', 'e', 'o', 'f', 'b', 'a', 'y', '.', 'o', 'r', 'g', '\0', /* "gamepad.com.br", true */ 'g', 'a', 'm', 'e', 'p', 'a', 'd', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', @@ -4436,17 +4412,16 @@ static const char kSTSHostTable[] = { /* "gamercredo.net", true */ 'g', 'a', 'm', 'e', 'r', 'c', 'r', 'e', 'd', 'o', '.', 'n', 'e', 't', '\0', /* "gamers-life.fr", true */ 'g', 'a', 'm', 'e', 'r', 's', '-', 'l', 'i', 'f', 'e', '.', 'f', 'r', '\0', /* "gameserver-sponsor.de", true */ 'g', 'a', 'm', 'e', 's', 'e', 'r', 'v', 'e', 'r', '-', 's', 'p', 'o', 'n', 's', 'o', 'r', '.', 'd', 'e', '\0', /* "gamesurferapp.com", true */ 'g', 'a', 'm', 'e', 's', 'u', 'r', 'f', 'e', 'r', 'a', 'p', 'p', '.', 'c', 'o', 'm', '\0', /* "gamingreinvented.com", true */ 'g', 'a', 'm', 'i', 'n', 'g', 'r', 'e', 'i', 'n', 'v', 'e', 'n', 't', 'e', 'd', '.', 'c', 'o', 'm', '\0', /* "gamingzoneservers.com", true */ 'g', 'a', 'm', 'i', 'n', 'g', 'z', 'o', 'n', 'e', 's', 'e', 'r', 'v', 'e', 'r', 's', '.', 'c', 'o', 'm', '\0', /* "gamishou.fr", true */ 'g', 'a', 'm', 'i', 's', 'h', 'o', 'u', '.', 'f', 'r', '\0', /* "gamoloco.com", true */ 'g', 'a', 'm', 'o', 'l', 'o', 'c', 'o', '.', 'c', 'o', 'm', '\0', - /* "gampenhof.de", true */ 'g', 'a', 'm', 'p', 'e', 'n', 'h', 'o', 'f', '.', 'd', 'e', '\0', /* "gancedo.com.es", true */ 'g', 'a', 'n', 'c', 'e', 'd', 'o', '.', 'c', 'o', 'm', '.', 'e', 's', '\0', /* "gapdirect.com", true */ 'g', 'a', 'p', 'd', 'i', 'r', 'e', 'c', 't', '.', 'c', 'o', 'm', '\0', /* "gar-nich.net", true */ 'g', 'a', 'r', '-', 'n', 'i', 'c', 'h', '.', 'n', 'e', 't', '\0', /* "garagegoossens.be", true */ 'g', 'a', 'r', 'a', 'g', 'e', 'g', 'o', 'o', 's', 's', 'e', 'n', 's', '.', 'b', 'e', '\0', /* "garantieabschluss.de", false */ 'g', 'a', 'r', 'a', 'n', 't', 'i', 'e', 'a', 'b', 's', 'c', 'h', 'l', 'u', 's', 's', '.', 'd', 'e', '\0', /* "garbage-juice.com", true */ 'g', 'a', 'r', 'b', 'a', 'g', 'e', '-', 'j', 'u', 'i', 'c', 'e', '.', 'c', 'o', 'm', '\0', /* "garciamartin.me", true */ 'g', 'a', 'r', 'c', 'i', 'a', 'm', 'a', 'r', 't', 'i', 'n', '.', 'm', 'e', '\0', /* "garden-life.org", true */ 'g', 'a', 'r', 'd', 'e', 'n', '-', 'l', 'i', 'f', 'e', '.', 'o', 'r', 'g', '\0', @@ -4475,20 +4450,18 @@ static const char kSTSHostTable[] = { /* "gdutnic.com", true */ 'g', 'd', 'u', 't', 'n', 'i', 'c', '.', 'c', 'o', 'm', '\0', /* "gdv.me", true */ 'g', 'd', 'v', '.', 'm', 'e', '\0', /* "ge1.me", false */ 'g', 'e', '1', '.', 'm', 'e', '\0', /* "ge3k.net", false */ 'g', 'e', '3', 'k', '.', 'n', 'e', 't', '\0', /* "gearset.com", true */ 'g', 'e', 'a', 'r', 's', 'e', 't', '.', 'c', 'o', 'm', '\0', /* "geblitzt.de", true */ 'g', 'e', 'b', 'l', 'i', 't', 'z', 't', '.', 'd', 'e', '\0', /* "gecem.org", true */ 'g', 'e', 'c', 'e', 'm', '.', 'o', 'r', 'g', '\0', /* "gechr.io", true */ 'g', 'e', 'c', 'h', 'r', '.', 'i', 'o', '\0', - /* "gedankenbude.info", true */ 'g', 'e', 'd', 'a', 'n', 'k', 'e', 'n', 'b', 'u', 'd', 'e', '.', 'i', 'n', 'f', 'o', '\0', /* "geder.at", true */ 'g', 'e', 'd', 'e', 'r', '.', 'a', 't', '\0', /* "gee.is", true */ 'g', 'e', 'e', '.', 'i', 's', '\0', - /* "geek-hub.de", true */ 'g', 'e', 'e', 'k', '-', 'h', 'u', 'b', '.', 'd', 'e', '\0', /* "geek.com.tw", true */ 'g', 'e', 'e', 'k', '.', 'c', 'o', 'm', '.', 't', 'w', '\0', /* "geek.tw", true */ 'g', 'e', 'e', 'k', '.', 't', 'w', '\0', /* "geekabit.nl", true */ 'g', 'e', 'e', 'k', 'a', 'b', 'i', 't', '.', 'n', 'l', '\0', /* "geekandi.com", true */ 'g', 'e', 'e', 'k', 'a', 'n', 'd', 'i', '.', 'c', 'o', 'm', '\0', /* "geekariom.com", true */ 'g', 'e', 'e', 'k', 'a', 'r', 'i', 'o', 'm', '.', 'c', 'o', 'm', '\0', /* "geekbundle.org", true */ 'g', 'e', 'e', 'k', 'b', 'u', 'n', 'd', 'l', 'e', '.', 'o', 'r', 'g', '\0', /* "geeklair.net", true */ 'g', 'e', 'e', 'k', 'l', 'a', 'i', 'r', '.', 'n', 'e', 't', '\0', /* "geeknik.com", true */ 'g', 'e', 'e', 'k', 'n', 'i', 'k', '.', 'c', 'o', 'm', '\0', @@ -4604,17 +4577,16 @@ static const char kSTSHostTable[] = { /* "giftsn.com.sg", false */ 'g', 'i', 'f', 't', 's', 'n', '.', 'c', 'o', 'm', '.', 's', 'g', '\0', /* "gifzilla.net", false */ 'g', 'i', 'f', 'z', 'i', 'l', 'l', 'a', '.', 'n', 'e', 't', '\0', /* "gig.ru", false */ 'g', 'i', 'g', '.', 'r', 'u', '\0', /* "giga.nl", true */ 'g', 'i', 'g', 'a', '.', 'n', 'l', '\0', /* "gigacog.com", true */ 'g', 'i', 'g', 'a', 'c', 'o', 'g', '.', 'c', 'o', 'm', '\0', /* "gigawa.lt", true */ 'g', 'i', 'g', 'a', 'w', 'a', '.', 'l', 't', '\0', /* "gijsbertus.com", true */ 'g', 'i', 'j', 's', 'b', 'e', 'r', 't', 'u', 's', '.', 'c', 'o', 'm', '\0', /* "gilcloud.com", true */ 'g', 'i', 'l', 'c', 'l', 'o', 'u', 'd', '.', 'c', 'o', 'm', '\0', - /* "gilgaz.com", true */ 'g', 'i', 'l', 'g', 'a', 'z', '.', 'c', 'o', 'm', '\0', /* "gillet-cros.fr", true */ 'g', 'i', 'l', 'l', 'e', 't', '-', 'c', 'r', 'o', 's', '.', 'f', 'r', '\0', /* "gillmanandsoame.co.uk", true */ 'g', 'i', 'l', 'l', 'm', 'a', 'n', 'a', 'n', 'd', 's', 'o', 'a', 'm', 'e', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "ginja.co.th", true */ 'g', 'i', 'n', 'j', 'a', '.', 'c', 'o', '.', 't', 'h', '\0', /* "ginkel.com", true */ 'g', 'i', 'n', 'k', 'e', 'l', '.', 'c', 'o', 'm', '\0', /* "gintenreiter-photography.com", true */ 'g', 'i', 'n', 't', 'e', 'n', 'r', 'e', 'i', 't', 'e', 'r', '-', 'p', 'h', 'o', 't', 'o', 'g', 'r', 'a', 'p', 'h', 'y', '.', 'c', 'o', 'm', '\0', /* "ginzadelunch.jp", true */ 'g', 'i', 'n', 'z', 'a', 'd', 'e', 'l', 'u', 'n', 'c', 'h', '.', 'j', 'p', '\0', /* "giogadesign.com", true */ 'g', 'i', 'o', 'g', 'a', 'd', 'e', 's', 'i', 'g', 'n', '.', 'c', 'o', 'm', '\0', /* "gipsic.com", true */ 'g', 'i', 'p', 's', 'i', 'c', '.', 'c', 'o', 'm', '\0', @@ -4645,22 +4617,21 @@ static const char kSTSHostTable[] = { /* "glitchsys.com", true */ 'g', 'l', 'i', 't', 'c', 'h', 's', 'y', 's', '.', 'c', 'o', 'm', '\0', /* "glittersjabloon.nl", true */ 'g', 'l', 'i', 't', 't', 'e', 'r', 's', 'j', 'a', 'b', 'l', 'o', 'o', 'n', '.', 'n', 'l', '\0', /* "glitzmirror.com", true */ 'g', 'l', 'i', 't', 'z', 'm', 'i', 'r', 'r', 'o', 'r', '.', 'c', 'o', 'm', '\0', /* "global-adult-webcams.com", true */ 'g', 'l', 'o', 'b', 'a', 'l', '-', 'a', 'd', 'u', 'l', 't', '-', 'w', 'e', 'b', 'c', 'a', 'm', 's', '.', 'c', 'o', 'm', '\0', /* "globalado.com", true */ 'g', 'l', 'o', 'b', 'a', 'l', 'a', 'd', 'o', '.', 'c', 'o', 'm', '\0', /* "globalcomix.com", true */ 'g', 'l', 'o', 'b', 'a', 'l', 'c', 'o', 'm', 'i', 'x', '.', 'c', 'o', 'm', '\0', /* "globalgivingtime.com", true */ 'g', 'l', 'o', 'b', 'a', 'l', 'g', 'i', 'v', 'i', 'n', 'g', 't', 'i', 'm', 'e', '.', 'c', 'o', 'm', '\0', /* "globalinstitutefortraining.org.au", true */ 'g', 'l', 'o', 'b', 'a', 'l', 'i', 'n', 's', 't', 'i', 't', 'u', 't', 'e', 'f', 'o', 'r', 't', 'r', 'a', 'i', 'n', 'i', 'n', 'g', '.', 'o', 'r', 'g', '.', 'a', 'u', '\0', - /* "globalmusic.ga", false */ 'g', 'l', 'o', 'b', 'a', 'l', 'm', 'u', 's', 'i', 'c', '.', 'g', 'a', '\0', /* "globalonetechnology.com", true */ 'g', 'l', 'o', 'b', 'a', 'l', 'o', 'n', 'e', 't', 'e', 'c', 'h', 'n', 'o', 'l', 'o', 'g', 'y', '.', 'c', 'o', 'm', '\0', /* "globalperspectivescanada.com", true */ 'g', 'l', 'o', 'b', 'a', 'l', 'p', 'e', 'r', 's', 'p', 'e', 'c', 't', 'i', 'v', 'e', 's', 'c', 'a', 'n', 'a', 'd', 'a', '.', 'c', 'o', 'm', '\0', /* "globalsites.nl", false */ 'g', 'l', 'o', 'b', 'a', 'l', 's', 'i', 't', 'e', 's', '.', 'n', 'l', '\0', /* "globuli-info.de", true */ 'g', 'l', 'o', 'b', 'u', 'l', 'i', '-', 'i', 'n', 'f', 'o', '.', 'd', 'e', '\0', - /* "glopoi.com", false */ 'g', 'l', 'o', 'p', 'o', 'i', '.', 'c', 'o', 'm', '\0', + /* "glopoi.com", true */ 'g', 'l', 'o', 'p', 'o', 'i', '.', 'c', 'o', 'm', '\0', /* "glossopnorthendafc.co.uk", true */ 'g', 'l', 'o', 's', 's', 'o', 'p', 'n', 'o', 'r', 't', 'h', 'e', 'n', 'd', 'a', 'f', 'c', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "glotter.com", true */ 'g', 'l', 'o', 't', 't', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "glubbforum.de", true */ 'g', 'l', 'u', 'b', 'b', 'f', 'o', 'r', 'u', 'm', '.', 'd', 'e', '\0', /* "glyph.ws", true */ 'g', 'l', 'y', 'p', 'h', '.', 'w', 's', '\0', /* "gmail.com", false */ 'g', 'm', 'a', 'i', 'l', '.', 'c', 'o', 'm', '\0', /* "gmbh-kiekin.de", true */ 'g', 'm', 'b', 'h', '-', 'k', 'i', 'e', 'k', 'i', 'n', '.', 'd', 'e', '\0', /* "gmcd.co", true */ 'g', 'm', 'c', 'd', '.', 'c', 'o', '\0', /* "gmdu.net", true */ 'g', 'm', 'd', 'u', '.', 'n', 'e', 't', '\0', @@ -4793,16 +4764,18 @@ static const char kSTSHostTable[] = { /* "greencircleplantnursery.net.au", true */ 'g', 'r', 'e', 'e', 'n', 'c', 'i', 'r', 'c', 'l', 'e', 'p', 'l', 'a', 'n', 't', 'n', 'u', 'r', 's', 'e', 'r', 'y', '.', 'n', 'e', 't', '.', 'a', 'u', '\0', /* "greenpeace-magazin.de", true */ 'g', 'r', 'e', 'e', 'n', 'p', 'e', 'a', 'c', 'e', '-', 'm', 'a', 'g', 'a', 'z', 'i', 'n', '.', 'd', 'e', '\0', /* "greenpeace.berlin", true */ 'g', 'r', 'e', 'e', 'n', 'p', 'e', 'a', 'c', 'e', '.', 'b', 'e', 'r', 'l', 'i', 'n', '\0', /* "greenroach.ru", true */ 'g', 'r', 'e', 'e', 'n', 'r', 'o', 'a', 'c', 'h', '.', 'r', 'u', '\0', /* "greensdictofslang.com", true */ 'g', 'r', 'e', 'e', 'n', 's', 'd', 'i', 'c', 't', 'o', 'f', 's', 'l', 'a', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "greensolid.biz", true */ 'g', 'r', 'e', 'e', 'n', 's', 'o', 'l', 'i', 'd', '.', 'b', 'i', 'z', '\0', /* "greenteamtwente.nl", true */ 'g', 'r', 'e', 'e', 'n', 't', 'e', 'a', 'm', 't', 'w', 'e', 'n', 't', 'e', '.', 'n', 'l', '\0', /* "greg.red", true */ 'g', 'r', 'e', 'g', '.', 'r', 'e', 'd', '\0', + /* "gregmilton.com", true */ 'g', 'r', 'e', 'g', 'm', 'i', 'l', 't', 'o', 'n', '.', 'c', 'o', 'm', '\0', + /* "gregmilton.org", true */ 'g', 'r', 'e', 'g', 'm', 'i', 'l', 't', 'o', 'n', '.', 'o', 'r', 'g', '\0', /* "gregorians.org", true */ 'g', 'r', 'e', 'g', 'o', 'r', 'i', 'a', 'n', 's', '.', 'o', 'r', 'g', '\0', /* "gregorywiest.com", true */ 'g', 'r', 'e', 'g', 'o', 'r', 'y', 'w', 'i', 'e', 's', 't', '.', 'c', 'o', 'm', '\0', /* "greiners.net", true */ 'g', 'r', 'e', 'i', 'n', 'e', 'r', 's', '.', 'n', 'e', 't', '\0', /* "gremots.com", true */ 'g', 'r', 'e', 'm', 'o', 't', 's', '.', 'c', 'o', 'm', '\0', /* "grepular.com", true */ 'g', 'r', 'e', 'p', 'u', 'l', 'a', 'r', '.', 'c', 'o', 'm', '\0', /* "gresak.io", true */ 'g', 'r', 'e', 's', 'a', 'k', '.', 'i', 'o', '\0', /* "gresb.com", true */ 'g', 'r', 'e', 's', 'b', '.', 'c', 'o', 'm', '\0', /* "gretchelizartistry.com", true */ 'g', 'r', 'e', 't', 'c', 'h', 'e', 'l', 'i', 'z', 'a', 'r', 't', 'i', 's', 't', 'r', 'y', '.', 'c', 'o', 'm', '\0', @@ -4841,17 +4814,16 @@ static const char kSTSHostTable[] = { /* "groth.xyz", true */ 'g', 'r', 'o', 't', 'h', '.', 'x', 'y', 'z', '\0', /* "groupebaillargeon.com", true */ 'g', 'r', 'o', 'u', 'p', 'e', 'b', 'a', 'i', 'l', 'l', 'a', 'r', 'g', 'e', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "groups.google.com", true */ 'g', 'r', 'o', 'u', 'p', 's', '.', 'g', 'o', 'o', 'g', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "grozip.com", true */ 'g', 'r', 'o', 'z', 'i', 'p', '.', 'c', 'o', 'm', '\0', /* "grsecurity.net", true */ 'g', 'r', 's', 'e', 'c', 'u', 'r', 'i', 't', 'y', '.', 'n', 'e', 't', '\0', /* "gruelang.org", true */ 'g', 'r', 'u', 'e', 'l', 'a', 'n', 'g', '.', 'o', 'r', 'g', '\0', /* "grunwasser.fr", true */ 'g', 'r', 'u', 'n', 'w', 'a', 's', 's', 'e', 'r', '.', 'f', 'r', '\0', /* "grusig-geil.ch", true */ 'g', 'r', 'u', 's', 'i', 'g', '-', 'g', 'e', 'i', 'l', '.', 'c', 'h', '\0', - /* "gryffin.ga", true */ 'g', 'r', 'y', 'f', 'f', 'i', 'n', '.', 'g', 'a', '\0', /* "gryffin.ml", true */ 'g', 'r', 'y', 'f', 'f', 'i', 'n', '.', 'm', 'l', '\0', /* "gryffin.tk", true */ 'g', 'r', 'y', 'f', 'f', 'i', 'n', '.', 't', 'k', '\0', /* "grytics.com", true */ 'g', 'r', 'y', 't', 'i', 'c', 's', '.', 'c', 'o', 'm', '\0', /* "gs-net.at", true */ 'g', 's', '-', 'n', 'e', 't', '.', 'a', 't', '\0', /* "gsimagebank.co.uk", true */ 'g', 's', 'i', 'm', 'a', 'g', 'e', 'b', 'a', 'n', 'k', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "gsnort.com", true */ 'g', 's', 'n', 'o', 'r', 't', '.', 'c', 'o', 'm', '\0', /* "gsrc.io", true */ 'g', 's', 'r', 'c', '.', 'i', 'o', '\0', /* "gta-arabs.com", true */ 'g', 't', 'a', '-', 'a', 'r', 'a', 'b', 's', '.', 'c', 'o', 'm', '\0', @@ -4875,29 +4847,29 @@ static const char kSTSHostTable[] = { /* "guidetoiceland.is", false */ 'g', 'u', 'i', 'd', 'e', 't', 'o', 'i', 'c', 'e', 'l', 'a', 'n', 'd', '.', 'i', 's', '\0', /* "guillaume-leduc.fr", true */ 'g', 'u', 'i', 'l', 'l', 'a', 'u', 'm', 'e', '-', 'l', 'e', 'd', 'u', 'c', '.', 'f', 'r', '\0', /* "guillaumeperrin.io", true */ 'g', 'u', 'i', 'l', 'l', 'a', 'u', 'm', 'e', 'p', 'e', 'r', 'r', 'i', 'n', '.', 'i', 'o', '\0', /* "guinea-pig.co", true */ 'g', 'u', 'i', 'n', 'e', 'a', '-', 'p', 'i', 'g', '.', 'c', 'o', '\0', /* "guineapigmustach.es", true */ 'g', 'u', 'i', 'n', 'e', 'a', 'p', 'i', 'g', 'm', 'u', 's', 't', 'a', 'c', 'h', '.', 'e', 's', '\0', /* "gulenbase.no", true */ 'g', 'u', 'l', 'e', 'n', 'b', 'a', 's', 'e', '.', 'n', 'o', '\0', /* "gulenet.com", true */ 'g', 'u', 'l', 'e', 'n', 'e', 't', '.', 'c', 'o', 'm', '\0', /* "gummibande.noip.me", true */ 'g', 'u', 'm', 'm', 'i', 'b', 'a', 'n', 'd', 'e', '.', 'n', 'o', 'i', 'p', '.', 'm', 'e', '\0', + /* "gunnaro.com", true */ 'g', 'u', 'n', 'n', 'a', 'r', 'o', '.', 'c', 'o', 'm', '\0', /* "guntbert.net", true */ 'g', 'u', 'n', 't', 'b', 'e', 'r', 't', '.', 'n', 'e', 't', '\0', /* "gunwatch.co.uk", true */ 'g', 'u', 'n', 'w', 'a', 't', 'c', 'h', '.', 'c', 'o', '.', 'u', 'k', '\0', + /* "guoqiang.info", true */ 'g', 'u', 'o', 'q', 'i', 'a', 'n', 'g', '.', 'i', 'n', 'f', 'o', '\0', /* "guphi.net", true */ 'g', 'u', 'p', 'h', 'i', '.', 'n', 'e', 't', '\0', /* "gurkan.in", true */ 'g', 'u', 'r', 'k', 'a', 'n', '.', 'i', 'n', '\0', /* "gurmel.ru", true */ 'g', 'u', 'r', 'm', 'e', 'l', '.', 'r', 'u', '\0', /* "gurochan.ch", true */ 'g', 'u', 'r', 'o', 'c', 'h', 'a', 'n', '.', 'c', 'h', '\0', /* "gurom.lv", true */ 'g', 'u', 'r', 'o', 'm', '.', 'l', 'v', '\0', /* "guru-naradi.cz", true */ 'g', 'u', 'r', 'u', '-', 'n', 'a', 'r', 'a', 'd', 'i', '.', 'c', 'z', '\0', /* "gurueffect.com", true */ 'g', 'u', 'r', 'u', 'e', 'f', 'f', 'e', 'c', 't', '.', 'c', 'o', 'm', '\0', /* "guscaplan.me", true */ 'g', 'u', 's', 'c', 'a', 'p', 'l', 'a', 'n', '.', 'm', 'e', '\0', - /* "gussi.is", true */ 'g', 'u', 's', 's', 'i', '.', 'i', 's', '\0', /* "guthabenkarten-billiger.de", true */ 'g', 'u', 't', 'h', 'a', 'b', 'e', 'n', 'k', 'a', 'r', 't', 'e', 'n', '-', 'b', 'i', 'l', 'l', 'i', 'g', 'e', 'r', '.', 'd', 'e', '\0', - /* "guts.me", true */ 'g', 'u', 't', 's', '.', 'm', 'e', '\0', /* "guvernalternativa.ro", true */ 'g', 'u', 'v', 'e', 'r', 'n', 'a', 'l', 't', 'e', 'r', 'n', 'a', 't', 'i', 'v', 'a', '.', 'r', 'o', '\0', /* "gv-neumann.de", true */ 'g', 'v', '-', 'n', 'e', 'u', 'm', 'a', 'n', 'n', '.', 'd', 'e', '\0', /* "gvatas.in", true */ 'g', 'v', 'a', 't', 'a', 's', '.', 'i', 'n', '\0', /* "gveh.de", true */ 'g', 'v', 'e', 'h', '.', 'd', 'e', '\0', /* "gvt2.com", true */ 'g', 'v', 't', '2', '.', 'c', 'o', 'm', '\0', /* "gvt3.com", true */ 'g', 'v', 't', '3', '.', 'c', 'o', 'm', '\0', /* "gw2reload.eu", true */ 'g', 'w', '2', 'r', 'e', 'l', 'o', 'a', 'd', '.', 'e', 'u', '\0', /* "gw2treasures.com", true */ 'g', 'w', '2', 't', 'r', 'e', 'a', 's', 'u', 'r', 'e', 's', '.', 'c', 'o', 'm', '\0', @@ -4912,16 +4884,17 @@ static const char kSTSHostTable[] = { /* "h-og.com", true */ 'h', '-', 'o', 'g', '.', 'c', 'o', 'm', '\0', /* "h11.io", true */ 'h', '1', '1', '.', 'i', 'o', '\0', /* "h11.moe", true */ 'h', '1', '1', '.', 'm', 'o', 'e', '\0', /* "h3artbl33d.nl", true */ 'h', '3', 'a', 'r', 't', 'b', 'l', '3', '3', 'd', '.', 'n', 'l', '\0', /* "h404bi.com", true */ 'h', '4', '0', '4', 'b', 'i', '.', 'c', 'o', 'm', '\0', /* "haarkliniek.com", true */ 'h', 'a', 'a', 'r', 'k', 'l', 'i', 'n', 'i', 'e', 'k', '.', 'c', 'o', 'm', '\0', /* "haavard.me", true */ 'h', 'a', 'a', 'v', 'a', 'r', 'd', '.', 'm', 'e', '\0', /* "habarisoft.com", true */ 'h', 'a', 'b', 'a', 'r', 'i', 's', 'o', 'f', 't', '.', 'c', 'o', 'm', '\0', + /* "habbo.life", true */ 'h', 'a', 'b', 'b', 'o', '.', 'l', 'i', 'f', 'e', '\0', /* "habbotalk.nl", true */ 'h', 'a', 'b', 'b', 'o', 't', 'a', 'l', 'k', '.', 'n', 'l', '\0', /* "hachre.de", false */ 'h', 'a', 'c', 'h', 'r', 'e', '.', 'd', 'e', '\0', /* "hack.cz", true */ 'h', 'a', 'c', 'k', '.', 'c', 'z', '\0', /* "hackcraft.net", true */ 'h', 'a', 'c', 'k', 'c', 'r', 'a', 'f', 't', '.', 'n', 'e', 't', '\0', /* "hackenkunjeleren.nl", true */ 'h', 'a', 'c', 'k', 'e', 'n', 'k', 'u', 'n', 'j', 'e', 'l', 'e', 'r', 'e', 'n', '.', 'n', 'l', '\0', /* "hackenturet.dk", true */ 'h', 'a', 'c', 'k', 'e', 'n', 't', 'u', 'r', 'e', 't', '.', 'd', 'k', '\0', /* "hacker.parts", true */ 'h', 'a', 'c', 'k', 'e', 'r', '.', 'p', 'a', 'r', 't', 's', '\0', /* "hacker1.com", true */ 'h', 'a', 'c', 'k', 'e', 'r', '1', '.', 'c', 'o', 'm', '\0', @@ -5018,16 +4991,17 @@ static const char kSTSHostTable[] = { /* "hauntedfishtank.com", true */ 'h', 'a', 'u', 'n', 't', 'e', 'd', 'f', 'i', 's', 'h', 't', 'a', 'n', 'k', '.', 'c', 'o', 'm', '\0', /* "hausarzt-stader-str.de", true */ 'h', 'a', 'u', 's', 'a', 'r', 'z', 't', '-', 's', 't', 'a', 'd', 'e', 'r', '-', 's', 't', 'r', '.', 'd', 'e', '\0', /* "hausverbrauch.de", true */ 'h', 'a', 'u', 's', 'v', 'e', 'r', 'b', 'r', 'a', 'u', 'c', 'h', '.', 'd', 'e', '\0', /* "hautarztzentrum.ch", true */ 'h', 'a', 'u', 't', 'a', 'r', 'z', 't', 'z', 'e', 'n', 't', 'r', 'u', 'm', '.', 'c', 'h', '\0', /* "haveibeenpwned.com", true */ 'h', 'a', 'v', 'e', 'i', 'b', 'e', 'e', 'n', 'p', 'w', 'n', 'e', 'd', '.', 'c', 'o', 'm', '\0', /* "havellab.de", true */ 'h', 'a', 'v', 'e', 'l', 'l', 'a', 'b', '.', 'd', 'e', '\0', /* "havelland-obstler.de", true */ 'h', 'a', 'v', 'e', 'l', 'l', 'a', 'n', 'd', '-', 'o', 'b', 's', 't', 'l', 'e', 'r', '.', 'd', 'e', '\0', /* "hawkeyeinsight.com", true */ 'h', 'a', 'w', 'k', 'e', 'y', 'e', 'i', 'n', 's', 'i', 'g', 'h', 't', '.', 'c', 'o', 'm', '\0', + /* "hawksguild.com", true */ 'h', 'a', 'w', 'k', 's', 'g', 'u', 'i', 'l', 'd', '.', 'c', 'o', 'm', '\0', /* "hawthornharpist.com", true */ 'h', 'a', 'w', 't', 'h', 'o', 'r', 'n', 'h', 'a', 'r', 'p', 'i', 's', 't', '.', 'c', 'o', 'm', '\0', /* "haxo.nl", false */ 'h', 'a', 'x', 'o', '.', 'n', 'l', '\0', /* "haxoff.com", true */ 'h', 'a', 'x', 'o', 'f', 'f', '.', 'c', 'o', 'm', '\0', /* "hboeck.de", true */ 'h', 'b', 'o', 'e', 'c', 'k', '.', 'd', 'e', '\0', /* "hbpowell.com", true */ 'h', 'b', 'p', 'o', 'w', 'e', 'l', 'l', '.', 'c', 'o', 'm', '\0', /* "hcfhomelottery.ca", true */ 'h', 'c', 'f', 'h', 'o', 'm', 'e', 'l', 'o', 't', 't', 'e', 'r', 'y', '.', 'c', 'a', '\0', /* "hcs-company.com", true */ 'h', 'c', 's', '-', 'c', 'o', 'm', 'p', 'a', 'n', 'y', '.', 'c', 'o', 'm', '\0', /* "hcs-company.nl", true */ 'h', 'c', 's', '-', 'c', 'o', 'm', 'p', 'a', 'n', 'y', '.', 'n', 'l', '\0', @@ -5039,16 +5013,17 @@ static const char kSTSHostTable[] = { /* "hdfgroup.org", true */ 'h', 'd', 'f', 'g', 'r', 'o', 'u', 'p', '.', 'o', 'r', 'g', '\0', /* "hdhoang.space", true */ 'h', 'd', 'h', 'o', 'a', 'n', 'g', '.', 's', 'p', 'a', 'c', 'e', '\0', /* "hdrboundless.com", true */ 'h', 'd', 'r', 'b', 'o', 'u', 'n', 'd', 'l', 'e', 's', 's', '.', 'c', 'o', 'm', '\0', /* "hdrsource.com", true */ 'h', 'd', 'r', 's', 'o', 'u', 'r', 'c', 'e', '.', 'c', 'o', 'm', '\0', /* "hdrtranscon.com", true */ 'h', 'd', 'r', 't', 'r', 'a', 'n', 's', 'c', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "hds-lan.de", true */ 'h', 'd', 's', '-', 'l', 'a', 'n', '.', 'd', 'e', '\0', /* "hdsmigrationtool.com", true */ 'h', 'd', 's', 'm', 'i', 'g', 'r', 'a', 't', 'i', 'o', 'n', 't', 'o', 'o', 'l', '.', 'c', 'o', 'm', '\0', /* "hdy.nz", true */ 'h', 'd', 'y', '.', 'n', 'z', '\0', + /* "head.org", true */ 'h', 'e', 'a', 'd', '.', 'o', 'r', 'g', '\0', /* "healthcare.gov", false */ 'h', 'e', 'a', 'l', 't', 'h', 'c', 'a', 'r', 'e', '.', 'g', 'o', 'v', '\0', /* "healtheffectsofasbestos.com", true */ 'h', 'e', 'a', 'l', 't', 'h', 'e', 'f', 'f', 'e', 'c', 't', 's', 'o', 'f', 'a', 's', 'b', 'e', 's', 't', 'o', 's', '.', 'c', 'o', 'm', '\0', /* "healthfoam.com", true */ 'h', 'e', 'a', 'l', 't', 'h', 'f', 'o', 'a', 'm', '.', 'c', 'o', 'm', '\0', /* "healthiercompany.com", true */ 'h', 'e', 'a', 'l', 't', 'h', 'i', 'e', 'r', 'c', 'o', 'm', 'p', 'a', 'n', 'y', '.', 'c', 'o', 'm', '\0', /* "healthjoy.com", true */ 'h', 'e', 'a', 'l', 't', 'h', 'j', 'o', 'y', '.', 'c', 'o', 'm', '\0', /* "heartmdinstitute.com", true */ 'h', 'e', 'a', 'r', 't', 'm', 'd', 'i', 'n', 's', 't', 'i', 't', 'u', 't', 'e', '.', 'c', 'o', 'm', '\0', /* "heartsucker.com", true */ 'h', 'e', 'a', 'r', 't', 's', 'u', 'c', 'k', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "hearty.ga", true */ 'h', 'e', 'a', 'r', 't', 'y', '.', 'g', 'a', '\0', @@ -5067,17 +5042,16 @@ static const char kSTSHostTable[] = { /* "hegen.com.pl", true */ 'h', 'e', 'g', 'e', 'n', '.', 'c', 'o', 'm', '.', 'p', 'l', '\0', /* "hegen.sk", true */ 'h', 'e', 'g', 'e', 'n', '.', 's', 'k', '\0', /* "hegenshop.de", true */ 'h', 'e', 'g', 'e', 'n', 's', 'h', 'o', 'p', '.', 'd', 'e', '\0', /* "heh.ee", true */ 'h', 'e', 'h', '.', 'e', 'e', '\0', /* "heha.co", false */ 'h', 'e', 'h', 'a', '.', 'c', 'o', '\0', /* "heid.ws", true */ 'h', 'e', 'i', 'd', '.', 'w', 's', '\0', /* "heidilein.info", true */ 'h', 'e', 'i', 'd', 'i', 'l', 'e', 'i', 'n', '.', 'i', 'n', 'f', 'o', '\0', /* "heijblok.com", true */ 'h', 'e', 'i', 'j', 'b', 'l', 'o', 'k', '.', 'c', 'o', 'm', '\0', - /* "heiland.io", true */ 'h', 'e', 'i', 'l', 'a', 'n', 'd', '.', 'i', 'o', '\0', /* "heinpost.nl", true */ 'h', 'e', 'i', 'n', 'p', 'o', 's', 't', '.', 'n', 'l', '\0', /* "heissluft-fritteuse.com", true */ 'h', 'e', 'i', 's', 's', 'l', 'u', 'f', 't', '-', 'f', 'r', 'i', 't', 't', 'e', 'u', 's', 'e', '.', 'c', 'o', 'm', '\0', /* "heitland-it.de", true */ 'h', 'e', 'i', 't', 'l', 'a', 'n', 'd', '-', 'i', 't', '.', 'd', 'e', '\0', /* "hejahanif.se", true */ 'h', 'e', 'j', 'a', 'h', 'a', 'n', 'i', 'f', '.', 's', 'e', '\0', /* "hejsupport.se", true */ 'h', 'e', 'j', 's', 'u', 'p', 'p', 'o', 'r', 't', '.', 's', 'e', '\0', /* "hele.cz", true */ 'h', 'e', 'l', 'e', '.', 'c', 'z', '\0', /* "helenkellersimulator.org", true */ 'h', 'e', 'l', 'e', 'n', 'k', 'e', 'l', 'l', 'e', 'r', 's', 'i', 'm', 'u', 'l', 'a', 't', 'o', 'r', '.', 'o', 'r', 'g', '\0', /* "helgakristoffer.com", true */ 'h', 'e', 'l', 'g', 'a', 'k', 'r', 'i', 's', 't', 'o', 'f', 'f', 'e', 'r', '.', 'c', 'o', 'm', '\0', @@ -5276,16 +5250,17 @@ static const char kSTSHostTable[] = { /* "hqhost.net", true */ 'h', 'q', 'h', 'o', 's', 't', '.', 'n', 'e', 't', '\0', /* "hrackydomino.cz", true */ 'h', 'r', 'a', 'c', 'k', 'y', 'd', 'o', 'm', 'i', 'n', 'o', '.', 'c', 'z', '\0', /* "hraesvelg.net", true */ 'h', 'r', 'a', 'e', 's', 'v', 'e', 'l', 'g', '.', 'n', 'e', 't', '\0', /* "hranicka.cz", true */ 'h', 'r', 'a', 'n', 'i', 'c', 'k', 'a', '.', 'c', 'z', '\0', /* "hrbatypes.cz", true */ 'h', 'r', 'b', 'a', 't', 'y', 'p', 'e', 's', '.', 'c', 'z', '\0', /* "hrfhomelottery.com", true */ 'h', 'r', 'f', 'h', 'o', 'm', 'e', 'l', 'o', 't', 't', 'e', 'r', 'y', '.', 'c', 'o', 'm', '\0', /* "hrobert.hu", true */ 'h', 'r', 'o', 'b', 'e', 'r', 't', '.', 'h', 'u', '\0', /* "hroschyk.cz", true */ 'h', 'r', 'o', 's', 'c', 'h', 'y', 'k', '.', 'c', 'z', '\0', + /* "hs-group.net", true */ 'h', 's', '-', 'g', 'r', 'o', 'u', 'p', '.', 'n', 'e', 't', '\0', /* "hscorp.de", true */ 'h', 's', 'c', 'o', 'r', 'p', '.', 'd', 'e', '\0', /* "hsivonen.com", true */ 'h', 's', 'i', 'v', 'o', 'n', 'e', 'n', '.', 'c', 'o', 'm', '\0', /* "hsivonen.fi", true */ 'h', 's', 'i', 'v', 'o', 'n', 'e', 'n', '.', 'f', 'i', '\0', /* "hsivonen.iki.fi", true */ 'h', 's', 'i', 'v', 'o', 'n', 'e', 'n', '.', 'i', 'k', 'i', '.', 'f', 'i', '\0', /* "hsmr.cc", true */ 'h', 's', 'm', 'r', '.', 'c', 'c', '\0', /* "hsr.gov", false */ 'h', 's', 'r', '.', 'g', 'o', 'v', '\0', /* "hsts-preload-test.xyz", true */ 'h', 's', 't', 's', '-', 'p', 'r', 'e', 'l', 'o', 'a', 'd', '-', 't', 'e', 's', 't', '.', 'x', 'y', 'z', '\0', /* "hstsfail.appspot.com", true */ 'h', 's', 't', 's', 'f', 'a', 'i', 'l', '.', 'a', 'p', 'p', 's', 'p', 'o', 't', '.', 'c', 'o', 'm', '\0', @@ -5347,16 +5322,17 @@ static const char kSTSHostTable[] = { /* "i--b.com", true */ 'i', '-', '-', 'b', '.', 'c', 'o', 'm', '\0', /* "i-stats.net", true */ 'i', '-', 's', 't', 'a', 't', 's', '.', 'n', 'e', 't', '\0', /* "i10z.com", false */ 'i', '1', '0', 'z', '.', 'c', 'o', 'm', '\0', /* "i5y.co.uk", true */ 'i', '5', 'y', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "i95.me", false */ 'i', '9', '5', '.', 'm', 'e', '\0', /* "iactu.info", true */ 'i', 'a', 'c', 't', 'u', '.', 'i', 'n', 'f', 'o', '\0', /* "iainsimms.me", true */ 'i', 'a', 'i', 'n', 's', 'i', 'm', 'm', 's', '.', 'm', 'e', '\0', /* "iamcarrico.com", true */ 'i', 'a', 'm', 'c', 'a', 'r', 'r', 'i', 'c', 'o', '.', 'c', 'o', 'm', '\0', + /* "iamusingtheinter.net", true */ 'i', 'a', 'm', 'u', 's', 'i', 'n', 'g', 't', 'h', 'e', 'i', 'n', 't', 'e', 'r', '.', 'n', 'e', 't', '\0', /* "ian.sh", true */ 'i', 'a', 'n', '.', 's', 'h', '\0', /* "iandouglasscott.com", true */ 'i', 'a', 'n', 'd', 'o', 'u', 'g', 'l', 'a', 's', 's', 'c', 'o', 't', 't', '.', 'c', 'o', 'm', '\0', /* "ianix.com", true */ 'i', 'a', 'n', 'i', 'x', '.', 'c', 'o', 'm', '\0', /* "iavian.com", true */ 'i', 'a', 'v', 'i', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "ib-wedler.de", true */ 'i', 'b', '-', 'w', 'e', 'd', 'l', 'e', 'r', '.', 'd', 'e', '\0', /* "iba.community", true */ 'i', 'b', 'a', '.', 'c', 'o', 'm', 'm', 'u', 'n', 'i', 't', 'y', '\0', /* "ibarf.nl", true */ 'i', 'b', 'a', 'r', 'f', '.', 'n', 'l', '\0', /* "ibnuwebhost.com", true */ 'i', 'b', 'n', 'u', 'w', 'e', 'b', 'h', 'o', 's', 't', '.', 'c', 'o', 'm', '\0', @@ -5375,17 +5351,16 @@ static const char kSTSHostTable[] = { /* "icij.org", true */ 'i', 'c', 'i', 'j', '.', 'o', 'r', 'g', '\0', /* "icity.ly", true */ 'i', 'c', 'i', 't', 'y', '.', 'l', 'y', '\0', /* "icloud.net", true */ 'i', 'c', 'l', 'o', 'u', 'd', '.', 'n', 'e', 't', '\0', /* "icntorrent.download", true */ 'i', 'c', 'n', 't', 'o', 'r', 'r', 'e', 'n', 't', '.', 'd', 'o', 'w', 'n', 'l', 'o', 'a', 'd', '\0', /* "icpc2016.in.th", true */ 'i', 'c', 'p', 'c', '2', '0', '1', '6', '.', 'i', 'n', '.', 't', 'h', '\0', /* "icq-project.net", true */ 'i', 'c', 'q', '-', 'p', 'r', 'o', 'j', 'e', 'c', 't', '.', 'n', 'e', 't', '\0', /* "ict-concept.nl", false */ 'i', 'c', 't', '-', 'c', 'o', 'n', 'c', 'e', 'p', 't', '.', 'n', 'l', '\0', /* "ictinforensics.org", true */ 'i', 'c', 't', 'i', 'n', 'f', 'o', 'r', 'e', 'n', 's', 'i', 'c', 's', '.', 'o', 'r', 'g', '\0', - /* "icusignature.com", true */ 'i', 'c', 'u', 's', 'i', 'g', 'n', 'a', 't', 'u', 'r', 'e', '.', 'c', 'o', 'm', '\0', /* "icymint.me", true */ 'i', 'c', 'y', 'm', 'i', 'n', 't', '.', 'm', 'e', '\0', /* "id.atlassian.com", true */ 'i', 'd', '.', 'a', 't', 'l', 'a', 's', 's', 'i', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "id.fedoraproject.org", false */ 'i', 'd', '.', 'f', 'e', 'd', 'o', 'r', 'a', 'p', 'r', 'o', 'j', 'e', 'c', 't', '.', 'o', 'r', 'g', '\0', /* "id.mayfirst.org", false */ 'i', 'd', '.', 'm', 'a', 'y', 'f', 'i', 'r', 's', 't', '.', 'o', 'r', 'g', '\0', /* "id.search.yahoo.com", false */ 'i', 'd', '.', 's', 'e', 'a', 'r', 'c', 'h', '.', 'y', 'a', 'h', 'o', 'o', '.', 'c', 'o', 'm', '\0', /* "id0-rsa.pub", true */ 'i', 'd', '0', '-', 'r', 's', 'a', '.', 'p', 'u', 'b', '\0', /* "idahoansforliberty.net", true */ 'i', 'd', 'a', 'h', 'o', 'a', 'n', 's', 'f', 'o', 'r', 'l', 'i', 'b', 'e', 'r', 't', 'y', '.', 'n', 'e', 't', '\0', /* "idaspis.com", true */ 'i', 'd', 'a', 's', 'p', 'i', 's', '.', 'c', 'o', 'm', '\0', @@ -5394,28 +5369,28 @@ static const char kSTSHostTable[] = { /* "ideadozz.hu", true */ 'i', 'd', 'e', 'a', 'd', 'o', 'z', 'z', '.', 'h', 'u', '\0', /* "ideaweb.de", true */ 'i', 'd', 'e', 'a', 'w', 'e', 'b', '.', 'd', 'e', '\0', /* "idedr.com", true */ 'i', 'd', 'e', 'd', 'r', '.', 'c', 'o', 'm', '\0', /* "idemo.in", true */ 'i', 'd', 'e', 'm', 'o', '.', 'i', 'n', '\0', /* "idensys.nl", true */ 'i', 'd', 'e', 'n', 's', 'y', 's', '.', 'n', 'l', '\0', /* "identitytheft.gov", true */ 'i', 'd', 'e', 'n', 't', 'i', 't', 'y', 't', 'h', 'e', 'f', 't', '.', 'g', 'o', 'v', '\0', /* "idexxpublicationportal.com", true */ 'i', 'd', 'e', 'x', 'x', 'p', 'u', 'b', 'l', 'i', 'c', 'a', 't', 'i', 'o', 'n', 'p', 'o', 'r', 't', 'a', 'l', '.', 'c', 'o', 'm', '\0', /* "idgard.de", true */ 'i', 'd', 'g', 'a', 'r', 'd', '.', 'd', 'e', '\0', - /* "idgsupply.com", true */ 'i', 'd', 'g', 's', 'u', 'p', 'p', 'l', 'y', '.', 'c', 'o', 'm', '\0', /* "idiopolis.org", true */ 'i', 'd', 'i', 'o', 'p', 'o', 'l', 'i', 's', '.', 'o', 'r', 'g', '\0', /* "idlekernel.com", true */ 'i', 'd', 'l', 'e', 'k', 'e', 'r', 'n', 'e', 'l', '.', 'c', 'o', 'm', '\0', /* "idmobile.co.uk", true */ 'i', 'd', 'm', 'o', 'b', 'i', 'l', 'e', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "idndx.com", true */ 'i', 'd', 'n', 'd', 'x', '.', 'c', 'o', 'm', '\0', /* "idoc24.com", true */ 'i', 'd', 'o', 'c', '2', '4', '.', 'c', 'o', 'm', '\0', /* "idolf.dk", true */ 'i', 'd', 'o', 'l', 'f', '.', 'd', 'k', '\0', /* "idontexist.me", true */ 'i', 'd', 'o', 'n', 't', 'e', 'x', 'i', 's', 't', '.', 'm', 'e', '\0', /* "idontplaydarts.com", true */ 'i', 'd', 'o', 'n', 't', 'p', 'l', 'a', 'y', 'd', 'a', 'r', 't', 's', '.', 'c', 'o', 'm', '\0', /* "idsafe.co.za", true */ 'i', 'd', 's', 'a', 'f', 'e', '.', 'c', 'o', '.', 'z', 'a', '\0', /* "idubaj.cz", true */ 'i', 'd', 'u', 'b', 'a', 'j', '.', 'c', 'z', '\0', /* "idvl.de", true */ 'i', 'd', 'v', 'l', '.', 'd', 'e', '\0', + /* "iec.pe", true */ 'i', 'e', 'c', '.', 'p', 'e', '\0', /* "ieeespmb.org", true */ 'i', 'e', 'e', 'e', 's', 'p', 'm', 'b', '.', 'o', 'r', 'g', '\0', /* "ierna.com", true */ 'i', 'e', 'r', 'n', 'a', '.', 'c', 'o', 'm', '\0', /* "ieval.ro", true */ 'i', 'e', 'v', 'a', 'l', '.', 'r', 'o', '\0', /* "ifad.org", true */ 'i', 'f', 'a', 'd', '.', 'o', 'r', 'g', '\0', /* "ifasec.de", false */ 'i', 'f', 'a', 's', 'e', 'c', '.', 'd', 'e', '\0', /* "ifcfg.me", true */ 'i', 'f', 'c', 'f', 'g', '.', 'm', 'e', '\0', /* "ifconfig.co", true */ 'i', 'f', 'c', 'o', 'n', 'f', 'i', 'g', '.', 'c', 'o', '\0', /* "iflare.de", true */ 'i', 'f', 'l', 'a', 'r', 'e', '.', 'd', 'e', '\0', @@ -5427,17 +5402,16 @@ static const char kSTSHostTable[] = { /* "ifxor.com", true */ 'i', 'f', 'x', 'o', 'r', '.', 'c', 'o', 'm', '\0', /* "igforums.com", true */ 'i', 'g', 'f', 'o', 'r', 'u', 'm', 's', '.', 'c', 'o', 'm', '\0', /* "iggprivate.com", true */ 'i', 'g', 'g', 'p', 'r', 'i', 'v', 'a', 't', 'e', '.', 'c', 'o', 'm', '\0', /* "iggsoft.com", true */ 'i', 'g', 'g', 's', 'o', 'f', 't', '.', 'c', 'o', 'm', '\0', /* "iggsoftware.com", true */ 'i', 'g', 'g', 's', 'o', 'f', 't', 'w', 'a', 'r', 'e', '.', 'c', 'o', 'm', '\0', /* "igiftcards.nl", true */ 'i', 'g', 'i', 'f', 't', 'c', 'a', 'r', 'd', 's', '.', 'n', 'l', '\0', /* "igk.de", true */ 'i', 'g', 'k', '.', 'd', 'e', '\0', /* "ignace72.eu", true */ 'i', 'g', 'n', 'a', 'c', 'e', '7', '2', '.', 'e', 'u', '\0', - /* "ignatisd.gr", true */ 'i', 'g', 'n', 'a', 't', 'i', 's', 'd', '.', 'g', 'r', '\0', /* "ignitedmindz.in", true */ 'i', 'g', 'n', 'i', 't', 'e', 'd', 'm', 'i', 'n', 'd', 'z', '.', 'i', 'n', '\0', /* "igotoffer.com", true */ 'i', 'g', 'o', 't', 'o', 'f', 'f', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "igrivi.com", true */ 'i', 'g', 'r', 'i', 'v', 'i', '.', 'c', 'o', 'm', '\0', /* "igule.net", true */ 'i', 'g', 'u', 'l', 'e', '.', 'n', 'e', 't', '\0', /* "ihkk.net", true */ 'i', 'h', 'k', 'k', '.', 'n', 'e', 't', '\0', /* "ihostup.net", true */ 'i', 'h', 'o', 's', 't', 'u', 'p', '.', 'n', 'e', 't', '\0', /* "ihsbsd.me", true */ 'i', 'h', 's', 'b', 's', 'd', '.', 'm', 'e', '\0', /* "iirii.com", true */ 'i', 'i', 'r', 'i', 'i', '.', 'c', 'o', 'm', '\0', @@ -5466,17 +5440,16 @@ static const char kSTSHostTable[] = { /* "iluvscotland.co.uk", true */ 'i', 'l', 'u', 'v', 's', 'c', 'o', 't', 'l', 'a', 'n', 'd', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "im-c-shop.com", true */ 'i', 'm', '-', 'c', '-', 's', 'h', 'o', 'p', '.', 'c', 'o', 'm', '\0', /* "im2net.com", true */ 'i', 'm', '2', 'n', 'e', 't', '.', 'c', 'o', 'm', '\0', /* "imagefu.com", true */ 'i', 'm', 'a', 'g', 'e', 'f', 'u', '.', 'c', 'o', 'm', '\0', /* "imagescostumes.com", true */ 'i', 'm', 'a', 'g', 'e', 's', 'c', 'o', 's', 't', 'u', 'm', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "imaginary.ca", true */ 'i', 'm', 'a', 'g', 'i', 'n', 'a', 'r', 'y', '.', 'c', 'a', '\0', /* "imagr.io", true */ 'i', 'm', 'a', 'g', 'r', '.', 'i', 'o', '\0', /* "imakepoems.net", true */ 'i', 'm', 'a', 'k', 'e', 'p', 'o', 'e', 'm', 's', '.', 'n', 'e', 't', '\0', - /* "imanolbarba.net", true */ 'i', 'm', 'a', 'n', 'o', 'l', 'b', 'a', 'r', 'b', 'a', '.', 'n', 'e', 't', '\0', /* "imanudin.net", true */ 'i', 'm', 'a', 'n', 'u', 'd', 'i', 'n', '.', 'n', 'e', 't', '\0', /* "imbrian.org", true */ 'i', 'm', 'b', 'r', 'i', 'a', 'n', '.', 'o', 'r', 'g', '\0', /* "imbushuo.net", true */ 'i', 'm', 'b', 'u', 's', 'h', 'u', 'o', '.', 'n', 'e', 't', '\0', /* "imed.pt", true */ 'i', 'm', 'e', 'd', '.', 'p', 't', '\0', /* "imedi.co.uk", true */ 'i', 'm', 'e', 'd', 'i', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "imedi.it", true */ 'i', 'm', 'e', 'd', 'i', '.', 'i', 't', '\0', /* "imedikament.de", true */ 'i', 'm', 'e', 'd', 'i', 'k', 'a', 'm', 'e', 'n', 't', '.', 'd', 'e', '\0', /* "imeds.pl", true */ 'i', 'm', 'e', 'd', 's', '.', 'p', 'l', '\0', @@ -5548,16 +5521,17 @@ static const char kSTSHostTable[] = { /* "infocommsociety.com", true */ 'i', 'n', 'f', 'o', 'c', 'o', 'm', 'm', 's', 'o', 'c', 'i', 'e', 't', 'y', '.', 'c', 'o', 'm', '\0', /* "informatiebeveiliging.nl", true */ 'i', 'n', 'f', 'o', 'r', 'm', 'a', 't', 'i', 'e', 'b', 'e', 'v', 'e', 'i', 'l', 'i', 'g', 'i', 'n', 'g', '.', 'n', 'l', '\0', /* "informatik.zone", true */ 'i', 'n', 'f', 'o', 'r', 'm', 'a', 't', 'i', 'k', '.', 'z', 'o', 'n', 'e', '\0', /* "informnapalm.org", true */ 'i', 'n', 'f', 'o', 'r', 'm', 'n', 'a', 'p', 'a', 'l', 'm', '.', 'o', 'r', 'g', '\0', /* "infosec.ch", true */ 'i', 'n', 'f', 'o', 's', 'e', 'c', '.', 'c', 'h', '\0', /* "infosenior.ch", true */ 'i', 'n', 'f', 'o', 's', 'e', 'n', 'i', 'o', 'r', '.', 'c', 'h', '\0', /* "infra-con.dk", true */ 'i', 'n', 'f', 'r', 'a', '-', 'c', 'o', 'n', '.', 'd', 'k', '\0', /* "infura.co.th", true */ 'i', 'n', 'f', 'u', 'r', 'a', '.', 'c', 'o', '.', 't', 'h', '\0', + /* "ingalls.run", true */ 'i', 'n', 'g', 'a', 'l', 'l', 's', '.', 'r', 'u', 'n', '\0', /* "inhaltsangabe.de", true */ 'i', 'n', 'h', 'a', 'l', 't', 's', 'a', 'n', 'g', 'a', 'b', 'e', '.', 'd', 'e', '\0', /* "iniiter.com", true */ 'i', 'n', 'i', 'i', 't', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "inios.fr", false */ 'i', 'n', 'i', 'o', 's', '.', 'f', 'r', '\0', /* "initq.net", false */ 'i', 'n', 'i', 't', 'q', '.', 'n', 'e', 't', '\0', /* "initrd.net", true */ 'i', 'n', 'i', 't', 'r', 'd', '.', 'n', 'e', 't', '\0', /* "inkbunny.net", true */ 'i', 'n', 'k', 'b', 'u', 'n', 'n', 'y', '.', 'n', 'e', 't', '\0', /* "inked-guy.de", false */ 'i', 'n', 'k', 'e', 'd', '-', 'g', 'u', 'y', '.', 'd', 'e', '\0', /* "inksay.com", true */ 'i', 'n', 'k', 's', 'a', 'y', '.', 'c', 'o', 'm', '\0', @@ -5641,16 +5615,17 @@ static const char kSTSHostTable[] = { /* "investorforms.com", true */ 'i', 'n', 'v', 'e', 's', 't', 'o', 'r', 'f', 'o', 'r', 'm', 's', '.', 'c', 'o', 'm', '\0', /* "investpay.ru", true */ 'i', 'n', 'v', 'e', 's', 't', 'p', 'a', 'y', '.', 'r', 'u', '\0', /* "invictusmc.uk", true */ 'i', 'n', 'v', 'i', 'c', 't', 'u', 's', 'm', 'c', '.', 'u', 'k', '\0', /* "invite24.pro", true */ 'i', 'n', 'v', 'i', 't', 'e', '2', '4', '.', 'p', 'r', 'o', '\0', /* "invoiced.com", true */ 'i', 'n', 'v', 'o', 'i', 'c', 'e', 'd', '.', 'c', 'o', 'm', '\0', /* "invoicefinance.com", true */ 'i', 'n', 'v', 'o', 'i', 'c', 'e', 'f', 'i', 'n', 'a', 'n', 'c', 'e', '.', 'c', 'o', 'm', '\0', /* "invoicefinance.nl", true */ 'i', 'n', 'v', 'o', 'i', 'c', 'e', 'f', 'i', 'n', 'a', 'n', 'c', 'e', '.', 'n', 'l', '\0', /* "inwestcorp.se", true */ 'i', 'n', 'w', 'e', 's', 't', 'c', 'o', 'r', 'p', '.', 's', 'e', '\0', + /* "inzdr.com", true */ 'i', 'n', 'z', 'd', 'r', '.', 'c', 'o', 'm', '\0', /* "iocheck.com", false */ 'i', 'o', 'c', 'h', 'e', 'c', 'k', '.', 'c', 'o', 'm', '\0', /* "iodu.re", true */ 'i', 'o', 'd', 'u', '.', 'r', 'e', '\0', /* "ioiart.eu", true */ 'i', 'o', 'i', 'a', 'r', 't', '.', 'e', 'u', '\0', /* "iolife.dk", true */ 'i', 'o', 'l', 'i', 'f', 'e', '.', 'd', 'k', '\0', /* "iompost.com", true */ 'i', 'o', 'm', 'p', 'o', 's', 't', '.', 'c', 'o', 'm', '\0', /* "iomstamps.com", true */ 'i', 'o', 'm', 's', 't', 'a', 'm', 'p', 's', '.', 'c', 'o', 'm', '\0', /* "ionas-law.ro", false */ 'i', 'o', 'n', 'a', 's', '-', 'l', 'a', 'w', '.', 'r', 'o', '\0', /* "ionc.ca", true */ 'i', 'o', 'n', 'c', '.', 'c', 'a', '\0', @@ -5712,21 +5687,23 @@ static const char kSTSHostTable[] = { /* "isistomie.com", true */ 'i', 's', 'i', 's', 't', 'o', 'm', 'i', 'e', '.', 'c', 'o', 'm', '\0', /* "isitamor.pm", true */ 'i', 's', 'i', 't', 'a', 'm', 'o', 'r', '.', 'p', 'm', '\0', /* "isitchristmas.com", true */ 'i', 's', 'i', 't', 'c', 'h', 'r', 'i', 's', 't', 'm', 'a', 's', '.', 'c', 'o', 'm', '\0', /* "isitcoffeetime.com", true */ 'i', 's', 'i', 't', 'c', 'o', 'f', 'f', 'e', 'e', 't', 'i', 'm', 'e', '.', 'c', 'o', 'm', '\0', /* "isitup.org", true */ 'i', 's', 'i', 't', 'u', 'p', '.', 'o', 'r', 'g', '\0', /* "iskaron.de", true */ 'i', 's', 'k', 'a', 'r', 'o', 'n', '.', 'd', 'e', '\0', /* "islandhosting.com", true */ 'i', 's', 'l', 'a', 'n', 'd', 'h', 'o', 's', 't', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "isletech.net", true */ 'i', 's', 'l', 'e', 't', 'e', 'c', 'h', '.', 'n', 'e', 't', '\0', + /* "isntall.us", true */ 'i', 's', 'n', 't', 'a', 'l', 'l', '.', 'u', 's', '\0', /* "isogen5.com", true */ 'i', 's', 'o', 'g', 'e', 'n', '5', '.', 'c', 'o', 'm', '\0', /* "isondo.com", true */ 'i', 's', 'o', 'n', 'd', 'o', '.', 'c', 'o', 'm', '\0', /* "isopres.de", true */ 'i', 's', 'o', 'p', 'r', 'e', 's', '.', 'd', 'e', '\0', /* "ispweb.es", true */ 'i', 's', 'p', 'w', 'e', 'b', '.', 'e', 's', '\0', /* "isqrl.de", true */ 'i', 's', 'q', 'r', 'l', '.', 'd', 'e', '\0', + /* "israkurort.com", true */ 'i', 's', 'r', 'a', 'k', 'u', 'r', 'o', 'r', 't', '.', 'c', 'o', 'm', '\0', /* "isreedyintheuk.com", true */ 'i', 's', 'r', 'e', 'e', 'd', 'y', 'i', 'n', 't', 'h', 'e', 'u', 'k', '.', 'c', 'o', 'm', '\0', /* "issforum.org", true */ 'i', 's', 's', 'f', 'o', 'r', 'u', 'm', '.', 'o', 'r', 'g', '\0', /* "isslshop.com", true */ 'i', 's', 's', 'l', 's', 'h', 'o', 'p', '.', 'c', 'o', 'm', '\0', /* "issuesofconcern.in", true */ 'i', 's', 's', 'u', 'e', 's', 'o', 'f', 'c', 'o', 'n', 'c', 'e', 'r', 'n', '.', 'i', 'n', '\0', /* "istanbul.systems", true */ 'i', 's', 't', 'a', 'n', 'b', 'u', 'l', '.', 's', 'y', 's', 't', 'e', 'm', 's', '\0', /* "istanbultravelguide.info", true */ 'i', 's', 't', 'a', 'n', 'b', 'u', 'l', 't', 'r', 'a', 'v', 'e', 'l', 'g', 'u', 'i', 'd', 'e', '.', 'i', 'n', 'f', 'o', '\0', /* "istdieweltschonuntergegangen.de", true */ 'i', 's', 't', 'd', 'i', 'e', 'w', 'e', 'l', 't', 's', 'c', 'h', 'o', 'n', 'u', 'n', 't', 'e', 'r', 'g', 'e', 'g', 'a', 'n', 'g', 'e', 'n', '.', 'd', 'e', '\0', /* "isteinbaby.de", true */ 'i', 's', 't', 'e', 'i', 'n', 'b', 'a', 'b', 'y', '.', 'd', 'e', '\0', @@ -5766,17 +5743,16 @@ static const char kSTSHostTable[] = { /* "its-v.de", true */ 'i', 't', 's', '-', 'v', '.', 'd', 'e', '\0', /* "itsadog.co.uk", true */ 'i', 't', 's', 'a', 'd', 'o', 'g', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "itsagadget.com", true */ 'i', 't', 's', 'a', 'g', 'a', 'd', 'g', 'e', 't', '.', 'c', 'o', 'm', '\0', /* "itsatrap.nl", true */ 'i', 't', 's', 'a', 't', 'r', 'a', 'p', '.', 'n', 'l', '\0', /* "itsecguy.com", true */ 'i', 't', 's', 'e', 'c', 'g', 'u', 'y', '.', 'c', 'o', 'm', '\0', /* "itsg-faq.de", true */ 'i', 't', 's', 'g', '-', 'f', 'a', 'q', '.', 'd', 'e', '\0', /* "itskayla.com", true */ 'i', 't', 's', 'k', 'a', 'y', 'l', 'a', '.', 'c', 'o', 'm', '\0', /* "itsok.de", true */ 'i', 't', 's', 'o', 'k', '.', 'd', 'e', '\0', - /* "itspawned.com", true */ 'i', 't', 's', 'p', 'a', 'w', 'n', 'e', 'd', '.', 'c', 'o', 'm', '\0', /* "itspersonaltraining.nl", true */ 'i', 't', 's', 'p', 'e', 'r', 's', 'o', 'n', 'a', 'l', 't', 'r', 'a', 'i', 'n', 'i', 'n', 'g', '.', 'n', 'l', '\0', /* "itsryan.com", true */ 'i', 't', 's', 'r', 'y', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "itu2015.de", true */ 'i', 't', 'u', '2', '0', '1', '5', '.', 'd', 'e', '\0', /* "iuscommunity.org", true */ 'i', 'u', 's', 'c', 'o', 'm', 'm', 'u', 'n', 'i', 't', 'y', '.', 'o', 'r', 'g', '\0', /* "ivancacic.com", true */ 'i', 'v', 'a', 'n', 'c', 'a', 'c', 'i', 'c', '.', 'c', 'o', 'm', '\0', /* "ivi-fertilite.fr", true */ 'i', 'v', 'i', '-', 'f', 'e', 'r', 't', 'i', 'l', 'i', 't', 'e', '.', 'f', 'r', '\0', /* "ivi-fruchtbarkeit.de", true */ 'i', 'v', 'i', '-', 'f', 'r', 'u', 'c', 'h', 't', 'b', 'a', 'r', 'k', 'e', 'i', 't', '.', 'd', 'e', '\0', /* "ivi.com.ar", true */ 'i', 'v', 'i', '.', 'c', 'o', 'm', '.', 'a', 'r', '\0', @@ -5846,17 +5822,17 @@ static const char kSTSHostTable[] = { /* "james.je", true */ 'j', 'a', 'm', 'e', 's', '.', 'j', 'e', '\0', /* "jamesbywater.co.uk", true */ 'j', 'a', 'm', 'e', 's', 'b', 'y', 'w', 'a', 't', 'e', 'r', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "jamesbywater.com", true */ 'j', 'a', 'm', 'e', 's', 'b', 'y', 'w', 'a', 't', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "jamesbywater.uk", false */ 'j', 'a', 'm', 'e', 's', 'b', 'y', 'w', 'a', 't', 'e', 'r', '.', 'u', 'k', '\0', /* "jamesf.xyz", true */ 'j', 'a', 'm', 'e', 's', 'f', '.', 'x', 'y', 'z', '\0', /* "jamesgreenfield.com", true */ 'j', 'a', 'm', 'e', 's', 'g', 'r', 'e', 'e', 'n', 'f', 'i', 'e', 'l', 'd', '.', 'c', 'o', 'm', '\0', /* "jameshale.me", true */ 'j', 'a', 'm', 'e', 's', 'h', 'a', 'l', 'e', '.', 'm', 'e', '\0', /* "jameshost.net", true */ 'j', 'a', 'm', 'e', 's', 'h', 'o', 's', 't', '.', 'n', 'e', 't', '\0', - /* "jameshunt.us", true */ 'j', 'a', 'm', 'e', 's', 'h', 'u', 'n', 't', '.', 'u', 's', '\0', + /* "jameshunt.us", false */ 'j', 'a', 'm', 'e', 's', 'h', 'u', 'n', 't', '.', 'u', 's', '\0', /* "jamesmaurer.com", true */ 'j', 'a', 'm', 'e', 's', 'm', 'a', 'u', 'r', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "jamesmilazzo.com", true */ 'j', 'a', 'm', 'e', 's', 'm', 'i', 'l', 'a', 'z', 'z', 'o', '.', 'c', 'o', 'm', '\0', /* "jamesmorrison.me", true */ 'j', 'a', 'm', 'e', 's', 'm', 'o', 'r', 'r', 'i', 's', 'o', 'n', '.', 'm', 'e', '\0', /* "jamesrains.com", true */ 'j', 'a', 'm', 'e', 's', 'r', 'a', 'i', 'n', 's', '.', 'c', 'o', 'm', '\0', /* "jamesrussellward.co.uk", true */ 'j', 'a', 'm', 'e', 's', 'r', 'u', 's', 's', 'e', 'l', 'l', 'w', 'a', 'r', 'd', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "jamessan.com", true */ 'j', 'a', 'm', 'e', 's', 's', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "jamessmith.me.uk", true */ 'j', 'a', 'm', 'e', 's', 's', 'm', 'i', 't', 'h', '.', 'm', 'e', '.', 'u', 'k', '\0', /* "jamielinux.com", true */ 'j', 'a', 'm', 'i', 'e', 'l', 'i', 'n', 'u', 'x', '.', 'c', 'o', 'm', '\0', @@ -5902,17 +5878,16 @@ static const char kSTSHostTable[] = { /* "jazzanet.com", true */ 'j', 'a', 'z', 'z', 'a', 'n', 'e', 't', '.', 'c', 'o', 'm', '\0', /* "jazzncheese.com", true */ 'j', 'a', 'z', 'z', 'n', 'c', 'h', 'e', 'e', 's', 'e', '.', 'c', 'o', 'm', '\0', /* "jbbd.fr", true */ 'j', 'b', 'b', 'd', '.', 'f', 'r', '\0', /* "jbfp.dk", true */ 'j', 'b', 'f', 'p', '.', 'd', 'k', '\0', /* "jbn.mx", true */ 'j', 'b', 'n', '.', 'm', 'x', '\0', /* "jbradaric.me", true */ 'j', 'b', 'r', 'a', 'd', 'a', 'r', 'i', 'c', '.', 'm', 'e', '\0', /* "jcaicedo.tk", true */ 'j', 'c', 'a', 'i', 'c', 'e', 'd', 'o', '.', 't', 'k', '\0', /* "jccrew.org", true */ 'j', 'c', 'c', 'r', 'e', 'w', '.', 'o', 'r', 'g', '\0', - /* "jcor.me", true */ 'j', 'c', 'o', 'r', '.', 'm', 'e', '\0', /* "jcoscia.com", true */ 'j', 'c', 'o', 's', 'c', 'i', 'a', '.', 'c', 'o', 'm', '\0', /* "jcraft.us", true */ 'j', 'c', 'r', 'a', 'f', 't', '.', 'u', 's', '\0', /* "jctf.io", true */ 'j', 'c', 't', 'f', '.', 'i', 'o', '\0', /* "jcyz.cf", true */ 'j', 'c', 'y', 'z', '.', 'c', 'f', '\0', /* "jdav-leipzig.de", true */ 'j', 'd', 'a', 'v', '-', 'l', 'e', 'i', 'p', 'z', 'i', 'g', '.', 'd', 'e', '\0', /* "jdcgroup.com.ph", true */ 'j', 'd', 'c', 'g', 'r', 'o', 'u', 'p', '.', 'c', 'o', 'm', '.', 'p', 'h', '\0', /* "jdh8.org", true */ 'j', 'd', 'h', '8', '.', 'o', 'r', 'g', '\0', /* "jdubya.info", true */ 'j', 'd', 'u', 'b', 'y', 'a', '.', 'i', 'n', 'f', 'o', '\0', @@ -5942,17 +5917,16 @@ static const char kSTSHostTable[] = { /* "jensrex.dk", true */ 'j', 'e', 'n', 's', 'r', 'e', 'x', '.', 'd', 'k', '\0', /* "jeremiahbenes.com", true */ 'j', 'e', 'r', 'e', 'm', 'i', 'a', 'h', 'b', 'e', 'n', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "jeremyness.com", true */ 'j', 'e', 'r', 'e', 'm', 'y', 'n', 'e', 's', 's', '.', 'c', 'o', 'm', '\0', /* "jerodslay.com", true */ 'j', 'e', 'r', 'o', 'd', 's', 'l', 'a', 'y', '.', 'c', 'o', 'm', '\0', /* "jeroendeneef.com", true */ 'j', 'e', 'r', 'o', 'e', 'n', 'd', 'e', 'n', 'e', 'e', 'f', '.', 'c', 'o', 'm', '\0', /* "jeroenseegers.com", true */ 'j', 'e', 'r', 'o', 'e', 'n', 's', 'e', 'e', 'g', 'e', 'r', 's', '.', 'c', 'o', 'm', '\0', /* "jesorsenville.com", true */ 'j', 'e', 's', 'o', 'r', 's', 'e', 'n', 'v', 'i', 'l', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "jesseerbach.com", true */ 'j', 'e', 's', 's', 'e', 'e', 'r', 'b', 'a', 'c', 'h', '.', 'c', 'o', 'm', '\0', - /* "jessevictors.com", true */ 'j', 'e', 's', 's', 'e', 'v', 'i', 'c', 't', 'o', 'r', 's', '.', 'c', 'o', 'm', '\0', /* "jessgranger.com", true */ 'j', 'e', 's', 's', 'g', 'r', 'a', 'n', 'g', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "jesters-court.net", true */ 'j', 'e', 's', 't', 'e', 'r', 's', '-', 'c', 'o', 'u', 'r', 't', '.', 'n', 'e', 't', '\0', /* "jetkittens.co.uk", true */ 'j', 'e', 't', 'k', 'i', 't', 't', 'e', 'n', 's', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "jetlagphotography.com", true */ 'j', 'e', 't', 'l', 'a', 'g', 'p', 'h', 'o', 't', 'o', 'g', 'r', 'a', 'p', 'h', 'y', '.', 'c', 'o', 'm', '\0', /* "jetmirshatri.com", true */ 'j', 'e', 't', 'm', 'i', 'r', 's', 'h', 'a', 't', 'r', 'i', '.', 'c', 'o', 'm', '\0', /* "jetsetcharge.com", true */ 'j', 'e', 't', 's', 'e', 't', 'c', 'h', 'a', 'r', 'g', 'e', '.', 'c', 'o', 'm', '\0', /* "jetsetpay.com", true */ 'j', 'e', 't', 's', 'e', 't', 'p', 'a', 'y', '.', 'c', 'o', 'm', '\0', /* "jetsieswerda.nl", true */ 'j', 'e', 't', 's', 'i', 'e', 's', 'w', 'e', 'r', 'd', 'a', '.', 'n', 'l', '\0', @@ -5992,17 +5966,16 @@ static const char kSTSHostTable[] = { /* "jobmob.co.il", true */ 'j', 'o', 'b', 'm', 'o', 'b', '.', 'c', 'o', '.', 'i', 'l', '\0', /* "jobs.at", true */ 'j', 'o', 'b', 's', '.', 'a', 't', '\0', /* "jodlajodla.si", true */ 'j', 'o', 'd', 'l', 'a', 'j', 'o', 'd', 'l', 'a', '.', 's', 'i', '\0', /* "joduska.me", true */ 'j', 'o', 'd', 'u', 's', 'k', 'a', '.', 'm', 'e', '\0', /* "jodyboucher.com", true */ 'j', 'o', 'd', 'y', 'b', 'o', 'u', 'c', 'h', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "joe-pagan.com", true */ 'j', 'o', 'e', '-', 'p', 'a', 'g', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "joehenry.co.uk", true */ 'j', 'o', 'e', 'h', 'e', 'n', 'r', 'y', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "joelj.org", true */ 'j', 'o', 'e', 'l', 'j', '.', 'o', 'r', 'g', '\0', - /* "joepitt.co.uk", false */ 'j', 'o', 'e', 'p', 'i', 't', 't', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "joerss.at", true */ 'j', 'o', 'e', 'r', 's', 's', '.', 'a', 't', '\0', /* "joestead.codes", true */ 'j', 'o', 'e', 's', 't', 'e', 'a', 'd', '.', 'c', 'o', 'd', 'e', 's', '\0', /* "jogi-server.de", true */ 'j', 'o', 'g', 'i', '-', 's', 'e', 'r', 'v', 'e', 'r', '.', 'd', 'e', '\0', /* "jogorama.com.br", false */ 'j', 'o', 'g', 'o', 'r', 'a', 'm', 'a', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', /* "johannes-sprink.de", true */ 'j', 'o', 'h', 'a', 'n', 'n', 'e', 's', '-', 's', 'p', 'r', 'i', 'n', 'k', '.', 'd', 'e', '\0', /* "johannes.io", true */ 'j', 'o', 'h', 'a', 'n', 'n', 'e', 's', '.', 'i', 'o', '\0', /* "johannes.wtf", true */ 'j', 'o', 'h', 'a', 'n', 'n', 'e', 's', '.', 'w', 't', 'f', '\0', /* "johnblackbourn.com", true */ 'j', 'o', 'h', 'n', 'b', 'l', 'a', 'c', 'k', 'b', 'o', 'u', 'r', 'n', '.', 'c', 'o', 'm', '\0', @@ -6098,17 +6071,16 @@ static const char kSTSHostTable[] = { /* "jultube.de", true */ 'j', 'u', 'l', 't', 'u', 'b', 'e', '.', 'd', 'e', '\0', /* "jumba.com.au", true */ 'j', 'u', 'm', 'b', 'a', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "jump.bg", true */ 'j', 'u', 'm', 'p', '.', 'b', 'g', '\0', /* "jump.wtf", true */ 'j', 'u', 'm', 'p', '.', 'w', 't', 'f', '\0', /* "junaos.com", true */ 'j', 'u', 'n', 'a', 'o', 's', '.', 'c', 'o', 'm', '\0', /* "junethack.net", true */ 'j', 'u', 'n', 'e', 't', 'h', 'a', 'c', 'k', '.', 'n', 'e', 't', '\0', /* "jungesforumkonstanz.de", true */ 'j', 'u', 'n', 'g', 'e', 's', 'f', 'o', 'r', 'u', 'm', 'k', 'o', 'n', 's', 't', 'a', 'n', 'z', '.', 'd', 'e', '\0', /* "junglist.org", true */ 'j', 'u', 'n', 'g', 'l', 'i', 's', 't', '.', 'o', 'r', 'g', '\0', - /* "juniwalk.cz", true */ 'j', 'u', 'n', 'i', 'w', 'a', 'l', 'k', '.', 'c', 'z', '\0', /* "junjung.me", true */ 'j', 'u', 'n', 'j', 'u', 'n', 'g', '.', 'm', 'e', '\0', /* "junkdrome.org", true */ 'j', 'u', 'n', 'k', 'd', 'r', 'o', 'm', 'e', '.', 'o', 'r', 'g', '\0', /* "jurassicbarkharrogate.co.uk", true */ 'j', 'u', 'r', 'a', 's', 's', 'i', 'c', 'b', 'a', 'r', 'k', 'h', 'a', 'r', 'r', 'o', 'g', 'a', 't', 'e', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "jurriaan.ninja", true */ 'j', 'u', 'r', 'r', 'i', 'a', 'a', 'n', '.', 'n', 'i', 'n', 'j', 'a', '\0', /* "justchunks.net", true */ 'j', 'u', 's', 't', 'c', 'h', 'u', 'n', 'k', 's', '.', 'n', 'e', 't', '\0', /* "justice4assange.com", true */ 'j', 'u', 's', 't', 'i', 'c', 'e', '4', 'a', 's', 's', 'a', 'n', 'g', 'e', '.', 'c', 'o', 'm', '\0', /* "justinho.com", true */ 'j', 'u', 's', 't', 'i', 'n', 'h', 'o', '.', 'c', 'o', 'm', '\0', /* "justinlemay.com", true */ 'j', 'u', 's', 't', 'i', 'n', 'l', 'e', 'm', 'a', 'y', '.', 'c', 'o', 'm', '\0', @@ -6293,16 +6265,17 @@ static const char kSTSHostTable[] = { /* "kgm-irm.be", true */ 'k', 'g', 'm', '-', 'i', 'r', 'm', '.', 'b', 'e', '\0', /* "khanovaskola.cz", true */ 'k', 'h', 'a', 'n', 'o', 'v', 'a', 's', 'k', 'o', 'l', 'a', '.', 'c', 'z', '\0', /* "khetzal.info", true */ 'k', 'h', 'e', 't', 'z', 'a', 'l', '.', 'i', 'n', 'f', 'o', '\0', /* "khipu.com", true */ 'k', 'h', 'i', 'p', 'u', '.', 'c', 'o', 'm', '\0', /* "khmath.com", true */ 'k', 'h', 'm', 'a', 't', 'h', '.', 'c', 'o', 'm', '\0', /* "khmb.ru", true */ 'k', 'h', 'm', 'b', '.', 'r', 'u', '\0', /* "ki-on.net", true */ 'k', 'i', '-', 'o', 'n', '.', 'n', 'e', 't', '\0', /* "kiadoapartman.hu", true */ 'k', 'i', 'a', 'd', 'o', 'a', 'p', 'a', 'r', 't', 'm', 'a', 'n', '.', 'h', 'u', '\0', + /* "kiahoriane.com", true */ 'k', 'i', 'a', 'h', 'o', 'r', 'i', 'a', 'n', 'e', '.', 'c', 'o', 'm', '\0', /* "kialo.com", true */ 'k', 'i', 'a', 'l', 'o', '.', 'c', 'o', 'm', '\0', /* "kiano.net", true */ 'k', 'i', 'a', 'n', 'o', '.', 'n', 'e', 't', '\0', /* "kiapps.ovh", true */ 'k', 'i', 'a', 'p', 'p', 's', '.', 'o', 'v', 'h', '\0', /* "kick-in.nl", true */ 'k', 'i', 'c', 'k', '-', 'i', 'n', '.', 'n', 'l', '\0', /* "kickass-proxies.org", true */ 'k', 'i', 'c', 'k', 'a', 's', 's', '-', 'p', 'r', 'o', 'x', 'i', 'e', 's', '.', 'o', 'r', 'g', '\0', /* "kickerplaza.nl", true */ 'k', 'i', 'c', 'k', 'e', 'r', 'p', 'l', 'a', 'z', 'a', '.', 'n', 'l', '\0', /* "kickstart.com.pk", true */ 'k', 'i', 'c', 'k', 's', 't', 'a', 'r', 't', '.', 'c', 'o', 'm', '.', 'p', 'k', '\0', /* "kidbacker.com", true */ 'k', 'i', 'd', 'b', 'a', 'c', 'k', 'e', 'r', '.', 'c', 'o', 'm', '\0', @@ -6318,17 +6291,16 @@ static const char kSTSHostTable[] = { /* "kilianvalkhof.com", true */ 'k', 'i', 'l', 'i', 'a', 'n', 'v', 'a', 'l', 'k', 'h', 'o', 'f', '.', 'c', 'o', 'm', '\0', /* "killerrobots.com", true */ 'k', 'i', 'l', 'l', 'e', 'r', 'r', 'o', 'b', 'o', 't', 's', '.', 'c', 'o', 'm', '\0', /* "kilobyte22.de", true */ 'k', 'i', 'l', 'o', 'b', 'y', 't', 'e', '2', '2', '.', 'd', 'e', '\0', /* "kilogram.nl", true */ 'k', 'i', 'l', 'o', 'g', 'r', 'a', 'm', '.', 'n', 'l', '\0', /* "kilometertje.nl", true */ 'k', 'i', 'l', 'o', 'm', 'e', 't', 'e', 'r', 't', 'j', 'e', '.', 'n', 'l', '\0', /* "kimberg.co.uk", true */ 'k', 'i', 'm', 'b', 'e', 'r', 'g', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "kimmel.com", true */ 'k', 'i', 'm', 'm', 'e', 'l', '.', 'c', 'o', 'm', '\0', /* "kimmel.in", true */ 'k', 'i', 'm', 'm', 'e', 'l', '.', 'i', 'n', '\0', - /* "kimpost.org", true */ 'k', 'i', 'm', 'p', 'o', 's', 't', '.', 'o', 'r', 'g', '\0', /* "kinderbasar-luhe.de", true */ 'k', 'i', 'n', 'd', 'e', 'r', 'b', 'a', 's', 'a', 'r', '-', 'l', 'u', 'h', 'e', '.', 'd', 'e', '\0', /* "kinderbuecher-kostenlos.de", true */ 'k', 'i', 'n', 'd', 'e', 'r', 'b', 'u', 'e', 'c', 'h', 'e', 'r', '-', 'k', 'o', 's', 't', 'e', 'n', 'l', 'o', 's', '.', 'd', 'e', '\0', /* "kinderly.co.uk", true */ 'k', 'i', 'n', 'd', 'e', 'r', 'l', 'y', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "kinderwagen-test24.de", true */ 'k', 'i', 'n', 'd', 'e', 'r', 'w', 'a', 'g', 'e', 'n', '-', 't', 'e', 's', 't', '2', '4', '.', 'd', 'e', '\0', /* "kindleworth.com", true */ 'k', 'i', 'n', 'd', 'l', 'e', 'w', 'o', 'r', 't', 'h', '.', 'c', 'o', 'm', '\0', /* "kindlyfire.com", true */ 'k', 'i', 'n', 'd', 'l', 'y', 'f', 'i', 'r', 'e', '.', 'c', 'o', 'm', '\0', /* "kindof.ninja", true */ 'k', 'i', 'n', 'd', 'o', 'f', '.', 'n', 'i', 'n', 'j', 'a', '\0', /* "kingant.net", true */ 'k', 'i', 'n', 'g', 'a', 'n', 't', '.', 'n', 'e', 't', '\0', @@ -6508,19 +6480,17 @@ static const char kSTSHostTable[] = { /* "kreavis.com", true */ 'k', 'r', 'e', 'a', 'v', 'i', 's', '.', 'c', 'o', 'm', '\0', /* "kreb.io", true */ 'k', 'r', 'e', 'b', '.', 'i', 'o', '\0', /* "kredietpaspoort.nl", true */ 'k', 'r', 'e', 'd', 'i', 'e', 't', 'p', 'a', 's', 'p', 'o', 'o', 'r', 't', '.', 'n', 'l', '\0', /* "kredite24.de", true */ 'k', 'r', 'e', 'd', 'i', 't', 'e', '2', '4', '.', 'd', 'e', '\0', /* "kreditkacs.cz", true */ 'k', 'r', 'e', 'd', 'i', 't', 'k', 'a', 'c', 's', '.', 'c', 'z', '\0', /* "kreen.org", true */ 'k', 'r', 'e', 'e', 'n', '.', 'o', 'r', 'g', '\0', /* "kriechel.de", true */ 'k', 'r', 'i', 'e', 'c', 'h', 'e', 'l', '.', 'd', 'e', '\0', /* "kriegskindernothilfe.de", true */ 'k', 'r', 'i', 'e', 'g', 's', 'k', 'i', 'n', 'd', 'e', 'r', 'n', 'o', 't', 'h', 'i', 'l', 'f', 'e', '.', 'd', 'e', '\0', - /* "kriegt.es", true */ 'k', 'r', 'i', 'e', 'g', 't', '.', 'e', 's', '\0', /* "kriptosec.com", true */ 'k', 'r', 'i', 'p', 't', 'o', 's', 'e', 'c', '.', 'c', 'o', 'm', '\0', - /* "krislamoureux.com", true */ 'k', 'r', 'i', 's', 'l', 'a', 'm', 'o', 'u', 'r', 'e', 'u', 'x', '.', 'c', 'o', 'm', '\0', /* "krisstarkey.co.uk", true */ 'k', 'r', 'i', 's', 's', 't', 'a', 'r', 'k', 'e', 'y', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "kristikala.nl", true */ 'k', 'r', 'i', 's', 't', 'i', 'k', 'a', 'l', 'a', '.', 'n', 'l', '\0', /* "kristinbailey.com", true */ 'k', 'r', 'i', 's', 't', 'i', 'n', 'b', 'a', 'i', 'l', 'e', 'y', '.', 'c', 'o', 'm', '\0', /* "kristofferkoch.com", true */ 'k', 'r', 'i', 's', 't', 'o', 'f', 'f', 'e', 'r', 'k', 'o', 'c', 'h', '.', 'c', 'o', 'm', '\0', /* "krizek.cc", true */ 'k', 'r', 'i', 'z', 'e', 'k', '.', 'c', 'c', '\0', /* "krk-media.pl", true */ 'k', 'r', 'k', '-', 'm', 'e', 'd', 'i', 'a', '.', 'p', 'l', '\0', /* "krmeni.cz", true */ 'k', 'r', 'm', 'e', 'n', 'i', '.', 'c', 'z', '\0', /* "kromonos.net", true */ 'k', 'r', 'o', 'm', 'o', 'n', 'o', 's', '.', 'n', 'e', 't', '\0', @@ -6594,17 +6564,16 @@ static const char kSTSHostTable[] = { /* "lacasa.fr", true */ 'l', 'a', 'c', 'a', 's', 'a', '.', 'f', 'r', '\0', /* "lacasabelucci.com", true */ 'l', 'a', 'c', 'a', 's', 'a', 'b', 'e', 'l', 'u', 'c', 'c', 'i', '.', 'c', 'o', 'm', '\0', /* "lacasseroy.com", true */ 'l', 'a', 'c', 'a', 's', 's', 'e', 'r', 'o', 'y', '.', 'c', 'o', 'm', '\0', /* "lacaverne.nl", true */ 'l', 'a', 'c', 'a', 'v', 'e', 'r', 'n', 'e', '.', 'n', 'l', '\0', /* "lacentral.com", false */ 'l', 'a', 'c', 'e', 'n', 't', 'r', 'a', 'l', '.', 'c', 'o', 'm', '\0', /* "lacicloud.net", true */ 'l', 'a', 'c', 'i', 'c', 'l', 'o', 'u', 'd', '.', 'n', 'e', 't', '\0', /* "lacledeslan.com", false */ 'l', 'a', 'c', 'l', 'e', 'd', 'e', 's', 'l', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "lacledeslan.ninja", true */ 'l', 'a', 'c', 'l', 'e', 'd', 'e', 's', 'l', 'a', 'n', '.', 'n', 'i', 'n', 'j', 'a', '\0', - /* "lacliniquefinanciere.com", true */ 'l', 'a', 'c', 'l', 'i', 'n', 'i', 'q', 'u', 'e', 'f', 'i', 'n', 'a', 'n', 'c', 'i', 'e', 'r', 'e', '.', 'c', 'o', 'm', '\0', /* "lacocinadelila.com", true */ 'l', 'a', 'c', 'o', 'c', 'i', 'n', 'a', 'd', 'e', 'l', 'i', 'l', 'a', '.', 'c', 'o', 'm', '\0', /* "lacyc3.eu", true */ 'l', 'a', 'c', 'y', 'c', '3', '.', 'e', 'u', '\0', /* "ladbroke.net", true */ 'l', 'a', 'd', 'b', 'r', 'o', 'k', 'e', '.', 'n', 'e', 't', '\0', /* "laextra.mx", true */ 'l', 'a', 'e', 'x', 't', 'r', 'a', '.', 'm', 'x', '\0', /* "lafillepolyvalente.ca", true */ 'l', 'a', 'f', 'i', 'l', 'l', 'e', 'p', 'o', 'l', 'y', 'v', 'a', 'l', 'e', 'n', 't', 'e', '.', 'c', 'a', '\0', /* "lafillepolyvalente.com", true */ 'l', 'a', 'f', 'i', 'l', 'l', 'e', 'p', 'o', 'l', 'y', 'v', 'a', 'l', 'e', 'n', 't', 'e', '.', 'c', 'o', 'm', '\0', /* "lafka.org", true */ 'l', 'a', 'f', 'k', 'a', '.', 'o', 'r', 'g', '\0', /* "lafkor.de", true */ 'l', 'a', 'f', 'k', 'o', 'r', '.', 'd', 'e', '\0', @@ -6682,17 +6651,16 @@ static const char kSTSHostTable[] = { /* "lavita.de", true */ 'l', 'a', 'v', 'i', 't', 'a', '.', 'd', 'e', '\0', /* "lavito.cz", true */ 'l', 'a', 'v', 'i', 't', 'o', '.', 'c', 'z', '\0', /* "lavoieducoeur.be", true */ 'l', 'a', 'v', 'o', 'i', 'e', 'd', 'u', 'c', 'o', 'e', 'u', 'r', '.', 'b', 'e', '\0', /* "lavoiepharmd.com", true */ 'l', 'a', 'v', 'o', 'i', 'e', 'p', 'h', 'a', 'r', 'm', 'd', '.', 'c', 'o', 'm', '\0', /* "lawformt.com", true */ 'l', 'a', 'w', 'f', 'o', 'r', 'm', 't', '.', 'c', 'o', 'm', '\0', /* "lawly.org", true */ 'l', 'a', 'w', 'l', 'y', '.', 'o', 'r', 'g', '\0', /* "lawrencemurgatroyd.com", true */ 'l', 'a', 'w', 'r', 'e', 'n', 'c', 'e', 'm', 'u', 'r', 'g', 'a', 't', 'r', 'o', 'y', 'd', '.', 'c', 'o', 'm', '\0', /* "layer8.tk", true */ 'l', 'a', 'y', 'e', 'r', '8', '.', 't', 'k', '\0', - /* "laylo.nl", true */ 'l', 'a', 'y', 'l', 'o', '.', 'n', 'l', '\0', /* "lazerus.net", true */ 'l', 'a', 'z', 'e', 'r', 'u', 's', '.', 'n', 'e', 't', '\0', /* "lazurit.com", true */ 'l', 'a', 'z', 'u', 'r', 'i', 't', '.', 'c', 'o', 'm', '\0', /* "lb-toner.de", true */ 'l', 'b', '-', 't', 'o', 'n', 'e', 'r', '.', 'd', 'e', '\0', /* "lbayer.com", true */ 'l', 'b', 'a', 'y', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "lbs-logics.com", true */ 'l', 'b', 's', '-', 'l', 'o', 'g', 'i', 'c', 's', '.', 'c', 'o', 'm', '\0', /* "lca-pv.de", true */ 'l', 'c', 'a', '-', 'p', 'v', '.', 'd', 'e', '\0', /* "lcti.biz", true */ 'l', 'c', 't', 'i', '.', 'b', 'i', 'z', '\0', /* "ld-begunjscica.si", true */ 'l', 'd', '-', 'b', 'e', 'g', 'u', 'n', 'j', 's', 'c', 'i', 'c', 'a', '.', 's', 'i', '\0', @@ -6748,20 +6716,19 @@ static const char kSTSHostTable[] = { /* "lenzw.de", true */ 'l', 'e', 'n', 'z', 'w', '.', 'd', 'e', '\0', /* "leob.in", true */ 'l', 'e', 'o', 'b', '.', 'i', 'n', '\0', /* "leominstercu.com", false */ 'l', 'e', 'o', 'm', 'i', 'n', 's', 't', 'e', 'r', 'c', 'u', '.', 'c', 'o', 'm', '\0', /* "leonard.io", true */ 'l', 'e', 'o', 'n', 'a', 'r', 'd', '.', 'i', 'o', '\0', /* "leonardcamacho.me", true */ 'l', 'e', 'o', 'n', 'a', 'r', 'd', 'c', 'a', 'm', 'a', 'c', 'h', 'o', '.', 'm', 'e', '\0', /* "leonax.net", true */ 'l', 'e', 'o', 'n', 'a', 'x', '.', 'n', 'e', 't', '\0', /* "leonklingele.de", true */ 'l', 'e', 'o', 'n', 'k', 'l', 'i', 'n', 'g', 'e', 'l', 'e', '.', 'd', 'e', '\0', /* "leonmahler.consulting", true */ 'l', 'e', 'o', 'n', 'm', 'a', 'h', 'l', 'e', 'r', '.', 'c', 'o', 'n', 's', 'u', 'l', 't', 'i', 'n', 'g', '\0', - /* "leopoldina.net", true */ 'l', 'e', 'o', 'p', 'o', 'l', 'd', 'i', 'n', 'a', '.', 'n', 'e', 't', '\0', - /* "lepont.pl", true */ 'l', 'e', 'p', 'o', 'n', 't', '.', 'p', 'l', '\0', /* "leppis-it.de", true */ 'l', 'e', 'p', 'p', 'i', 's', '-', 'i', 't', '.', 'd', 'e', '\0', /* "leprado.com", true */ 'l', 'e', 'p', 'r', 'a', 'd', 'o', '.', 'c', 'o', 'm', '\0', + /* "lerasenglish.com", true */ 'l', 'e', 'r', 'a', 's', 'e', 'n', 'g', 'l', 'i', 's', 'h', '.', 'c', 'o', 'm', '\0', /* "lerku.com", true */ 'l', 'e', 'r', 'k', 'u', '.', 'c', 'o', 'm', '\0', /* "lernorteuropa.com", true */ 'l', 'e', 'r', 'n', 'o', 'r', 't', 'e', 'u', 'r', 'o', 'p', 'a', '.', 'c', 'o', 'm', '\0', /* "lernorteuropa.de", true */ 'l', 'e', 'r', 'n', 'o', 'r', 't', 'e', 'u', 'r', 'o', 'p', 'a', '.', 'd', 'e', '\0', /* "lernorteuropa.eu", true */ 'l', 'e', 'r', 'n', 'o', 'r', 't', 'e', 'u', 'r', 'o', 'p', 'a', '.', 'e', 'u', '\0', /* "lerp.me", true */ 'l', 'e', 'r', 'p', '.', 'm', 'e', '\0', /* "leseditionsbraquage.com", true */ 'l', 'e', 's', 'e', 'd', 'i', 't', 'i', 'o', 'n', 's', 'b', 'r', 'a', 'q', 'u', 'a', 'g', 'e', '.', 'c', 'o', 'm', '\0', /* "lesharris.com", true */ 'l', 'e', 's', 'h', 'a', 'r', 'r', 'i', 's', '.', 'c', 'o', 'm', '\0', /* "lesnet.co.uk", true */ 'l', 'e', 's', 'n', 'e', 't', '.', 'c', 'o', '.', 'u', 'k', '\0', @@ -6784,23 +6751,25 @@ static const char kSTSHostTable[] = { /* "lewislaw.com", true */ 'l', 'e', 'w', 'i', 's', 'l', 'a', 'w', '.', 'c', 'o', 'm', '\0', /* "lexway.pk", true */ 'l', 'e', 'x', 'w', 'a', 'y', '.', 'p', 'k', '\0', /* "lfgss.com", true */ 'l', 'f', 'g', 's', 's', '.', 'c', 'o', 'm', '\0', /* "lhalbert.xyz", true */ 'l', 'h', 'a', 'l', 'b', 'e', 'r', 't', '.', 'x', 'y', 'z', '\0', /* "li-ke.co.jp", true */ 'l', 'i', '-', 'k', 'e', '.', 'c', 'o', '.', 'j', 'p', '\0', /* "liam-w.com", true */ 'l', 'i', 'a', 'm', '-', 'w', '.', 'c', 'o', 'm', '\0', /* "liamjack.fr", true */ 'l', 'i', 'a', 'm', 'j', 'a', 'c', 'k', '.', 'f', 'r', '\0', /* "liangji.com.tw", true */ 'l', 'i', 'a', 'n', 'g', 'j', 'i', '.', 'c', 'o', 'm', '.', 't', 'w', '\0', + /* "libbitcoin.org", true */ 'l', 'i', 'b', 'b', 'i', 't', 'c', 'o', 'i', 'n', '.', 'o', 'r', 'g', '\0', /* "libertas-tech.com", true */ 'l', 'i', 'b', 'e', 'r', 't', 'a', 's', '-', 't', 'e', 'c', 'h', '.', 'c', 'o', 'm', '\0', /* "libfte.org", true */ 'l', 'i', 'b', 'f', 't', 'e', '.', 'o', 'r', 'g', '\0', /* "libnull.com", true */ 'l', 'i', 'b', 'n', 'u', 'l', 'l', '.', 'c', 'o', 'm', '\0', /* "libraryfreedomproject.org", false */ 'l', 'i', 'b', 'r', 'a', 'r', 'y', 'f', 'r', 'e', 'e', 'd', 'o', 'm', 'p', 'r', 'o', 'j', 'e', 'c', 't', '.', 'o', 'r', 'g', '\0', /* "libreboot.org", true */ 'l', 'i', 'b', 'r', 'e', 'b', 'o', 'o', 't', '.', 'o', 'r', 'g', '\0', /* "librelamp.com", true */ 'l', 'i', 'b', 'r', 'e', 'l', 'a', 'm', 'p', '.', 'c', 'o', 'm', '\0', /* "librends.org", true */ 'l', 'i', 'b', 'r', 'e', 'n', 'd', 's', '.', 'o', 'r', 'g', '\0', + /* "libscode.com", true */ 'l', 'i', 'b', 's', 'c', 'o', 'd', 'e', '.', 'c', 'o', 'm', '\0', /* "libskia.so", true */ 'l', 'i', 'b', 's', 'k', 'i', 'a', '.', 's', 'o', '\0', /* "libsodium.org", true */ 'l', 'i', 'b', 's', 'o', 'd', 'i', 'u', 'm', '.', 'o', 'r', 'g', '\0', /* "liceserv.com", true */ 'l', 'i', 'c', 'e', 's', 'e', 'r', 'v', '.', 'c', 'o', 'm', '\0', /* "lichess.org", true */ 'l', 'i', 'c', 'h', 'e', 's', 's', '.', 'o', 'r', 'g', '\0', /* "lichtspot.de", true */ 'l', 'i', 'c', 'h', 't', 's', 'p', 'o', 't', '.', 'd', 'e', '\0', /* "liderwalut.pl", false */ 'l', 'i', 'd', 'e', 'r', 'w', 'a', 'l', 'u', 't', '.', 'p', 'l', '\0', /* "lidong.me", true */ 'l', 'i', 'd', 'o', 'n', 'g', '.', 'm', 'e', '\0', /* "liduan.com", true */ 'l', 'i', 'd', 'u', 'a', 'n', '.', 'c', 'o', 'm', '\0', @@ -6854,17 +6823,16 @@ static const char kSTSHostTable[] = { /* "linuxcommand.ru", true */ 'l', 'i', 'n', 'u', 'x', 'c', 'o', 'm', 'm', 'a', 'n', 'd', '.', 'r', 'u', '\0', /* "linuxhostsupport.com", true */ 'l', 'i', 'n', 'u', 'x', 'h', 'o', 's', 't', 's', 'u', 'p', 'p', 'o', 'r', 't', '.', 'c', 'o', 'm', '\0', /* "linuxlounge.net", true */ 'l', 'i', 'n', 'u', 'x', 'l', 'o', 'u', 'n', 'g', 'e', '.', 'n', 'e', 't', '\0', /* "linuxmonitoring.net", true */ 'l', 'i', 'n', 'u', 'x', 'm', 'o', 'n', 'i', 't', 'o', 'r', 'i', 'n', 'g', '.', 'n', 'e', 't', '\0', /* "linuxwebservertips.in", true */ 'l', 'i', 'n', 'u', 'x', 'w', 'e', 'b', 's', 'e', 'r', 'v', 'e', 'r', 't', 'i', 'p', 's', '.', 'i', 'n', '\0', /* "linvx.org", true */ 'l', 'i', 'n', 'v', 'x', '.', 'o', 'r', 'g', '\0', /* "linx.li", true */ 'l', 'i', 'n', 'x', '.', 'l', 'i', '\0', /* "linx.net", true */ 'l', 'i', 'n', 'x', '.', 'n', 'e', 't', '\0', - /* "linzgau.de", true */ 'l', 'i', 'n', 'z', 'g', 'a', 'u', '.', 'd', 'e', '\0', /* "liornavok.com", true */ 'l', 'i', 'o', 'r', 'n', 'a', 'v', 'o', 'k', '.', 'c', 'o', 'm', '\0', /* "liquid.cz", true */ 'l', 'i', 'q', 'u', 'i', 'd', '.', 'c', 'z', '\0', /* "liquidcomm.net", true */ 'l', 'i', 'q', 'u', 'i', 'd', 'c', 'o', 'm', 'm', '.', 'n', 'e', 't', '\0', /* "lirion.de", true */ 'l', 'i', 'r', 'i', 'o', 'n', '.', 'd', 'e', '\0', /* "liris-beautywelt.de", true */ 'l', 'i', 'r', 'i', 's', '-', 'b', 'e', 'a', 'u', 't', 'y', 'w', 'e', 'l', 't', '.', 'd', 'e', '\0', /* "lisaco.de", true */ 'l', 'i', 's', 'a', 'c', 'o', '.', 'd', 'e', '\0', /* "lislan.org.uk", true */ 'l', 'i', 's', 'l', 'a', 'n', '.', 'o', 'r', 'g', '.', 'u', 'k', '\0', /* "lisonfan.com", true */ 'l', 'i', 's', 'o', 'n', 'f', 'a', 'n', '.', 'c', 'o', 'm', '\0', @@ -7032,17 +7000,16 @@ static const char kSTSHostTable[] = { /* "luehne.de", true */ 'l', 'u', 'e', 'h', 'n', 'e', '.', 'd', 'e', '\0', /* "luelistan.net", true */ 'l', 'u', 'e', 'l', 'i', 's', 't', 'a', 'n', '.', 'n', 'e', 't', '\0', /* "lufthansaexperts.com", true */ 'l', 'u', 'f', 't', 'h', 'a', 'n', 's', 'a', 'e', 'x', 'p', 'e', 'r', 't', 's', '.', 'c', 'o', 'm', '\0', /* "lugbb.org", true */ 'l', 'u', 'g', 'b', 'b', '.', 'o', 'r', 'g', '\0', /* "lukasberan.com", true */ 'l', 'u', 'k', 'a', 's', 'b', 'e', 'r', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "lukasberan.cz", true */ 'l', 'u', 'k', 'a', 's', 'b', 'e', 'r', 'a', 'n', '.', 'c', 'z', '\0', /* "lukasunger.cz", true */ 'l', 'u', 'k', 'a', 's', 'u', 'n', 'g', 'e', 'r', '.', 'c', 'z', '\0', /* "lukasunger.net", true */ 'l', 'u', 'k', 'a', 's', 'u', 'n', 'g', 'e', 'r', '.', 'n', 'e', 't', '\0', - /* "lukaszdolan.com", true */ 'l', 'u', 'k', 'a', 's', 'z', 'd', 'o', 'l', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "lukasztkacz.com", true */ 'l', 'u', 'k', 'a', 's', 'z', 't', 'k', 'a', 'c', 'z', '.', 'c', 'o', 'm', '\0', /* "luke.ch", true */ 'l', 'u', 'k', 'e', '.', 'c', 'h', '\0', /* "lumiere.com", true */ 'l', 'u', 'm', 'i', 'e', 'r', 'e', '.', 'c', 'o', 'm', '\0', /* "lunakit.org", true */ 'l', 'u', 'n', 'a', 'k', 'i', 't', '.', 'o', 'r', 'g', '\0', /* "lunapps.com", true */ 'l', 'u', 'n', 'a', 'p', 'p', 's', '.', 'c', 'o', 'm', '\0', /* "lunarift.com", true */ 'l', 'u', 'n', 'a', 'r', 'i', 'f', 't', '.', 'c', 'o', 'm', '\0', /* "lunarlog.com", true */ 'l', 'u', 'n', 'a', 'r', 'l', 'o', 'g', '.', 'c', 'o', 'm', '\0', /* "lunarrift.net", true */ 'l', 'u', 'n', 'a', 'r', 'r', 'i', 'f', 't', '.', 'n', 'e', 't', '\0', @@ -7094,17 +7061,16 @@ static const char kSTSHostTable[] = { /* "m82labs.com", true */ 'm', '8', '2', 'l', 'a', 'b', 's', '.', 'c', 'o', 'm', '\0', /* "ma2t.com", true */ 'm', 'a', '2', 't', '.', 'c', 'o', 'm', '\0', /* "maartenterpstra.xyz", true */ 'm', 'a', 'a', 'r', 't', 'e', 'n', 't', 'e', 'r', 'p', 's', 't', 'r', 'a', '.', 'x', 'y', 'z', '\0', /* "mac-torrents.me", true */ 'm', 'a', 'c', '-', 't', 'o', 'r', 'r', 'e', 'n', 't', 's', '.', 'm', 'e', '\0', /* "mac1.net", true */ 'm', 'a', 'c', '1', '.', 'n', 'e', 't', '\0', /* "macaque.io", false */ 'm', 'a', 'c', 'a', 'q', 'u', 'e', '.', 'i', 'o', '\0', /* "macbolo.com", true */ 'm', 'a', 'c', 'b', 'o', 'l', 'o', '.', 'c', 'o', 'm', '\0', /* "macdj.tk", true */ 'm', 'a', 'c', 'd', 'j', '.', 't', 'k', '\0', - /* "macgeneral.de", true */ 'm', 'a', 'c', 'g', 'e', 'n', 'e', 'r', 'a', 'l', '.', 'd', 'e', '\0', /* "mach-politik.ch", true */ 'm', 'a', 'c', 'h', '-', 'p', 'o', 'l', 'i', 't', 'i', 'k', '.', 'c', 'h', '\0', /* "machbach.com", true */ 'm', 'a', 'c', 'h', 'b', 'a', 'c', 'h', '.', 'c', 'o', 'm', '\0', /* "machon.biz", false */ 'm', 'a', 'c', 'h', 'o', 'n', '.', 'b', 'i', 'z', '\0', /* "machtweb.de", true */ 'm', 'a', 'c', 'h', 't', 'w', 'e', 'b', '.', 'd', 'e', '\0', /* "macinyasha.net", true */ 'm', 'a', 'c', 'i', 'n', 'y', 'a', 's', 'h', 'a', '.', 'n', 'e', 't', '\0', /* "macker.io", true */ 'm', 'a', 'c', 'k', 'e', 'r', '.', 'i', 'o', '\0', /* "maclemon.at", true */ 'm', 'a', 'c', 'l', 'e', 'm', 'o', 'n', '.', 'a', 't', '\0', /* "macleod.io", true */ 'm', 'a', 'c', 'l', 'e', 'o', 'd', '.', 'i', 'o', '\0', @@ -7118,29 +7084,28 @@ static const char kSTSHostTable[] = { /* "madin.ru", true */ 'm', 'a', 'd', 'i', 'n', '.', 'r', 'u', '\0', /* "madnetwork.org", true */ 'm', 'a', 'd', 'n', 'e', 't', 'w', 'o', 'r', 'k', '.', 'o', 'r', 'g', '\0', /* "madokami.net", true */ 'm', 'a', 'd', 'o', 'k', 'a', 'm', 'i', '.', 'n', 'e', 't', '\0', /* "madrants.net", true */ 'm', 'a', 'd', 'r', 'a', 'n', 't', 's', '.', 'n', 'e', 't', '\0', /* "madreacqua.org", true */ 'm', 'a', 'd', 'r', 'e', 'a', 'c', 'q', 'u', 'a', '.', 'o', 'r', 'g', '\0', /* "madtec.de", true */ 'm', 'a', 'd', 't', 'e', 'c', '.', 'd', 'e', '\0', /* "madusecurity.com", true */ 'm', 'a', 'd', 'u', 's', 'e', 'c', 'u', 'r', 'i', 't', 'y', '.', 'c', 'o', 'm', '\0', /* "maelstrom.ninja", true */ 'm', 'a', 'e', 'l', 's', 't', 'r', 'o', 'm', '.', 'n', 'i', 'n', 'j', 'a', '\0', - /* "maff.scot", false */ 'm', 'a', 'f', 'f', '.', 's', 'c', 'o', 't', '\0', /* "mafiaforum.de", true */ 'm', 'a', 'f', 'i', 'a', 'f', 'o', 'r', 'u', 'm', '.', 'd', 'e', '\0', /* "mafiasi.de", true */ 'm', 'a', 'f', 'i', 'a', 's', 'i', '.', 'd', 'e', '\0', /* "magdic.eu", true */ 'm', 'a', 'g', 'd', 'i', 'c', '.', 'e', 'u', '\0', /* "magenbrot.net", true */ 'm', 'a', 'g', 'e', 'n', 'b', 'r', 'o', 't', '.', 'n', 'e', 't', '\0', /* "magenda.sk", true */ 'm', 'a', 'g', 'e', 'n', 'd', 'a', '.', 's', 'k', '\0', /* "magia360.com", true */ 'm', 'a', 'g', 'i', 'a', '3', '6', '0', '.', 'c', 'o', 'm', '\0', /* "magicball.co", true */ 'm', 'a', 'g', 'i', 'c', 'b', 'a', 'l', 'l', '.', 'c', 'o', '\0', /* "magilio.com", true */ 'm', 'a', 'g', 'i', 'l', 'i', 'o', '.', 'c', 'o', 'm', '\0', /* "magneticanvil.com", true */ 'm', 'a', 'g', 'n', 'e', 't', 'i', 'c', 'a', 'n', 'v', 'i', 'l', '.', 'c', 'o', 'm', '\0', /* "magnets.jp", true */ 'm', 'a', 'g', 'n', 'e', 't', 's', '.', 'j', 'p', '\0', + /* "mahefa.co.uk", true */ 'm', 'a', 'h', 'e', 'f', 'a', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "mahrer.net", true */ 'm', 'a', 'h', 'r', 'e', 'r', '.', 'n', 'e', 't', '\0', - /* "maidofhonorcleaning.net", true */ 'm', 'a', 'i', 'd', 'o', 'f', 'h', 'o', 'n', 'o', 'r', 'c', 'l', 'e', 'a', 'n', 'i', 'n', 'g', '.', 'n', 'e', 't', '\0', /* "mail-rotter.de", true */ 'm', 'a', 'i', 'l', '-', 'r', 'o', 't', 't', 'e', 'r', '.', 'd', 'e', '\0', /* "mail-settings.google.com", true */ 'm', 'a', 'i', 'l', '-', 's', 'e', 't', 't', 'i', 'n', 'g', 's', '.', 'g', 'o', 'o', 'g', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "mail.de", true */ 'm', 'a', 'i', 'l', '.', 'd', 'e', '\0', /* "mail.google.com", true */ 'm', 'a', 'i', 'l', '.', 'g', 'o', 'o', 'g', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "mail.yahoo.com", false */ 'm', 'a', 'i', 'l', '.', 'y', 'a', 'h', 'o', 'o', '.', 'c', 'o', 'm', '\0', /* "mail4you.in", true */ 'm', 'a', 'i', 'l', '4', 'y', 'o', 'u', '.', 'i', 'n', '\0', /* "mailbox.org", true */ 'm', 'a', 'i', 'l', 'b', 'o', 'x', '.', 'o', 'r', 'g', '\0', /* "mailchuck.com", true */ 'm', 'a', 'i', 'l', 'c', 'h', 'u', 'c', 'k', '.', 'c', 'o', 'm', '\0', @@ -7157,17 +7122,16 @@ static const char kSTSHostTable[] = { /* "mainlywrenches.co", true */ 'm', 'a', 'i', 'n', 'l', 'y', 'w', 'r', 'e', 'n', 'c', 'h', 'e', 's', '.', 'c', 'o', '\0', /* "mainzelmaennchen.net", true */ 'm', 'a', 'i', 'n', 'z', 'e', 'l', 'm', 'a', 'e', 'n', 'n', 'c', 'h', 'e', 'n', '.', 'n', 'e', 't', '\0', /* "maisgasolina.com", true */ 'm', 'a', 'i', 's', 'g', 'a', 's', 'o', 'l', 'i', 'n', 'a', '.', 'c', 'o', 'm', '\0', /* "majaweb.cz", true */ 'm', 'a', 'j', 'a', 'w', 'e', 'b', '.', 'c', 'z', '\0', /* "majesnix.org", true */ 'm', 'a', 'j', 'e', 's', 'n', 'i', 'x', '.', 'o', 'r', 'g', '\0', /* "make-pizza.info", true */ 'm', 'a', 'k', 'e', '-', 'p', 'i', 'z', 'z', 'a', '.', 'i', 'n', 'f', 'o', '\0', /* "makedin.net", true */ 'm', 'a', 'k', 'e', 'd', 'i', 'n', '.', 'n', 'e', 't', '\0', /* "makeuplove.nl", true */ 'm', 'a', 'k', 'e', 'u', 'p', 'l', 'o', 'v', 'e', '.', 'n', 'l', '\0', - /* "makeyourank.com", true */ 'm', 'a', 'k', 'e', 'y', 'o', 'u', 'r', 'a', 'n', 'k', '.', 'c', 'o', 'm', '\0', /* "makeyourlaws.org", true */ 'm', 'a', 'k', 'e', 'y', 'o', 'u', 'r', 'l', 'a', 'w', 's', '.', 'o', 'r', 'g', '\0', /* "makkusu.photo", true */ 'm', 'a', 'k', 'k', 'u', 's', 'u', '.', 'p', 'h', 'o', 't', 'o', '\0', /* "makowitz.cz", true */ 'm', 'a', 'k', 'o', 'w', 'i', 't', 'z', '.', 'c', 'z', '\0', /* "maktoob.search.yahoo.com", false */ 'm', 'a', 'k', 't', 'o', 'o', 'b', '.', 's', 'e', 'a', 'r', 'c', 'h', '.', 'y', 'a', 'h', 'o', 'o', '.', 'c', 'o', 'm', '\0', /* "malash.me", true */ 'm', 'a', 'l', 'a', 's', 'h', '.', 'm', 'e', '\0', /* "malaysia.search.yahoo.com", false */ 'm', 'a', 'l', 'a', 'y', 's', 'i', 'a', '.', 's', 'e', 'a', 'r', 'c', 'h', '.', 'y', 'a', 'h', 'o', 'o', '.', 'c', 'o', 'm', '\0', /* "malaysian.dating", true */ 'm', 'a', 'l', 'a', 'y', 's', 'i', 'a', 'n', '.', 'd', 'a', 't', 'i', 'n', 'g', '\0', /* "malfait.nl", true */ 'm', 'a', 'l', 'f', 'a', 'i', 't', '.', 'n', 'l', '\0', @@ -7264,17 +7228,16 @@ static const char kSTSHostTable[] = { /* "markusehrlicher.de", true */ 'm', 'a', 'r', 'k', 'u', 's', 'e', 'h', 'r', 'l', 'i', 'c', 'h', 'e', 'r', '.', 'd', 'e', '\0', /* "markusueberallassetmanagement.de", true */ 'm', 'a', 'r', 'k', 'u', 's', 'u', 'e', 'b', 'e', 'r', 'a', 'l', 'l', 'a', 's', 's', 'e', 't', 'm', 'a', 'n', 'a', 'g', 'e', 'm', 'e', 'n', 't', '.', 'd', 'e', '\0', /* "marlen.cz", true */ 'm', 'a', 'r', 'l', 'e', 'n', '.', 'c', 'z', '\0', /* "marquiseclub.se", true */ 'm', 'a', 'r', 'q', 'u', 'i', 's', 'e', 'c', 'l', 'u', 'b', '.', 's', 'e', '\0', /* "marriottvetcareers.com", true */ 'm', 'a', 'r', 'r', 'i', 'o', 't', 't', 'v', 'e', 't', 'c', 'a', 'r', 'e', 'e', 'r', 's', '.', 'c', 'o', 'm', '\0', /* "martelange.ovh", true */ 'm', 'a', 'r', 't', 'e', 'l', 'a', 'n', 'g', 'e', '.', 'o', 'v', 'h', '\0', /* "martensmxservice.nl", true */ 'm', 'a', 'r', 't', 'e', 'n', 's', 'm', 'x', 's', 'e', 'r', 'v', 'i', 'c', 'e', '.', 'n', 'l', '\0', /* "martialc.be", true */ 'm', 'a', 'r', 't', 'i', 'a', 'l', 'c', '.', 'b', 'e', '\0', - /* "martiert.com", true */ 'm', 'a', 'r', 't', 'i', 'e', 'r', 't', '.', 'c', 'o', 'm', '\0', /* "martin-smith.info", true */ 'm', 'a', 'r', 't', 'i', 'n', '-', 's', 'm', 'i', 't', 'h', '.', 'i', 'n', 'f', 'o', '\0', /* "martineve.com", true */ 'm', 'a', 'r', 't', 'i', 'n', 'e', 'v', 'e', '.', 'c', 'o', 'm', '\0', /* "martinkup.cz", true */ 'm', 'a', 'r', 't', 'i', 'n', 'k', 'u', 'p', '.', 'c', 'z', '\0', /* "martinkus.eu", true */ 'm', 'a', 'r', 't', 'i', 'n', 'k', 'u', 's', '.', 'e', 'u', '\0', /* "martinmuc.de", true */ 'm', 'a', 'r', 't', 'i', 'n', 'm', 'u', 'c', '.', 'd', 'e', '\0', /* "martinp.no", true */ 'm', 'a', 'r', 't', 'i', 'n', 'p', '.', 'n', 'o', '\0', /* "martinreed.net", true */ 'm', 'a', 'r', 't', 'i', 'n', 'r', 'e', 'e', 'd', '.', 'n', 'e', 't', '\0', /* "marumagic.com", true */ 'm', 'a', 'r', 'u', 'm', 'a', 'g', 'i', 'c', '.', 'c', 'o', 'm', '\0', @@ -7286,25 +7249,23 @@ static const char kSTSHostTable[] = { /* "masse.org", true */ 'm', 'a', 's', 's', 'e', '.', 'o', 'r', 'g', '\0', /* "massivum.de", false */ 'm', 'a', 's', 's', 'i', 'v', 'u', 'm', '.', 'd', 'e', '\0', /* "mastellone.us", true */ 'm', 'a', 's', 't', 'e', 'l', 'l', 'o', 'n', 'e', '.', 'u', 's', '\0', /* "master-net.org", true */ 'm', 'a', 's', 't', 'e', 'r', '-', 'n', 'e', 't', '.', 'o', 'r', 'g', '\0', /* "masterdigitale.com", true */ 'm', 'a', 's', 't', 'e', 'r', 'd', 'i', 'g', 'i', 't', 'a', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "masterhaus.bg", true */ 'm', 'a', 's', 't', 'e', 'r', 'h', 'a', 'u', 's', '.', 'b', 'g', '\0', /* "masteringtheterminal.com", true */ 'm', 'a', 's', 't', 'e', 'r', 'i', 'n', 'g', 't', 'h', 'e', 't', 'e', 'r', 'm', 'i', 'n', 'a', 'l', '.', 'c', 'o', 'm', '\0', /* "masters.black", true */ 'm', 'a', 's', 't', 'e', 'r', 's', '.', 'b', 'l', 'a', 'c', 'k', '\0', - /* "matchneedle.com", true */ 'm', 'a', 't', 'c', 'h', 'n', 'e', 'e', 'd', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "maternalsafety.org", true */ 'm', 'a', 't', 'e', 'r', 'n', 'a', 'l', 's', 'a', 'f', 'e', 't', 'y', '.', 'o', 'r', 'g', '\0', /* "mathembedded.com", true */ 'm', 'a', 't', 'h', 'e', 'm', 'b', 'e', 'd', 'd', 'e', 'd', '.', 'c', 'o', 'm', '\0', /* "mathhire.org", true */ 'm', 'a', 't', 'h', 'h', 'i', 'r', 'e', '.', 'o', 'r', 'g', '\0', /* "mathiasbynens.be", true */ 'm', 'a', 't', 'h', 'i', 'a', 's', 'b', 'y', 'n', 'e', 'n', 's', '.', 'b', 'e', '\0', /* "mathiasgarbe.de", true */ 'm', 'a', 't', 'h', 'i', 'a', 's', 'g', 'a', 'r', 'b', 'e', '.', 'd', 'e', '\0', /* "mathieuguimond.com", true */ 'm', 'a', 't', 'h', 'i', 'e', 'u', 'g', 'u', 'i', 'm', 'o', 'n', 'd', '.', 'c', 'o', 'm', '\0', /* "matrixcheats.net", true */ 'm', 'a', 't', 'r', 'i', 'x', 'c', 'h', 'e', 'a', 't', 's', '.', 'n', 'e', 't', '\0', - /* "matsuz.com", true */ 'm', 'a', 't', 's', 'u', 'z', '.', 'c', 'o', 'm', '\0', /* "matt.tf", true */ 'm', 'a', 't', 't', '.', 't', 'f', '\0', /* "mattandreko.com", true */ 'm', 'a', 't', 't', 'a', 'n', 'd', 'r', 'e', 'k', 'o', '.', 'c', 'o', 'm', '\0', /* "mattandyana.com", true */ 'm', 'a', 't', 't', 'a', 'n', 'd', 'y', 'a', 'n', 'a', '.', 'c', 'o', 'm', '\0', /* "mattberryman.com", false */ 'm', 'a', 't', 't', 'b', 'e', 'r', 'r', 'y', 'm', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "mattcoles.io", true */ 'm', 'a', 't', 't', 'c', 'o', 'l', 'e', 's', '.', 'i', 'o', '\0', /* "matteomarescotti.it", true */ 'm', 'a', 't', 't', 'e', 'o', 'm', 'a', 'r', 'e', 's', 'c', 'o', 't', 't', 'i', '.', 'i', 't', '\0', /* "mattfin.ch", true */ 'm', 'a', 't', 't', 'f', 'i', 'n', '.', 'c', 'h', '\0', /* "matthecat.com", true */ 'm', 'a', 't', 't', 'h', 'e', 'c', 'a', 't', '.', 'c', 'o', 'm', '\0', @@ -7393,18 +7354,17 @@ static const char kSTSHostTable[] = { /* "mdx.no", true */ 'm', 'd', 'x', '.', 'n', 'o', '\0', /* "mdxn.org", true */ 'm', 'd', 'x', 'n', '.', 'o', 'r', 'g', '\0', /* "me.net.nz", true */ 'm', 'e', '.', 'n', 'e', 't', '.', 'n', 'z', '\0', /* "meadowviewfarms.org", true */ 'm', 'e', 'a', 'd', 'o', 'w', 'v', 'i', 'e', 'w', 'f', 'a', 'r', 'm', 's', '.', 'o', 'r', 'g', '\0', /* "mealgoo.com", true */ 'm', 'e', 'a', 'l', 'g', 'o', 'o', '.', 'c', 'o', 'm', '\0', /* "meamod.com", true */ 'm', 'e', 'a', 'm', 'o', 'd', '.', 'c', 'o', 'm', '\0', /* "meap.xyz", true */ 'm', 'e', 'a', 'p', '.', 'x', 'y', 'z', '\0', /* "mebio.us", false */ 'm', 'e', 'b', 'i', 'o', '.', 'u', 's', '\0', - /* "mechanixdirect.co.uk", true */ 'm', 'e', 'c', 'h', 'a', 'n', 'i', 'x', 'd', 'i', 'r', 'e', 'c', 't', '.', 'c', 'o', '.', 'u', 'k', '\0', - /* "mechanus.io", true */ 'm', 'e', 'c', 'h', 'a', 'n', 'u', 's', '.', 'i', 'o', '\0', + /* "mechanixdirect.co.uk", false */ 'm', 'e', 'c', 'h', 'a', 'n', 'i', 'x', 'd', 'i', 'r', 'e', 'c', 't', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "mechmk1.me", true */ 'm', 'e', 'c', 'h', 'm', 'k', '1', '.', 'm', 'e', '\0', /* "medba.se", true */ 'm', 'e', 'd', 'b', 'a', '.', 's', 'e', '\0', /* "meddelare.com", true */ 'm', 'e', 'd', 'd', 'e', 'l', 'a', 'r', 'e', '.', 'c', 'o', 'm', '\0', /* "medexpress.co.uk", true */ 'm', 'e', 'd', 'e', 'x', 'p', 'r', 'e', 's', 's', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "medi-link.co.il", true */ 'm', 'e', 'd', 'i', '-', 'l', 'i', 'n', 'k', '.', 'c', 'o', '.', 'i', 'l', '\0', /* "mediaburst.co.uk", true */ 'm', 'e', 'd', 'i', 'a', 'b', 'u', 'r', 's', 't', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "mediamag.am", true */ 'm', 'e', 'd', 'i', 'a', 'm', 'a', 'g', '.', 'a', 'm', '\0', /* "mediamarkt.pl", true */ 'm', 'e', 'd', 'i', 'a', 'm', 'a', 'r', 'k', 't', '.', 'p', 'l', '\0', @@ -7560,16 +7520,17 @@ static const char kSTSHostTable[] = { /* "mijnreisoverzicht.nl", true */ 'm', 'i', 'j', 'n', 'r', 'e', 'i', 's', 'o', 'v', 'e', 'r', 'z', 'i', 'c', 'h', 't', '.', 'n', 'l', '\0', /* "mijnstembureau.nl", true */ 'm', 'i', 'j', 'n', 's', 't', 'e', 'm', 'b', 'u', 'r', 'e', 'a', 'u', '.', 'n', 'l', '\0', /* "mijntransacties.nl", true */ 'm', 'i', 'j', 'n', 't', 'r', 'a', 'n', 's', 'a', 'c', 't', 'i', 'e', 's', '.', 'n', 'l', '\0', /* "mikadesign.se", false */ 'm', 'i', 'k', 'a', 'd', 'e', 's', 'i', 'g', 'n', '.', 's', 'e', '\0', /* "mikadoe.nl", true */ 'm', 'i', 'k', 'a', 'd', 'o', 'e', '.', 'n', 'l', '\0', /* "mikaela.info", true */ 'm', 'i', 'k', 'a', 'e', 'l', 'a', '.', 'i', 'n', 'f', 'o', '\0', /* "mike-bland.com", true */ 'm', 'i', 'k', 'e', '-', 'b', 'l', 'a', 'n', 'd', '.', 'c', 'o', 'm', '\0', /* "mikecb.org", true */ 'm', 'i', 'k', 'e', 'c', 'b', '.', 'o', 'r', 'g', '\0', + /* "mikek.work", true */ 'm', 'i', 'k', 'e', 'k', '.', 'w', 'o', 'r', 'k', '\0', /* "mikeology.org", true */ 'm', 'i', 'k', 'e', 'o', 'l', 'o', 'g', 'y', '.', 'o', 'r', 'g', '\0', /* "miketabor.com", true */ 'm', 'i', 'k', 'e', 't', 'a', 'b', 'o', 'r', '.', 'c', 'o', 'm', '\0', /* "mikewest.org", true */ 'm', 'i', 'k', 'e', 'w', 'e', 's', 't', '.', 'o', 'r', 'g', '\0', /* "mikewillia.ms", true */ 'm', 'i', 'k', 'e', 'w', 'i', 'l', 'l', 'i', 'a', '.', 'm', 's', '\0', /* "mikeybot.com", true */ 'm', 'i', 'k', 'e', 'y', 'b', 'o', 't', '.', 'c', 'o', 'm', '\0', /* "mikii.club", true */ 'm', 'i', 'k', 'i', 'i', '.', 'c', 'l', 'u', 'b', '\0', /* "miknight.com", true */ 'm', 'i', 'k', 'n', 'i', 'g', 'h', 't', '.', 'c', 'o', 'm', '\0', /* "mikroskeem.eu", true */ 'm', 'i', 'k', 'r', 'o', 's', 'k', 'e', 'e', 'm', '.', 'e', 'u', '\0', @@ -7631,17 +7592,16 @@ static const char kSTSHostTable[] = { /* "mirodasilva.be", true */ 'm', 'i', 'r', 'o', 'd', 'a', 's', 'i', 'l', 'v', 'a', '.', 'b', 'e', '\0', /* "mironet.cz", true */ 'm', 'i', 'r', 'o', 'n', 'e', 't', '.', 'c', 'z', '\0', /* "mirtes.cz", true */ 'm', 'i', 'r', 't', 'e', 's', '.', 'c', 'z', '\0', /* "misakiya.co.jp", true */ 'm', 'i', 's', 'a', 'k', 'i', 'y', 'a', '.', 'c', 'o', '.', 'j', 'p', '\0', /* "miskatonic.org", true */ 'm', 'i', 's', 'k', 'a', 't', 'o', 'n', 'i', 'c', '.', 'o', 'r', 'g', '\0', /* "miss-inventory.co.uk", true */ 'm', 'i', 's', 's', '-', 'i', 'n', 'v', 'e', 'n', 't', 'o', 'r', 'y', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "missdream.org", true */ 'm', 'i', 's', 's', 'd', 'r', 'e', 'a', 'm', '.', 'o', 'r', 'g', '\0', /* "mission-orange.de", true */ 'm', 'i', 's', 's', 'i', 'o', 'n', '-', 'o', 'r', 'a', 'n', 'g', 'e', '.', 'd', 'e', '\0', - /* "misskey.xyz", true */ 'm', 'i', 's', 's', 'k', 'e', 'y', '.', 'x', 'y', 'z', '\0', /* "missoy.me", true */ 'm', 'i', 's', 's', 'o', 'y', '.', 'm', 'e', '\0', /* "mistacms.com", true */ 'm', 'i', 's', 't', 'a', 'c', 'm', 's', '.', 'c', 'o', 'm', '\0', /* "mister.hosting", true */ 'm', 'i', 's', 't', 'e', 'r', '.', 'h', 'o', 's', 't', 'i', 'n', 'g', '\0', /* "misterl.net", true */ 'm', 'i', 's', 't', 'e', 'r', 'l', '.', 'n', 'e', 't', '\0', /* "mistreaded.com", true */ 'm', 'i', 's', 't', 'r', 'e', 'a', 'd', 'e', 'd', '.', 'c', 'o', 'm', '\0', /* "mit-uns.org", true */ 'm', 'i', 't', '-', 'u', 'n', 's', '.', 'o', 'r', 'g', '\0', /* "mita.me", true */ 'm', 'i', 't', 'a', '.', 'm', 'e', '\0', /* "mitarbeiter-pc.de", true */ 'm', 'i', 't', 'a', 'r', 'b', 'e', 'i', 't', 'e', 'r', '-', 'p', 'c', '.', 'd', 'e', '\0', @@ -7763,16 +7723,17 @@ static const char kSTSHostTable[] = { /* "montonicms.com", true */ 'm', 'o', 'n', 't', 'o', 'n', 'i', 'c', 'm', 's', '.', 'c', 'o', 'm', '\0', /* "moo.la", true */ 'm', 'o', 'o', '.', 'l', 'a', '\0', /* "moonagic.com", true */ 'm', 'o', 'o', 'n', 'a', 'g', 'i', 'c', '.', 'c', 'o', 'm', '\0', /* "moonless.net", true */ 'm', 'o', 'o', 'n', 'l', 'e', 's', 's', '.', 'n', 'e', 't', '\0', /* "moonloupe.com", true */ 'm', 'o', 'o', 'n', 'l', 'o', 'u', 'p', 'e', '.', 'c', 'o', 'm', '\0', /* "moonraptor.co.uk", true */ 'm', 'o', 'o', 'n', 'r', 'a', 'p', 't', 'o', 'r', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "moonraptor.com", true */ 'm', 'o', 'o', 'n', 'r', 'a', 'p', 't', 'o', 'r', '.', 'c', 'o', 'm', '\0', /* "moonvpn.org", true */ 'm', 'o', 'o', 'n', 'v', 'p', 'n', '.', 'o', 'r', 'g', '\0', + /* "moov.is", true */ 'm', 'o', 'o', 'v', '.', 'i', 's', '\0', /* "moparcraft.com", true */ 'm', 'o', 'p', 'a', 'r', 'c', 'r', 'a', 'f', 't', '.', 'c', 'o', 'm', '\0', /* "moparcraft.net", true */ 'm', 'o', 'p', 'a', 'r', 'c', 'r', 'a', 'f', 't', '.', 'n', 'e', 't', '\0', /* "moparcraft.org", true */ 'm', 'o', 'p', 'a', 'r', 'c', 'r', 'a', 'f', 't', '.', 'o', 'r', 'g', '\0', /* "moparisthebest.com", true */ 'm', 'o', 'p', 'a', 'r', 'i', 's', 't', 'h', 'e', 'b', 'e', 's', 't', '.', 'c', 'o', 'm', '\0', /* "moparisthebest.net", true */ 'm', 'o', 'p', 'a', 'r', 'i', 's', 't', 'h', 'e', 'b', 'e', 's', 't', '.', 'n', 'e', 't', '\0', /* "moparisthebest.org", true */ 'm', 'o', 'p', 'a', 'r', 'i', 's', 't', 'h', 'e', 'b', 'e', 's', 't', '.', 'o', 'r', 'g', '\0', /* "moparscape.net", true */ 'm', 'o', 'p', 'a', 'r', 's', 'c', 'a', 'p', 'e', '.', 'n', 'e', 't', '\0', /* "mor.cloud", true */ 'm', 'o', 'r', '.', 'c', 'l', 'o', 'u', 'd', '\0', @@ -7836,17 +7797,16 @@ static const char kSTSHostTable[] = { /* "msebera.cz", true */ 'm', 's', 'e', 'b', 'e', 'r', 'a', '.', 'c', 'z', '\0', /* "msh100.uk", true */ 'm', 's', 'h', '1', '0', '0', '.', 'u', 'k', '\0', /* "msiegmund.com", true */ 'm', 's', 'i', 'e', 'g', 'm', 'u', 'n', 'd', '.', 'c', 'o', 'm', '\0', /* "msmails.de", true */ 'm', 's', 'm', 'a', 'i', 'l', 's', '.', 'd', 'e', '\0', /* "msno.no", true */ 'm', 's', 'n', 'o', '.', 'n', 'o', '\0', /* "mssys.de", true */ 'm', 's', 's', 'y', 's', '.', 'd', 'e', '\0', /* "mstiles92.com", true */ 'm', 's', 't', 'i', 'l', 'e', 's', '9', '2', '.', 'c', 'o', 'm', '\0', /* "msuna.net", true */ 'm', 's', 'u', 'n', 'a', '.', 'n', 'e', 't', '\0', - /* "mt.me.uk", true */ 'm', 't', '.', 'm', 'e', '.', 'u', 'k', '\0', /* "mtamaki.com", true */ 'm', 't', 'a', 'm', 'a', 'k', 'i', '.', 'c', 'o', 'm', '\0', /* "mtasa.com", true */ 'm', 't', 'a', 's', 'a', '.', 'c', 'o', 'm', '\0', /* "mtau.com", true */ 'm', 't', 'a', 'u', '.', 'c', 'o', 'm', '\0', /* "mtg-tutor.de", true */ 'm', 't', 'g', '-', 't', 'u', 't', 'o', 'r', '.', 'd', 'e', '\0', /* "mthode.org", true */ 'm', 't', 'h', 'o', 'd', 'e', '.', 'o', 'r', 'g', '\0', /* "mths.be", true */ 'm', 't', 'h', 's', '.', 'b', 'e', '\0', /* "mtn.cc", true */ 'm', 't', 'n', '.', 'c', 'c', '\0', /* "mtnz.co.za", true */ 'm', 't', 'n', 'z', '.', 'c', 'o', '.', 'z', 'a', '\0', @@ -7898,21 +7858,21 @@ static const char kSTSHostTable[] = { /* "mvixturismo.com.br", true */ 'm', 'v', 'i', 'x', 't', 'u', 'r', 'i', 's', 'm', 'o', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', /* "mvno.io", true */ 'm', 'v', 'n', 'o', '.', 'i', 'o', '\0', /* "mwavuli.co.ke", true */ 'm', 'w', 'a', 'v', 'u', 'l', 'i', '.', 'c', 'o', '.', 'k', 'e', '\0', /* "mwba.org", true */ 'm', 'w', 'b', 'a', '.', 'o', 'r', 'g', '\0', /* "mwe.st", true */ 'm', 'w', 'e', '.', 's', 't', '\0', /* "mx.org.ua", false */ 'm', 'x', '.', 'o', 'r', 'g', '.', 'u', 'a', '\0', /* "mx.search.yahoo.com", false */ 'm', 'x', '.', 's', 'e', 'a', 'r', 'c', 'h', '.', 'y', 'a', 'h', 'o', 'o', '.', 'c', 'o', 'm', '\0', /* "my-hps.de", true */ 'm', 'y', '-', 'h', 'p', 's', '.', 'd', 'e', '\0', - /* "my-pawnshop.com.ua", true */ 'm', 'y', '-', 'p', 'a', 'w', 'n', 's', 'h', 'o', 'p', '.', 'c', 'o', 'm', '.', 'u', 'a', '\0', + /* "my-pawnshop.com.ua", false */ 'm', 'y', '-', 'p', 'a', 'w', 'n', 's', 'h', 'o', 'p', '.', 'c', 'o', 'm', '.', 'u', 'a', '\0', /* "my.onlime.ch", false */ 'm', 'y', '.', 'o', 'n', 'l', 'i', 'm', 'e', '.', 'c', 'h', '\0', /* "my.usa.gov", false */ 'm', 'y', '.', 'u', 's', 'a', '.', 'g', 'o', 'v', '\0', /* "my.xero.com", false */ 'm', 'y', '.', 'x', 'e', 'r', 'o', '.', 'c', 'o', 'm', '\0', - /* "myaccount.google.com", true */ 'm', 'y', 'a', 'c', 'c', 'o', 'u', 'n', 't', '.', 'g', 'o', 'o', 'g', 'l', 'e', '.', 'c', 'o', 'm', '\0', + /* "myaccount.google.com", false */ 'm', 'y', 'a', 'c', 'c', 'o', 'u', 'n', 't', '.', 'g', 'o', 'o', 'g', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "myadself.com", true */ 'm', 'y', 'a', 'd', 's', 'e', 'l', 'f', '.', 'c', 'o', 'm', '\0', /* "myairshop.gr", true */ 'm', 'y', 'a', 'i', 'r', 's', 'h', 'o', 'p', '.', 'g', 'r', '\0', /* "myartsjournal.com", true */ 'm', 'y', 'a', 'r', 't', 's', 'j', 'o', 'u', 'r', 'n', 'a', 'l', '.', 'c', 'o', 'm', '\0', /* "mybb.com", true */ 'm', 'y', 'b', 'b', '.', 'c', 'o', 'm', '\0', /* "mybeautyjobs.de", true */ 'm', 'y', 'b', 'e', 'a', 'u', 't', 'y', 'j', 'o', 'b', 's', '.', 'd', 'e', '\0', /* "mybudget.xyz", true */ 'm', 'y', 'b', 'u', 'd', 'g', 'e', 't', '.', 'x', 'y', 'z', '\0', /* "mybuilderinlondon.co.uk", true */ 'm', 'y', 'b', 'u', 'i', 'l', 'd', 'e', 'r', 'i', 'n', 'l', 'o', 'n', 'd', 'o', 'n', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "mycieokien.info", false */ 'm', 'y', 'c', 'i', 'e', 'o', 'k', 'i', 'e', 'n', '.', 'i', 'n', 'f', 'o', '\0', @@ -7928,17 +7888,17 @@ static const char kSTSHostTable[] = { /* "mygallery.homelinux.net", true */ 'm', 'y', 'g', 'a', 'l', 'l', 'e', 'r', 'y', '.', 'h', 'o', 'm', 'e', 'l', 'i', 'n', 'u', 'x', '.', 'n', 'e', 't', '\0', /* "mygate.at", true */ 'm', 'y', 'g', 'a', 't', 'e', '.', 'a', 't', '\0', /* "mygdut.com", true */ 'm', 'y', 'g', 'd', 'u', 't', '.', 'c', 'o', 'm', '\0', /* "mygpsite.com", true */ 'm', 'y', 'g', 'p', 's', 'i', 't', 'e', '.', 'c', 'o', 'm', '\0', /* "mygreatjobs.de", true */ 'm', 'y', 'g', 'r', 'e', 'a', 't', 'j', 'o', 'b', 's', '.', 'd', 'e', '\0', /* "mygretchen.de", true */ 'm', 'y', 'g', 'r', 'e', 't', 'c', 'h', 'e', 'n', '.', 'd', 'e', '\0', /* "myimmitracker.com", true */ 'm', 'y', 'i', 'm', 'm', 'i', 't', 'r', 'a', 'c', 'k', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "myip.tech", true */ 'm', 'y', 'i', 'p', '.', 't', 'e', 'c', 'h', '\0', - /* "mykeepsake.xyz", true */ 'm', 'y', 'k', 'e', 'e', 'p', 's', 'a', 'k', 'e', '.', 'x', 'y', 'z', '\0', + /* "mykeepsake.xyz", false */ 'm', 'y', 'k', 'e', 'e', 'p', 's', 'a', 'k', 'e', '.', 'x', 'y', 'z', '\0', /* "mykontool.de", true */ 'm', 'y', 'k', 'o', 'n', 't', 'o', 'o', 'l', '.', 'd', 'e', '\0', /* "mylookout.com", false */ 'm', 'y', 'l', 'o', 'o', 'k', 'o', 'u', 't', '.', 'c', 'o', 'm', '\0', /* "mymotor.nl", true */ 'm', 'y', 'm', 'o', 't', 'o', 'r', '.', 'n', 'l', '\0', /* "myms.eu", true */ 'm', 'y', 'm', 's', '.', 'e', 'u', '\0', /* "mymx.lu", true */ 'm', 'y', 'm', 'x', '.', 'l', 'u', '\0', /* "mynigma.org", true */ 'm', 'y', 'n', 'i', 'g', 'm', 'a', '.', 'o', 'r', 'g', '\0', /* "myonline.hu", true */ 'm', 'y', 'o', 'n', 'l', 'i', 'n', 'e', '.', 'h', 'u', '\0', /* "myownconference.com", true */ 'm', 'y', 'o', 'w', 'n', 'c', 'o', 'n', 'f', 'e', 'r', 'e', 'n', 'c', 'e', '.', 'c', 'o', 'm', '\0', @@ -7952,32 +7912,30 @@ static const char kSTSHostTable[] = { /* "myownconference.ru", true */ 'm', 'y', 'o', 'w', 'n', 'c', 'o', 'n', 'f', 'e', 'r', 'e', 'n', 'c', 'e', '.', 'r', 'u', '\0', /* "myownwebinar.com", true */ 'm', 'y', 'o', 'w', 'n', 'w', 'e', 'b', 'i', 'n', 'a', 'r', '.', 'c', 'o', 'm', '\0', /* "mypaperwriter.com", true */ 'm', 'y', 'p', 'a', 'p', 'e', 'r', 'w', 'r', 'i', 't', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "mypayoffloan.com", true */ 'm', 'y', 'p', 'a', 'y', 'o', 'f', 'f', 'l', 'o', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "mypension.ca", true */ 'm', 'y', 'p', 'e', 'n', 's', 'i', 'o', 'n', '.', 'c', 'a', '\0', /* "myphonebox.de", true */ 'm', 'y', 'p', 'h', 'o', 'n', 'e', 'b', 'o', 'x', '.', 'd', 'e', '\0', /* "myprintcard.de", true */ 'm', 'y', 'p', 'r', 'i', 'n', 't', 'c', 'a', 'r', 'd', '.', 'd', 'e', '\0', /* "myptsite.com", true */ 'm', 'y', 'p', 't', 's', 'i', 't', 'e', '.', 'c', 'o', 'm', '\0', - /* "myraytech.net", false */ 'm', 'y', 'r', 'a', 'y', 't', 'e', 'c', 'h', '.', 'n', 'e', 't', '\0', /* "myrealestatemate.com.au", true */ 'm', 'y', 'r', 'e', 'a', 'l', 'e', 's', 't', 'a', 't', 'e', 'm', 'a', 't', 'e', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "myrepublic.co.id", true */ 'm', 'y', 'r', 'e', 'p', 'u', 'b', 'l', 'i', 'c', '.', 'c', 'o', '.', 'i', 'd', '\0', /* "myresearchapp.com", true */ 'm', 'y', 'r', 'e', 's', 'e', 'a', 'r', 'c', 'h', 'a', 'p', 'p', '.', 'c', 'o', 'm', '\0', /* "myruststats.com", true */ 'm', 'y', 'r', 'u', 's', 't', 's', 't', 'a', 't', 's', '.', 'c', 'o', 'm', '\0', /* "myschoolphoto.org", true */ 'm', 'y', 's', 'c', 'h', 'o', 'o', 'l', 'p', 'h', 'o', 't', 'o', '.', 'o', 'r', 'g', '\0', /* "mysecretcase.com", true */ 'm', 'y', 's', 'e', 'c', 'r', 'e', 't', 'c', 'a', 's', 'e', '.', 'c', 'o', 'm', '\0', /* "myshirtsize.com", true */ 'm', 'y', 's', 'h', 'i', 'r', 't', 's', 'i', 'z', 'e', '.', 'c', 'o', 'm', '\0', /* "mysignal.com", true */ 'm', 'y', 's', 'i', 'g', 'n', 'a', 'l', '.', 'c', 'o', 'm', '\0', /* "mysmelly.com", true */ 'm', 'y', 's', 'm', 'e', 'l', 'l', 'y', '.', 'c', 'o', 'm', '\0', /* "mysoundtalks.com", true */ 'm', 'y', 's', 'o', 'u', 'n', 'd', 't', 'a', 'l', 'k', 's', '.', 'c', 'o', 'm', '\0', /* "mystery-science-theater-3000.de", true */ 'm', 'y', 's', 't', 'e', 'r', 'y', '-', 's', 'c', 'i', 'e', 'n', 'c', 'e', '-', 't', 'h', 'e', 'a', 't', 'e', 'r', '-', '3', '0', '0', '0', '.', 'd', 'e', '\0', /* "mysticplumes.com", true */ 'm', 'y', 's', 't', 'i', 'c', 'p', 'l', 'u', 'm', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "mytc.fr", true */ 'm', 'y', 't', 'c', '.', 'f', 'r', '\0', /* "mythengay.ch", true */ 'm', 'y', 't', 'h', 'e', 'n', 'g', 'a', 'y', '.', 'c', 'h', '\0', - /* "mythslegendscollection.com", true */ 'm', 'y', 't', 'h', 's', 'l', 'e', 'g', 'e', 'n', 'd', 's', 'c', 'o', 'l', 'l', 'e', 'c', 't', 'i', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "mytraiteurs.com", true */ 'm', 'y', 't', 'r', 'a', 'i', 't', 'e', 'u', 'r', 's', '.', 'c', 'o', 'm', '\0', /* "mytripcar.co.uk", true */ 'm', 'y', 't', 'r', 'i', 'p', 'c', 'a', 'r', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "mytripcar.com", true */ 'm', 'y', 't', 'r', 'i', 'p', 'c', 'a', 'r', '.', 'c', 'o', 'm', '\0', /* "mytripcar.de", true */ 'm', 'y', 't', 'r', 'i', 'p', 'c', 'a', 'r', '.', 'd', 'e', '\0', /* "mytripcar.es", true */ 'm', 'y', 't', 'r', 'i', 'p', 'c', 'a', 'r', '.', 'e', 's', '\0', /* "mytty.net", true */ 'm', 'y', 't', 't', 'y', '.', 'n', 'e', 't', '\0', /* "mytweeps.com", true */ 'm', 'y', 't', 'w', 'e', 'e', 'p', 's', '.', 'c', 'o', 'm', '\0', /* "myvpl.com", true */ 'm', 'y', 'v', 'p', 'l', '.', 'c', 'o', 'm', '\0', @@ -8060,16 +8018,17 @@ static const char kSTSHostTable[] = { /* "naviteq.eu", true */ 'n', 'a', 'v', 'i', 't', 'e', 'q', '.', 'e', 'u', '\0', /* "navstevnik.sk", true */ 'n', 'a', 'v', 's', 't', 'e', 'v', 'n', 'i', 'k', '.', 's', 'k', '\0', /* "navycs.com", true */ 'n', 'a', 'v', 'y', 'c', 's', '.', 'c', 'o', 'm', '\0', /* "nayahe.ru", true */ 'n', 'a', 'y', 'a', 'h', 'e', '.', 'r', 'u', '\0', /* "nb.zone", true */ 'n', 'b', '.', 'z', 'o', 'n', 'e', '\0', /* "nb6.de", true */ 'n', 'b', '6', '.', 'd', 'e', '\0', /* "nbl.org.tw", true */ 'n', 'b', 'l', '.', 'o', 'r', 'g', '.', 't', 'w', '\0', /* "nbp.com.pk", true */ 'n', 'b', 'p', '.', 'c', 'o', 'm', '.', 'p', 'k', '\0', + /* "ncconsumer.org", true */ 'n', 'c', 'c', 'o', 'n', 's', 'u', 'm', 'e', 'r', '.', 'o', 'r', 'g', '\0', /* "nchangfong.com", true */ 'n', 'c', 'h', 'a', 'n', 'g', 'f', 'o', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "ncoding.at", true */ 'n', 'c', 'o', 'd', 'i', 'n', 'g', '.', 'a', 't', '\0', /* "ncpc.gov", true */ 'n', 'c', 'p', 'c', '.', 'g', 'o', 'v', '\0', /* "ncpw.gov", true */ 'n', 'c', 'p', 'w', '.', 'g', 'o', 'v', '\0', /* "ncrmnt.org", true */ 'n', 'c', 'r', 'm', 'n', 't', '.', 'o', 'r', 'g', '\0', /* "ncstep.org", true */ 'n', 'c', 's', 't', 'e', 'p', '.', 'o', 'r', 'g', '\0', /* "ndarville.com", true */ 'n', 'd', 'a', 'r', 'v', 'i', 'l', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "ndbt.com", true */ 'n', 'd', 'b', 't', '.', 'c', 'o', 'm', '\0', @@ -8145,16 +8104,17 @@ static const char kSTSHostTable[] = { /* "netmagik.com", true */ 'n', 'e', 't', 'm', 'a', 'g', 'i', 'k', '.', 'c', 'o', 'm', '\0', /* "netmazk.net", true */ 'n', 'e', 't', 'm', 'a', 'z', 'k', '.', 'n', 'e', 't', '\0', /* "netnodes.net", true */ 'n', 'e', 't', 'n', 'o', 'd', 'e', 's', '.', 'n', 'e', 't', '\0', /* "netprofile.com.au", true */ 'n', 'e', 't', 'p', 'r', 'o', 'f', 'i', 'l', 'e', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "netraising.com", true */ 'n', 'e', 't', 'r', 'a', 'i', 's', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "netrelay.email", true */ 'n', 'e', 't', 'r', 'e', 'l', 'a', 'y', '.', 'e', 'm', 'a', 'i', 'l', '\0', /* "netrider.net.au", false */ 'n', 'e', 't', 'r', 'i', 'd', 'e', 'r', '.', 'n', 'e', 't', '.', 'a', 'u', '\0', /* "netronix.be", true */ 'n', 'e', 't', 'r', 'o', 'n', 'i', 'x', '.', 'b', 'e', '\0', + /* "netsigna.de", true */ 'n', 'e', 't', 's', 'i', 'g', 'n', 'a', '.', 'd', 'e', '\0', /* "netsite.dk", true */ 'n', 'e', 't', 's', 'i', 't', 'e', '.', 'd', 'k', '\0', /* "netsoins.org", true */ 'n', 'e', 't', 's', 'o', 'i', 'n', 's', '.', 'o', 'r', 'g', '\0', /* "netsparker.com", false */ 'n', 'e', 't', 's', 'p', 'a', 'r', 'k', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "netsystems.pro", true */ 'n', 'e', 't', 's', 'y', 's', 't', 'e', 'm', 's', '.', 'p', 'r', 'o', '\0', /* "nette.org", true */ 'n', 'e', 't', 't', 'e', '.', 'o', 'r', 'g', '\0', /* "nettefoundation.com", true */ 'n', 'e', 't', 't', 'e', 'f', 'o', 'u', 'n', 'd', 'a', 't', 'i', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "nettia.fi", true */ 'n', 'e', 't', 't', 'i', 'a', '.', 'f', 'i', '\0', /* "nettools.link", true */ 'n', 'e', 't', 't', 'o', 'o', 'l', 's', '.', 'l', 'i', 'n', 'k', '\0', @@ -8170,16 +8130,17 @@ static const char kSTSHostTable[] = { /* "networkingnexus.net", true */ 'n', 'e', 't', 'w', 'o', 'r', 'k', 'i', 'n', 'g', 'n', 'e', 'x', 'u', 's', '.', 'n', 'e', 't', '\0', /* "networkingphoenix.com", true */ 'n', 'e', 't', 'w', 'o', 'r', 'k', 'i', 'n', 'g', 'p', 'h', 'o', 'e', 'n', 'i', 'x', '.', 'c', 'o', 'm', '\0', /* "networth.at", true */ 'n', 'e', 't', 'w', 'o', 'r', 't', 'h', '.', 'a', 't', '\0', /* "networx-online.de", true */ 'n', 'e', 't', 'w', 'o', 'r', 'x', '-', 'o', 'n', 'l', 'i', 'n', 'e', '.', 'd', 'e', '\0', /* "netzfrauen.org", true */ 'n', 'e', 't', 'z', 'f', 'r', 'a', 'u', 'e', 'n', '.', 'o', 'r', 'g', '\0', /* "netzvieh.de", true */ 'n', 'e', 't', 'z', 'v', 'i', 'e', 'h', '.', 'd', 'e', '\0', /* "netzwerkwerk.de", true */ 'n', 'e', 't', 'z', 'w', 'e', 'r', 'k', 'w', 'e', 'r', 'k', '.', 'd', 'e', '\0', /* "netzzwerg4u.de", true */ 'n', 'e', 't', 'z', 'z', 'w', 'e', 'r', 'g', '4', 'u', '.', 'd', 'e', '\0', + /* "neuflizeobc.net", true */ 'n', 'e', 'u', 'f', 'l', 'i', 'z', 'e', 'o', 'b', 'c', '.', 'n', 'e', 't', '\0', /* "neuhaus-city.de", true */ 'n', 'e', 'u', 'h', 'a', 'u', 's', '-', 'c', 'i', 't', 'y', '.', 'd', 'e', '\0', /* "neurogroove.info", true */ 'n', 'e', 'u', 'r', 'o', 'g', 'r', 'o', 'o', 'v', 'e', '.', 'i', 'n', 'f', 'o', '\0', /* "neuronasdigitales.com", true */ 'n', 'e', 'u', 'r', 'o', 'n', 'a', 's', 'd', 'i', 'g', 'i', 't', 'a', 'l', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "neuwal.com", true */ 'n', 'e', 'u', 'w', 'a', 'l', '.', 'c', 'o', 'm', '\0', /* "nevadafiber.net", true */ 'n', 'e', 'v', 'a', 'd', 'a', 'f', 'i', 'b', 'e', 'r', '.', 'n', 'e', 't', '\0', /* "never-afk.de", true */ 'n', 'e', 'v', 'e', 'r', '-', 'a', 'f', 'k', '.', 'd', 'e', '\0', /* "new-black-order.com", true */ 'n', 'e', 'w', '-', 'b', 'l', 'a', 'c', 'k', '-', 'o', 'r', 'd', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "new-process.ch", true */ 'n', 'e', 'w', '-', 'p', 'r', 'o', 'c', 'e', 's', 's', '.', 'c', 'h', '\0', @@ -8326,17 +8287,16 @@ static const char kSTSHostTable[] = { /* "noob-box.net", false */ 'n', 'o', 'o', 'b', '-', 'b', 'o', 'x', '.', 'n', 'e', 't', '\0', /* "noobunbox.net", true */ 'n', 'o', 'o', 'b', 'u', 'n', 'b', 'o', 'x', '.', 'n', 'e', 't', '\0', /* "noodlesandwich.com", true */ 'n', 'o', 'o', 'd', 'l', 'e', 's', 'a', 'n', 'd', 'w', 'i', 'c', 'h', '.', 'c', 'o', 'm', '\0', /* "noop.ch", true */ 'n', 'o', 'o', 'p', '.', 'c', 'h', '\0', /* "noordsee.de", true */ 'n', 'o', 'o', 'r', 'd', 's', 'e', 'e', '.', 'd', 'e', '\0', /* "nootropicsource.com", true */ 'n', 'o', 'o', 't', 'r', 'o', 'p', 'i', 'c', 's', 'o', 'u', 'r', 'c', 'e', '.', 'c', 'o', 'm', '\0', /* "norandom.com", true */ 'n', 'o', 'r', 'a', 'n', 'd', 'o', 'm', '.', 'c', 'o', 'm', '\0', /* "nord-sud.be", true */ 'n', 'o', 'r', 'd', '-', 's', 'u', 'd', '.', 'b', 'e', '\0', - /* "nordiccasinocommunity.com", true */ 'n', 'o', 'r', 'd', 'i', 'c', 'c', 'a', 's', 'i', 'n', 'o', 'c', 'o', 'm', 'm', 'u', 'n', 'i', 't', 'y', '.', 'c', 'o', 'm', '\0', /* "nordor.homeip.net", true */ 'n', 'o', 'r', 'd', 'o', 'r', '.', 'h', 'o', 'm', 'e', 'i', 'p', '.', 'n', 'e', 't', '\0', /* "nordseeblicke.de", true */ 'n', 'o', 'r', 'd', 's', 'e', 'e', 'b', 'l', 'i', 'c', 'k', 'e', '.', 'd', 'e', '\0', /* "noreply.mx", true */ 'n', 'o', 'r', 'e', 'p', 'l', 'y', '.', 'm', 'x', '\0', /* "norrliden.de", true */ 'n', 'o', 'r', 'r', 'l', 'i', 'd', 'e', 'n', '.', 'd', 'e', '\0', /* "norskpensjon.no", true */ 'n', 'o', 'r', 's', 'k', 'p', 'e', 'n', 's', 'j', 'o', 'n', '.', 'n', 'o', '\0', /* "northcutt.com", true */ 'n', 'o', 'r', 't', 'h', 'c', 'u', 't', 't', '.', 'c', 'o', 'm', '\0', /* "northernmuscle.ca", true */ 'n', 'o', 'r', 't', 'h', 'e', 'r', 'n', 'm', 'u', 's', 'c', 'l', 'e', '.', 'c', 'a', '\0', /* "northpole.dance", true */ 'n', 'o', 'r', 't', 'h', 'p', 'o', 'l', 'e', '.', 'd', 'a', 'n', 'c', 'e', '\0', @@ -8395,17 +8355,17 @@ static const char kSTSHostTable[] = { /* "ntotten.com", true */ 'n', 't', 'o', 't', 't', 'e', 'n', '.', 'c', 'o', 'm', '\0', /* "ntppool.org", true */ 'n', 't', 'p', 'p', 'o', 'o', 'l', '.', 'o', 'r', 'g', '\0', /* "nube.ninja", true */ 'n', 'u', 'b', 'e', '.', 'n', 'i', 'n', 'j', 'a', '\0', /* "nubu.at", true */ 'n', 'u', 'b', 'u', '.', 'a', 't', '\0', /* "nukenet.se", true */ 'n', 'u', 'k', 'e', 'n', 'e', 't', '.', 's', 'e', '\0', /* "nukute.com", true */ 'n', 'u', 'k', 'u', 't', 'e', '.', 'c', 'o', 'm', '\0', /* "null-pointer.eu", true */ 'n', 'u', 'l', 'l', '-', 'p', 'o', 'i', 'n', 't', 'e', 'r', '.', 'e', 'u', '\0', /* "nullpro.com", true */ 'n', 'u', 'l', 'l', 'p', 'r', 'o', '.', 'c', 'o', 'm', '\0', - /* "number.me", true */ 'n', 'u', 'm', 'b', 'e', 'r', '.', 'm', 'e', '\0', + /* "number.me", false */ 'n', 'u', 'm', 'b', 'e', 'r', '.', 'm', 'e', '\0', /* "numberoneshoes.co.nz", true */ 'n', 'u', 'm', 'b', 'e', 'r', 'o', 'n', 'e', 's', 'h', 'o', 'e', 's', '.', 'c', 'o', '.', 'n', 'z', '\0', /* "numero-aleatorio.com", true */ 'n', 'u', 'm', 'e', 'r', 'o', '-', 'a', 'l', 'e', 'a', 't', 'o', 'r', 'i', 'o', '.', 'c', 'o', 'm', '\0', /* "numero-di-telefono.it", true */ 'n', 'u', 'm', 'e', 'r', 'o', '-', 'd', 'i', '-', 't', 'e', 'l', 'e', 'f', 'o', 'n', 'o', '.', 'i', 't', '\0', /* "nurserybook.co", true */ 'n', 'u', 'r', 's', 'e', 'r', 'y', 'b', 'o', 'o', 'k', '.', 'c', 'o', '\0', /* "nusatrip-api.com", true */ 'n', 'u', 's', 'a', 't', 'r', 'i', 'p', '-', 'a', 'p', 'i', '.', 'c', 'o', 'm', '\0', /* "nuttyveg.com", true */ 'n', 'u', 't', 't', 'y', 'v', 'e', 'g', '.', 'c', 'o', 'm', '\0', /* "nuvechtdal.nl", true */ 'n', 'u', 'v', 'e', 'c', 'h', 't', 'd', 'a', 'l', '.', 'n', 'l', '\0', /* "nuvini.com", true */ 'n', 'u', 'v', 'i', 'n', 'i', '.', 'c', 'o', 'm', '\0', @@ -8460,17 +8420,16 @@ static const char kSTSHostTable[] = { /* "octod.tk", true */ 'o', 'c', 't', 'o', 'd', '.', 't', 'k', '\0', /* "octofox.de", true */ 'o', 'c', 't', 'o', 'f', 'o', 'x', '.', 'd', 'e', '\0', /* "octothorpe.club", true */ 'o', 'c', 't', 'o', 't', 'h', 'o', 'r', 'p', 'e', '.', 'c', 'l', 'u', 'b', '\0', /* "oddnumber.ca", true */ 'o', 'd', 'd', 'n', 'u', 'm', 'b', 'e', 'r', '.', 'c', 'a', '\0', /* "oddsandevens.ca", true */ 'o', 'd', 'd', 's', 'a', 'n', 'd', 'e', 'v', 'e', 'n', 's', '.', 'c', 'a', '\0', /* "oddsandevensbookkeeping.ca", true */ 'o', 'd', 'd', 's', 'a', 'n', 'd', 'e', 'v', 'e', 'n', 's', 'b', 'o', 'o', 'k', 'k', 'e', 'e', 'p', 'i', 'n', 'g', '.', 'c', 'a', '\0', /* "oddtime.net", true */ 'o', 'd', 'd', 't', 'i', 'm', 'e', '.', 'n', 'e', 't', '\0', /* "odinoffice.no", true */ 'o', 'd', 'i', 'n', 'o', 'f', 'f', 'i', 'c', 'e', '.', 'n', 'o', '\0', - /* "oe8.bet", true */ 'o', 'e', '8', '.', 'b', 'e', 't', '\0', /* "oeh.ac.at", true */ 'o', 'e', 'h', '.', 'a', 'c', '.', 'a', 't', '\0', /* "office-de-tourisme.net", true */ 'o', 'f', 'f', 'i', 'c', 'e', '-', 'd', 'e', '-', 't', 'o', 'u', 'r', 'i', 's', 'm', 'e', '.', 'n', 'e', 't', '\0', /* "offshoot.rentals", true */ 'o', 'f', 'f', 's', 'h', 'o', 'o', 't', '.', 'r', 'e', 'n', 't', 'a', 'l', 's', '\0', /* "oftn.org", true */ 'o', 'f', 't', 'n', '.', 'o', 'r', 'g', '\0', /* "ogocare.com", true */ 'o', 'g', 'o', 'c', 'a', 'r', 'e', '.', 'c', 'o', 'm', '\0', /* "ogogoshop.com", true */ 'o', 'g', 'o', 'g', 'o', 's', 'h', 'o', 'p', '.', 'c', 'o', 'm', '\0', /* "oguya.ch", true */ 'o', 'g', 'u', 'y', 'a', '.', 'c', 'h', '\0', /* "oh14.de", true */ 'o', 'h', '1', '4', '.', 'd', 'e', '\0', @@ -8506,17 +8465,16 @@ static const char kSTSHostTable[] = { /* "olymp-arts.world", true */ 'o', 'l', 'y', 'm', 'p', '-', 'a', 'r', 't', 's', '.', 'w', 'o', 'r', 'l', 'd', '\0', /* "omacostudio.com", true */ 'o', 'm', 'a', 'c', 'o', 's', 't', 'u', 'd', 'i', 'o', '.', 'c', 'o', 'm', '\0', /* "omifind.com", true */ 'o', 'm', 'i', 'f', 'i', 'n', 'd', '.', 'c', 'o', 'm', '\0', /* "omitech.co.uk", true */ 'o', 'm', 'i', 't', 'e', 'c', 'h', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "omniasl.com", true */ 'o', 'm', 'n', 'i', 'a', 's', 'l', '.', 'c', 'o', 'm', '\0', /* "omnienviro.com", true */ 'o', 'm', 'n', 'i', 'e', 'n', 'v', 'i', 'r', 'o', '.', 'c', 'o', 'm', '\0', /* "omnienviro.com.au", true */ 'o', 'm', 'n', 'i', 'e', 'n', 'v', 'i', 'r', 'o', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "omniverse.ru", true */ 'o', 'm', 'n', 'i', 'v', 'e', 'r', 's', 'e', '.', 'r', 'u', '\0', - /* "omquote.gq", true */ 'o', 'm', 'q', 'u', 'o', 't', 'e', '.', 'g', 'q', '\0', /* "omskit.ru", true */ 'o', 'm', 's', 'k', 'i', 't', '.', 'r', 'u', '\0', /* "onaboat.se", true */ 'o', 'n', 'a', 'b', 'o', 'a', 't', '.', 's', 'e', '\0', /* "onarto.com", true */ 'o', 'n', 'a', 'r', 't', 'o', '.', 'c', 'o', 'm', '\0', /* "ondrej.org", true */ 'o', 'n', 'd', 'r', 'e', 'j', '.', 'o', 'r', 'g', '\0', /* "one---line.com", true */ 'o', 'n', 'e', '-', '-', '-', 'l', 'i', 'n', 'e', '.', 'c', 'o', 'm', '\0', /* "onearth.one", true */ 'o', 'n', 'e', 'a', 'r', 't', 'h', '.', 'o', 'n', 'e', '\0', /* "oneazcu.com", false */ 'o', 'n', 'e', 'a', 'z', 'c', 'u', '.', 'c', 'o', 'm', '\0', /* "oneclickloan.com", true */ 'o', 'n', 'e', 'c', 'l', 'i', 'c', 'k', 'l', 'o', 'a', 'n', '.', 'c', 'o', 'm', '\0', @@ -8590,17 +8548,16 @@ static const char kSTSHostTable[] = { /* "opensource-cms.nl", true */ 'o', 'p', 'e', 'n', 's', 'o', 'u', 'r', 'c', 'e', '-', 'c', 'm', 's', '.', 'n', 'l', '\0', /* "opensourcehouse.net", true */ 'o', 'p', 'e', 'n', 's', 'o', 'u', 'r', 'c', 'e', 'h', 'o', 'u', 's', 'e', '.', 'n', 'e', 't', '\0', /* "openssl.org", true */ 'o', 'p', 'e', 'n', 's', 's', 'l', '.', 'o', 'r', 'g', '\0', /* "openstreetmap.is", true */ 'o', 'p', 'e', 'n', 's', 't', 'r', 'e', 'e', 't', 'm', 'a', 'p', '.', 'i', 's', '\0', /* "opentrack.info", true */ 'o', 'p', 'e', 'n', 't', 'r', 'a', 'c', 'k', '.', 'i', 'n', 'f', 'o', '\0', /* "opentrash.org", true */ 'o', 'p', 'e', 'n', 't', 'r', 'a', 's', 'h', '.', 'o', 'r', 'g', '\0', /* "openverse.com", true */ 'o', 'p', 'e', 'n', 'v', 'e', 'r', 's', 'e', '.', 'c', 'o', 'm', '\0', /* "openvz.org", true */ 'o', 'p', 'e', 'n', 'v', 'z', '.', 'o', 'r', 'g', '\0', - /* "openxmpp.com", false */ 'o', 'p', 'e', 'n', 'x', 'm', 'p', 'p', '.', 'c', 'o', 'm', '\0', /* "opim.ca", true */ 'o', 'p', 'i', 'm', '.', 'c', 'a', '\0', /* "opium.io", true */ 'o', 'p', 'i', 'u', 'm', '.', 'i', 'o', '\0', /* "oplop.appspot.com", true */ 'o', 'p', 'l', 'o', 'p', '.', 'a', 'p', 'p', 's', 'p', 'o', 't', '.', 'c', 'o', 'm', '\0', /* "oppaiti.me", true */ 'o', 'p', 'p', 'a', 'i', 't', 'i', '.', 'm', 'e', '\0', /* "opperwall.net", true */ 'o', 'p', 'p', 'e', 'r', 'w', 'a', 'l', 'l', '.', 'n', 'e', 't', '\0', /* "opq.pw", true */ 'o', 'p', 'q', '.', 'p', 'w', '\0', /* "oprechtgezegd.nl", true */ 'o', 'p', 'r', 'e', 'c', 'h', 't', 'g', 'e', 'z', 'e', 'g', 'd', '.', 'n', 'l', '\0', /* "opreismetingvoorunicef.nl", false */ 'o', 'p', 'r', 'e', 'i', 's', 'm', 'e', 't', 'i', 'n', 'g', 'v', 'o', 'o', 'r', 'u', 'n', 'i', 'c', 'e', 'f', '.', 'n', 'l', '\0', @@ -8625,17 +8582,16 @@ static const char kSTSHostTable[] = { /* "orf-kartentausch.at", true */ 'o', 'r', 'f', '-', 'k', 'a', 'r', 't', 'e', 'n', 't', 'a', 'u', 's', 'c', 'h', '.', 'a', 't', '\0', /* "organic-superfood.net", true */ 'o', 'r', 'g', 'a', 'n', 'i', 'c', '-', 's', 'u', 'p', 'e', 'r', 'f', 'o', 'o', 'd', '.', 'n', 'e', 't', '\0', /* "organicae.com", true */ 'o', 'r', 'g', 'a', 'n', 'i', 'c', 'a', 'e', '.', 'c', 'o', 'm', '\0', /* "orhideous.name", true */ 'o', 'r', 'h', 'i', 'd', 'e', 'o', 'u', 's', '.', 'n', 'a', 'm', 'e', '\0', /* "oricejoc.com", false */ 'o', 'r', 'i', 'c', 'e', 'j', 'o', 'c', '.', 'c', 'o', 'm', '\0', /* "orientalart.nl", true */ 'o', 'r', 'i', 'e', 'n', 't', 'a', 'l', 'a', 'r', 't', '.', 'n', 'l', '\0', /* "origami.to", true */ 'o', 'r', 'i', 'g', 'a', 'm', 'i', '.', 't', 'o', '\0', /* "originalmockups.com", true */ 'o', 'r', 'i', 'g', 'i', 'n', 'a', 'l', 'm', 'o', 'c', 'k', 'u', 'p', 's', '.', 'c', 'o', 'm', '\0', - /* "orioncustompcs.com", false */ 'o', 'r', 'i', 'o', 'n', 'c', 'u', 's', 't', 'o', 'm', 'p', 'c', 's', '.', 'c', 'o', 'm', '\0', /* "orlives.de", true */ 'o', 'r', 'l', 'i', 'v', 'e', 's', '.', 'd', 'e', '\0', /* "oroweatorganic.com", true */ 'o', 'r', 'o', 'w', 'e', 'a', 't', 'o', 'r', 'g', 'a', 'n', 'i', 'c', '.', 'c', 'o', 'm', '\0', /* "orrs.de", true */ 'o', 'r', 'r', 's', '.', 'd', 'e', '\0', /* "osacrypt.studio", true */ 'o', 's', 'a', 'c', 'r', 'y', 'p', 't', '.', 's', 't', 'u', 'd', 'i', 'o', '\0', /* "osao.org", true */ 'o', 's', 'a', 'o', '.', 'o', 'r', 'g', '\0', /* "oscarvk.ch", true */ 'o', 's', 'c', 'a', 'r', 'v', 'k', '.', 'c', 'h', '\0', /* "oscsdp.cz", true */ 'o', 's', 'c', 's', 'd', 'p', '.', 'c', 'z', '\0', /* "oses.mobi", true */ 'o', 's', 'e', 's', '.', 'm', 'o', 'b', 'i', '\0', @@ -8697,19 +8653,17 @@ static const char kSTSHostTable[] = { /* "p3in.com", true */ 'p', '3', 'i', 'n', '.', 'c', 'o', 'm', '\0', /* "pa-w.de", true */ 'p', 'a', '-', 'w', '.', 'd', 'e', '\0', /* "pace.car", true */ 'p', 'a', 'c', 'e', '.', 'c', 'a', 'r', '\0', /* "pacelink.de", true */ 'p', 'a', 'c', 'e', 'l', 'i', 'n', 'k', '.', 'd', 'e', '\0', /* "packagist.org", false */ 'p', 'a', 'c', 'k', 'a', 'g', 'i', 's', 't', '.', 'o', 'r', 'g', '\0', /* "packer.io", true */ 'p', 'a', 'c', 'k', 'e', 'r', '.', 'i', 'o', '\0', /* "pacoda.de", true */ 'p', 'a', 'c', 'o', 'd', 'a', '.', 'd', 'e', '\0', /* "pactf.com", true */ 'p', 'a', 'c', 't', 'f', '.', 'c', 'o', 'm', '\0', - /* "pader-deko.de", true */ 'p', 'a', 'd', 'e', 'r', '-', 'd', 'e', 'k', 'o', '.', 'd', 'e', '\0', /* "pagerate.io", true */ 'p', 'a', 'g', 'e', 'r', 'a', 't', 'e', '.', 'i', 'o', '\0', - /* "pagetoimage.com", true */ 'p', 'a', 'g', 'e', 't', 'o', 'i', 'm', 'a', 'g', 'e', '.', 'c', 'o', 'm', '\0', /* "pagewizz.com", false */ 'p', 'a', 'g', 'e', 'w', 'i', 'z', 'z', '.', 'c', 'o', 'm', '\0', /* "paginapolitica.ro", true */ 'p', 'a', 'g', 'i', 'n', 'a', 'p', 'o', 'l', 'i', 't', 'i', 'c', 'a', '.', 'r', 'o', '\0', /* "pagure.io", true */ 'p', 'a', 'g', 'u', 'r', 'e', '.', 'i', 'o', '\0', /* "pagure.org", true */ 'p', 'a', 'g', 'u', 'r', 'e', '.', 'o', 'r', 'g', '\0', /* "pahae.de", true */ 'p', 'a', 'h', 'a', 'e', '.', 'd', 'e', '\0', /* "painosso.org", true */ 'p', 'a', 'i', 'n', 'o', 's', 's', 'o', '.', 'o', 'r', 'g', '\0', /* "paintingat.com", true */ 'p', 'a', 'i', 'n', 't', 'i', 'n', 'g', 'a', 't', '.', 'c', 'o', 'm', '\0', /* "pajonzeck.de", true */ 'p', 'a', 'j', 'o', 'n', 'z', 'e', 'c', 'k', '.', 'd', 'e', '\0', @@ -8719,17 +8673,16 @@ static const char kSTSHostTable[] = { /* "pakistani.dating", true */ 'p', 'a', 'k', 'i', 's', 't', 'a', 'n', 'i', '.', 'd', 'a', 't', 'i', 'n', 'g', '\0', /* "pakke.de", true */ 'p', 'a', 'k', 'k', 'e', '.', 'd', 'e', '\0', /* "pakremit.com", true */ 'p', 'a', 'k', 'r', 'e', 'm', 'i', 't', '.', 'c', 'o', 'm', '\0', /* "palatin.at", true */ 'p', 'a', 'l', 'a', 't', 'i', 'n', '.', 'a', 't', '\0', /* "palationtrade.com", true */ 'p', 'a', 'l', 'a', 't', 'i', 'o', 'n', 't', 'r', 'a', 'd', 'e', '.', 'c', 'o', 'm', '\0', /* "palava.tv", true */ 'p', 'a', 'l', 'a', 'v', 'a', '.', 't', 'v', '\0', /* "pamplona.tv", true */ 'p', 'a', 'm', 'p', 'l', 'o', 'n', 'a', '.', 't', 'v', '\0', /* "pan.digital", true */ 'p', 'a', 'n', '.', 'd', 'i', 'g', 'i', 't', 'a', 'l', '\0', - /* "panaceallc.net", true */ 'p', 'a', 'n', 'a', 'c', 'e', 'a', 'l', 'l', 'c', '.', 'n', 'e', 't', '\0', /* "panamaequity.com", false */ 'p', 'a', 'n', 'a', 'm', 'a', 'e', 'q', 'u', 'i', 't', 'y', '.', 'c', 'o', 'm', '\0', /* "panamateakforestry.com", true */ 'p', 'a', 'n', 'a', 'm', 'a', 't', 'e', 'a', 'k', 'f', 'o', 'r', 'e', 's', 't', 'r', 'y', '.', 'c', 'o', 'm', '\0', /* "panaxis.ch", true */ 'p', 'a', 'n', 'a', 'x', 'i', 's', '.', 'c', 'h', '\0', /* "pandymic.com", true */ 'p', 'a', 'n', 'd', 'y', 'm', 'i', 'c', '.', 'c', 'o', 'm', '\0', /* "panelomix.net", true */ 'p', 'a', 'n', 'e', 'l', 'o', 'm', 'i', 'x', '.', 'n', 'e', 't', '\0', /* "paneu.de", true */ 'p', 'a', 'n', 'e', 'u', '.', 'd', 'e', '\0', /* "panmetro.com", true */ 'p', 'a', 'n', 'm', 'e', 't', 'r', 'o', '.', 'c', 'o', 'm', '\0', /* "panni.me", false */ 'p', 'a', 'n', 'n', 'i', '.', 'm', 'e', '\0', @@ -8811,17 +8764,16 @@ static const char kSTSHostTable[] = { /* "patriksimek.cz", true */ 'p', 'a', 't', 'r', 'i', 'k', 's', 'i', 'm', 'e', 'k', '.', 'c', 'z', '\0', /* "paudley.ca", true */ 'p', 'a', 'u', 'd', 'l', 'e', 'y', '.', 'c', 'a', '\0', /* "paudley.com", true */ 'p', 'a', 'u', 'd', 'l', 'e', 'y', '.', 'c', 'o', 'm', '\0', /* "paudley.org", true */ 'p', 'a', 'u', 'd', 'l', 'e', 'y', '.', 'o', 'r', 'g', '\0', /* "paul-kerebel.pro", true */ 'p', 'a', 'u', 'l', '-', 'k', 'e', 'r', 'e', 'b', 'e', 'l', '.', 'p', 'r', 'o', '\0', /* "paul.reviews", true */ 'p', 'a', 'u', 'l', '.', 'r', 'e', 'v', 'i', 'e', 'w', 's', '\0', /* "pauladamsmith.com", true */ 'p', 'a', 'u', 'l', 'a', 'd', 'a', 'm', 's', 'm', 'i', 't', 'h', '.', 'c', 'o', 'm', '\0', /* "paulbdelaat.nl", true */ 'p', 'a', 'u', 'l', 'b', 'd', 'e', 'l', 'a', 'a', 't', '.', 'n', 'l', '\0', - /* "paulchen.at", true */ 'p', 'a', 'u', 'l', 'c', 'h', 'e', 'n', '.', 'a', 't', '\0', /* "paulinewesterman.nl", true */ 'p', 'a', 'u', 'l', 'i', 'n', 'e', 'w', 'e', 's', 't', 'e', 'r', 'm', 'a', 'n', '.', 'n', 'l', '\0', /* "paulov.info", true */ 'p', 'a', 'u', 'l', 'o', 'v', '.', 'i', 'n', 'f', 'o', '\0', /* "paulproell.at", true */ 'p', 'a', 'u', 'l', 'p', 'r', 'o', 'e', 'l', 'l', '.', 'a', 't', '\0', /* "paulschreiber.com", true */ 'p', 'a', 'u', 'l', 's', 'c', 'h', 'r', 'e', 'i', 'b', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "paultibbetts.uk", true */ 'p', 'a', 'u', 'l', 't', 'i', 'b', 'b', 'e', 't', 't', 's', '.', 'u', 'k', '\0', /* "paulwatabe.com", true */ 'p', 'a', 'u', 'l', 'w', 'a', 't', 'a', 'b', 'e', '.', 'c', 'o', 'm', '\0', /* "pauspam.net", true */ 'p', 'a', 'u', 's', 'p', 'a', 'm', '.', 'n', 'e', 't', '\0', /* "pavelrebrov.com", true */ 'p', 'a', 'v', 'e', 'l', 'r', 'e', 'b', 'r', 'o', 'v', '.', 'c', 'o', 'm', '\0', @@ -9005,25 +8957,23 @@ static const char kSTSHostTable[] = { /* "phpsecure.info", true */ 'p', 'h', 'p', 's', 'e', 'c', 'u', 'r', 'e', '.', 'i', 'n', 'f', 'o', '\0', /* "phra.gs", true */ 'p', 'h', 'r', 'a', '.', 'g', 's', '\0', /* "phryanjr.com", false */ 'p', 'h', 'r', 'y', 'a', 'n', 'j', 'r', '.', 'c', 'o', 'm', '\0', /* "phryneas.de", true */ 'p', 'h', 'r', 'y', 'n', 'e', 'a', 's', '.', 'd', 'e', '\0', /* "phunehehe.net", true */ 'p', 'h', 'u', 'n', 'e', 'h', 'e', 'h', 'e', '.', 'n', 'e', 't', '\0', /* "physicaltherapist.com", true */ 'p', 'h', 'y', 's', 'i', 'c', 'a', 'l', 't', 'h', 'e', 'r', 'a', 'p', 'i', 's', 't', '.', 'c', 'o', 'm', '\0', /* "pi-control.de", true */ 'p', 'i', '-', 'c', 'o', 'n', 't', 'r', 'o', 'l', '.', 'd', 'e', '\0', /* "pi-supply.com", true */ 'p', 'i', '-', 's', 'u', 'p', 'p', 'l', 'y', '.', 'c', 'o', 'm', '\0', - /* "pic.gov", true */ 'p', 'i', 'c', '.', 'g', 'o', 'v', '\0', /* "picardiascr.com", true */ 'p', 'i', 'c', 'a', 'r', 'd', 'i', 'a', 's', 'c', 'r', '.', 'c', 'o', 'm', '\0', /* "pickme.nl", true */ 'p', 'i', 'c', 'k', 'm', 'e', '.', 'n', 'l', '\0', /* "picksin.club", true */ 'p', 'i', 'c', 'k', 's', 'i', 'n', '.', 'c', 'l', 'u', 'b', '\0', /* "picoauto.com", true */ 'p', 'i', 'c', 'o', 'a', 'u', 't', 'o', '.', 'c', 'o', 'm', '\0', /* "picone.com.au", true */ 'p', 'i', 'c', 'o', 'n', 'e', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "piconepress.com", true */ 'p', 'i', 'c', 'o', 'n', 'e', 'p', 'r', 'e', 's', 's', '.', 'c', 'o', 'm', '\0', /* "picotech.com", true */ 'p', 'i', 'c', 'o', 't', 'e', 'c', 'h', '.', 'c', 'o', 'm', '\0', - /* "picotronic.biz", true */ 'p', 'i', 'c', 'o', 't', 'r', 'o', 'n', 'i', 'c', '.', 'b', 'i', 'z', '\0', /* "picotronic.de", true */ 'p', 'i', 'c', 'o', 't', 'r', 'o', 'n', 'i', 'c', '.', 'd', 'e', '\0', /* "picster.at", true */ 'p', 'i', 'c', 's', 't', 'e', 'r', '.', 'a', 't', '\0', /* "picsto.re", true */ 'p', 'i', 'c', 's', 't', 'o', '.', 'r', 'e', '\0', /* "picturingjordan.com", true */ 'p', 'i', 'c', 't', 'u', 'r', 'i', 'n', 'g', 'j', 'o', 'r', 'd', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "piekacz.co.uk", true */ 'p', 'i', 'e', 'k', 'a', 'c', 'z', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "piekacz.eu.org", true */ 'p', 'i', 'e', 'k', 'a', 'c', 'z', '.', 'e', 'u', '.', 'o', 'r', 'g', '\0', /* "piekacz.net", true */ 'p', 'i', 'e', 'k', 'a', 'c', 'z', '.', 'n', 'e', 't', '\0', /* "pieperhome.de", true */ 'p', 'i', 'e', 'p', 'e', 'r', 'h', 'o', 'm', 'e', '.', 'd', 'e', '\0', @@ -9204,20 +9154,20 @@ static const char kSTSHostTable[] = { /* "posobota.cz", true */ 'p', 'o', 's', 'o', 'b', 'o', 't', 'a', '.', 'c', 'z', '\0', /* "post4me.at", true */ 'p', 'o', 's', 't', '4', 'm', 'e', '.', 'a', 't', '\0', /* "postal.dk", true */ 'p', 'o', 's', 't', 'a', 'l', '.', 'd', 'k', '\0', /* "postblue.info", true */ 'p', 'o', 's', 't', 'b', 'l', 'u', 'e', '.', 'i', 'n', 'f', 'o', '\0', /* "postbox.life", true */ 'p', 'o', 's', 't', 'b', 'o', 'x', '.', 'l', 'i', 'f', 'e', '\0', /* "postcodegarant.nl", true */ 'p', 'o', 's', 't', 'c', 'o', 'd', 'e', 'g', 'a', 'r', 'a', 'n', 't', '.', 'n', 'l', '\0', /* "postcodewise.co.uk", true */ 'p', 'o', 's', 't', 'c', 'o', 'd', 'e', 'w', 'i', 's', 'e', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "posteo.de", false */ 'p', 'o', 's', 't', 'e', 'o', '.', 'd', 'e', '\0', + /* "posterspy.com", true */ 'p', 'o', 's', 't', 'e', 'r', 's', 'p', 'y', '.', 'c', 'o', 'm', '\0', /* "postfinance.ch", true */ 'p', 'o', 's', 't', 'f', 'i', 'n', 'a', 'n', 'c', 'e', '.', 'c', 'h', '\0', /* "postn.eu", true */ 'p', 'o', 's', 't', 'n', '.', 'e', 'u', '\0', /* "posttigo.com", true */ 'p', 'o', 's', 't', 't', 'i', 'g', 'o', '.', 'c', 'o', 'm', '\0', - /* "potatofrom.space", false */ 'p', 'o', 't', 'a', 't', 'o', 'f', 'r', 'o', 'm', '.', 's', 'p', 'a', 'c', 'e', '\0', /* "potbar.com", true */ 'p', 'o', 't', 'b', 'a', 'r', '.', 'c', 'o', 'm', '\0', /* "potbox.com", true */ 'p', 'o', 't', 'b', 'o', 'x', '.', 'c', 'o', 'm', '\0', /* "pothe.com", true */ 'p', 'o', 't', 'h', 'e', '.', 'c', 'o', 'm', '\0', /* "pothe.de", true */ 'p', 'o', 't', 'h', 'e', '.', 'd', 'e', '\0', /* "potlytics.com", true */ 'p', 'o', 't', 'l', 'y', 't', 'i', 'c', 's', '.', 'c', 'o', 'm', '\0', /* "potpourrifestival.de", true */ 'p', 'o', 't', 'p', 'o', 'u', 'r', 'r', 'i', 'f', 'e', 's', 't', 'i', 'v', 'a', 'l', '.', 'd', 'e', '\0', /* "potsky.com", true */ 'p', 'o', 't', 's', 'k', 'y', '.', 'c', 'o', 'm', '\0', /* "poupatempo.org", true */ 'p', 'o', 'u', 'p', 'a', 't', 'e', 'm', 'p', 'o', '.', 'o', 'r', 'g', '\0', @@ -9256,17 +9206,16 @@ static const char kSTSHostTable[] = { /* "prefis.com", true */ 'p', 'r', 'e', 'f', 'i', 's', '.', 'c', 'o', 'm', '\0', /* "preisser-it.de", true */ 'p', 'r', 'e', 'i', 's', 's', 'e', 'r', '-', 'i', 't', '.', 'd', 'e', '\0', /* "prekladysanca.cz", true */ 'p', 'r', 'e', 'k', 'l', 'a', 'd', 'y', 's', 'a', 'n', 'c', 'a', '.', 'c', 'z', '\0', /* "preloaded-hsts.badssl.com", true */ 'p', 'r', 'e', 'l', 'o', 'a', 'd', 'e', 'd', '-', 'h', 's', 't', 's', '.', 'b', 'a', 'd', 's', 's', 'l', '.', 'c', 'o', 'm', '\0', /* "premierheart.com", true */ 'p', 'r', 'e', 'm', 'i', 'e', 'r', 'h', 'e', 'a', 'r', 't', '.', 'c', 'o', 'm', '\0', /* "premiumzweirad.de", false */ 'p', 'r', 'e', 'm', 'i', 'u', 'm', 'z', 'w', 'e', 'i', 'r', 'a', 'd', '.', 'd', 'e', '\0', /* "prepandgo-euro.com", true */ 'p', 'r', 'e', 'p', 'a', 'n', 'd', 'g', 'o', '-', 'e', 'u', 'r', 'o', '.', 'c', 'o', 'm', '\0', /* "preparetheword.com", false */ 'p', 'r', 'e', 'p', 'a', 'r', 'e', 't', 'h', 'e', 'w', 'o', 'r', 'd', '.', 'c', 'o', 'm', '\0', - /* "prescotonline.co.uk", true */ 'p', 'r', 'e', 's', 'c', 'o', 't', 'o', 'n', 'l', 'i', 'n', 'e', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "prescriptiondrugs.com", true */ 'p', 'r', 'e', 's', 'c', 'r', 'i', 'p', 't', 'i', 'o', 'n', 'd', 'r', 'u', 'g', 's', '.', 'c', 'o', 'm', '\0', /* "presidentials2016.com", true */ 'p', 'r', 'e', 's', 'i', 'd', 'e', 'n', 't', 'i', 'a', 'l', 's', '2', '0', '1', '6', '.', 'c', 'o', 'm', '\0', /* "prespanok.sk", true */ 'p', 'r', 'e', 's', 'p', 'a', 'n', 'o', 'k', '.', 's', 'k', '\0', /* "press-anime-nenkan.com", true */ 'p', 'r', 'e', 's', 's', '-', 'a', 'n', 'i', 'm', 'e', '-', 'n', 'e', 'n', 'k', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "pressrush.com", true */ 'p', 'r', 'e', 's', 's', 'r', 'u', 's', 'h', '.', 'c', 'o', 'm', '\0', /* "prestburyscouts.org.uk", true */ 'p', 'r', 'e', 's', 't', 'b', 'u', 'r', 'y', 's', 'c', 'o', 'u', 't', 's', '.', 'o', 'r', 'g', '.', 'u', 'k', '\0', /* "pretix.eu", true */ 'p', 'r', 'e', 't', 'i', 'x', '.', 'e', 'u', '\0', /* "pretty.hu", true */ 'p', 'r', 'e', 't', 't', 'y', '.', 'h', 'u', '\0', @@ -9303,17 +9252,16 @@ static const char kSTSHostTable[] = { /* "pro-link.eu", true */ 'p', 'r', 'o', '-', 'l', 'i', 'n', 'k', '.', 'e', 'u', '\0', /* "procensus.com", true */ 'p', 'r', 'o', 'c', 'e', 'n', 's', 'u', 's', '.', 'c', 'o', 'm', '\0', /* "prodct.info", true */ 'p', 'r', 'o', 'd', 'c', 't', '.', 'i', 'n', 'f', 'o', '\0', /* "productdesignsoftware.com.au", true */ 'p', 'r', 'o', 'd', 'u', 'c', 't', 'd', 'e', 's', 'i', 'g', 'n', 's', 'o', 'f', 't', 'w', 'a', 'r', 'e', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "productgap.com", true */ 'p', 'r', 'o', 'd', 'u', 'c', 't', 'g', 'a', 'p', '.', 'c', 'o', 'm', '\0', /* "producto8.com", true */ 'p', 'r', 'o', 'd', 'u', 'c', 't', 'o', '8', '.', 'c', 'o', 'm', '\0', /* "proefteksten.nl", true */ 'p', 'r', 'o', 'e', 'f', 't', 'e', 'k', 's', 't', 'e', 'n', '.', 'n', 'l', '\0', /* "profection.biz", true */ 'p', 'r', 'o', 'f', 'e', 'c', 't', 'i', 'o', 'n', '.', 'b', 'i', 'z', '\0', - /* "profi-durchgangsmelder.de", true */ 'p', 'r', 'o', 'f', 'i', '-', 'd', 'u', 'r', 'c', 'h', 'g', 'a', 'n', 'g', 's', 'm', 'e', 'l', 'd', 'e', 'r', '.', 'd', 'e', '\0', /* "profidea.cz", true */ 'p', 'r', 'o', 'f', 'i', 'd', 'e', 'a', '.', 'c', 'z', '\0', /* "profiles.google.com", true */ 'p', 'r', 'o', 'f', 'i', 'l', 'e', 's', '.', 'g', 'o', 'o', 'g', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "profitopia.de", true */ 'p', 'r', 'o', 'f', 'i', 't', 'o', 'p', 'i', 'a', '.', 'd', 'e', '\0', /* "profivps.com", true */ 'p', 'r', 'o', 'f', 'i', 'v', 'p', 's', '.', 'c', 'o', 'm', '\0', /* "profpay.com", true */ 'p', 'r', 'o', 'f', 'p', 'a', 'y', '.', 'c', 'o', 'm', '\0', /* "profusion.io", true */ 'p', 'r', 'o', 'f', 'u', 's', 'i', 'o', 'n', '.', 'i', 'o', '\0', /* "progblog.net", true */ 'p', 'r', 'o', 'g', 'b', 'l', 'o', 'g', '.', 'n', 'e', 't', '\0', /* "progreso.pl", true */ 'p', 'r', 'o', 'g', 'r', 'e', 's', 'o', '.', 'p', 'l', '\0', @@ -9327,17 +9275,16 @@ static const char kSTSHostTable[] = { /* "projectbenson.com", true */ 'p', 'r', 'o', 'j', 'e', 'c', 't', 'b', 'e', 'n', 's', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "projectblackbook.us", true */ 'p', 'r', 'o', 'j', 'e', 'c', 't', 'b', 'l', 'a', 'c', 'k', 'b', 'o', 'o', 'k', '.', 'u', 's', '\0', /* "projectdp.net", true */ 'p', 'r', 'o', 'j', 'e', 'c', 't', 'd', 'p', '.', 'n', 'e', 't', '\0', /* "projektik.cz", true */ 'p', 'r', 'o', 'j', 'e', 'k', 't', 'i', 'k', '.', 'c', 'z', '\0', /* "projektzentrisch.de", true */ 'p', 'r', 'o', 'j', 'e', 'k', 't', 'z', 'e', 'n', 't', 'r', 'i', 's', 'c', 'h', '.', 'd', 'e', '\0', /* "prok.pw", true */ 'p', 'r', 'o', 'k', '.', 'p', 'w', '\0', /* "prometheanfire.net", true */ 'p', 'r', 'o', 'm', 'e', 't', 'h', 'e', 'a', 'n', 'f', 'i', 'r', 'e', '.', 'n', 'e', 't', '\0', /* "prometheanfire.org", true */ 'p', 'r', 'o', 'm', 'e', 't', 'h', 'e', 'a', 'n', 'f', 'i', 'r', 'e', '.', 'o', 'r', 'g', '\0', - /* "promhadan.com", true */ 'p', 'r', 'o', 'm', 'h', 'a', 'd', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "promisesaplus.com", true */ 'p', 'r', 'o', 'm', 'i', 's', 'e', 's', 'a', 'p', 'l', 'u', 's', '.', 'c', 'o', 'm', '\0', /* "promoscuola.net", true */ 'p', 'r', 'o', 'm', 'o', 's', 'c', 'u', 'o', 'l', 'a', '.', 'n', 'e', 't', '\0', /* "promotiongeeks.com", false */ 'p', 'r', 'o', 'm', 'o', 't', 'i', 'o', 'n', 'g', 'e', 'e', 'k', 's', '.', 'c', 'o', 'm', '\0', /* "prontocleaners.co.uk", true */ 'p', 'r', 'o', 'n', 't', 'o', 'c', 'l', 'e', 'a', 'n', 'e', 'r', 's', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "prontomovers.co.uk", true */ 'p', 'r', 'o', 'n', 't', 'o', 'm', 'o', 'v', 'e', 'r', 's', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "proofwiki.org", true */ 'p', 'r', 'o', 'o', 'f', 'w', 'i', 'k', 'i', '.', 'o', 'r', 'g', '\0', /* "proos.nl", true */ 'p', 'r', 'o', 'o', 's', '.', 'n', 'l', '\0', /* "propactrading.com", true */ 'p', 'r', 'o', 'p', 'a', 'c', 't', 'r', 'a', 'd', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', @@ -9360,16 +9307,17 @@ static const char kSTSHostTable[] = { /* "proust.ch", true */ 'p', 'r', 'o', 'u', 's', 't', '.', 'c', 'h', '\0', /* "proust.media", true */ 'p', 'r', 'o', 'u', 's', 't', '.', 'm', 'e', 'd', 'i', 'a', '\0', /* "proustmedia.de", true */ 'p', 'r', 'o', 'u', 's', 't', 'm', 'e', 'd', 'i', 'a', '.', 'd', 'e', '\0', /* "proweser.de", true */ 'p', 'r', 'o', 'w', 'e', 's', 'e', 'r', '.', 'd', 'e', '\0', /* "prowise.com", true */ 'p', 'r', 'o', 'w', 'i', 's', 'e', '.', 'c', 'o', 'm', '\0', /* "proxybay.co", true */ 'p', 'r', 'o', 'x', 'y', 'b', 'a', 'y', '.', 'c', 'o', '\0', /* "proxybay.la", true */ 'p', 'r', 'o', 'x', 'y', 'b', 'a', 'y', '.', 'l', 'a', '\0', /* "proxybay.one", true */ 'p', 'r', 'o', 'x', 'y', 'b', 'a', 'y', '.', 'o', 'n', 'e', '\0', + /* "proxybay.top", true */ 'p', 'r', 'o', 'x', 'y', 'b', 'a', 'y', '.', 't', 'o', 'p', '\0', /* "proxybay.tv", true */ 'p', 'r', 'o', 'x', 'y', 'b', 'a', 'y', '.', 't', 'v', '\0', /* "proxyportal.org", true */ 'p', 'r', 'o', 'x', 'y', 'p', 'o', 'r', 't', 'a', 'l', '.', 'o', 'r', 'g', '\0', /* "proxyweb.us", true */ 'p', 'r', 'o', 'x', 'y', 'w', 'e', 'b', '.', 'u', 's', '\0', /* "prstatic.com", true */ 'p', 'r', 's', 't', 'a', 't', 'i', 'c', '.', 'c', 'o', 'm', '\0', /* "prt.in.th", true */ 'p', 'r', 't', '.', 'i', 'n', '.', 't', 'h', '\0', /* "prtpe.com", true */ 'p', 'r', 't', 'p', 'e', '.', 'c', 'o', 'm', '\0', /* "prvikvadrat.hr", true */ 'p', 'r', 'v', 'i', 'k', 'v', 'a', 'd', 'r', 'a', 't', '.', 'h', 'r', '\0', /* "przemas.pl", true */ 'p', 'r', 'z', 'e', 'm', 'a', 's', '.', 'p', 'l', '\0', @@ -9404,16 +9352,17 @@ static const char kSTSHostTable[] = { /* "pugliese.fr", true */ 'p', 'u', 'g', 'l', 'i', 'e', 's', 'e', '.', 'f', 'r', '\0', /* "puhe.se", true */ 'p', 'u', 'h', 'e', '.', 's', 'e', '\0', /* "puikheid.nl", true */ 'p', 'u', 'i', 'k', 'h', 'e', 'i', 'd', '.', 'n', 'l', '\0', /* "pulsar.guru", false */ 'p', 'u', 'l', 's', 'a', 'r', '.', 'g', 'u', 'r', 'u', '\0', /* "pult.co", false */ 'p', 'u', 'l', 't', '.', 'c', 'o', '\0', /* "punchkickinteractive.com", true */ 'p', 'u', 'n', 'c', 'h', 'k', 'i', 'c', 'k', 'i', 'n', 't', 'e', 'r', 'a', 'c', 't', 'i', 'v', 'e', '.', 'c', 'o', 'm', '\0', /* "punikonta.de", true */ 'p', 'u', 'n', 'i', 'k', 'o', 'n', 't', 'a', '.', 'd', 'e', '\0', /* "punitsheth.com", true */ 'p', 'u', 'n', 'i', 't', 's', 'h', 'e', 't', 'h', '.', 'c', 'o', 'm', '\0', + /* "punkapoule.fr", true */ 'p', 'u', 'n', 'k', 'a', 'p', 'o', 'u', 'l', 'e', '.', 'f', 'r', '\0', /* "punknews.org", true */ 'p', 'u', 'n', 'k', 'n', 'e', 'w', 's', '.', 'o', 'r', 'g', '\0', /* "pupboss.com", true */ 'p', 'u', 'p', 'b', 'o', 's', 's', '.', 'c', 'o', 'm', '\0', /* "puppydns.com", true */ 'p', 'u', 'p', 'p', 'y', 'd', 'n', 's', '.', 'c', 'o', 'm', '\0', /* "purplebricks.com", true */ 'p', 'u', 'r', 'p', 'l', 'e', 'b', 'r', 'i', 'c', 'k', 's', '.', 'c', 'o', 'm', '\0', /* "purplemoon.ch", true */ 'p', 'u', 'r', 'p', 'l', 'e', 'm', 'o', 'o', 'n', '.', 'c', 'h', '\0', /* "purplestar.ch", true */ 'p', 'u', 'r', 'p', 'l', 'e', 's', 't', 'a', 'r', '.', 'c', 'h', '\0', /* "purplestar.com", true */ 'p', 'u', 'r', 'p', 'l', 'e', 's', 't', 'a', 'r', '.', 'c', 'o', 'm', '\0', /* "puryearlaw.com", true */ 'p', 'u', 'r', 'y', 'e', 'a', 'r', 'l', 'a', 'w', '.', 'c', 'o', 'm', '\0', @@ -9600,16 +9549,17 @@ static const char kSTSHostTable[] = { /* "raven.lipetsk.ru", true */ 'r', 'a', 'v', 'e', 'n', '.', 'l', 'i', 'p', 'e', 't', 's', 'k', '.', 'r', 'u', '\0', /* "ravensbuch.de", true */ 'r', 'a', 'v', 'e', 'n', 's', 'b', 'u', 'c', 'h', '.', 'd', 'e', '\0', /* "ravindran.me", true */ 'r', 'a', 'v', 'i', 'n', 'd', 'r', 'a', 'n', '.', 'm', 'e', '\0', /* "ravse.dk", true */ 'r', 'a', 'v', 's', 'e', '.', 'd', 'k', '\0', /* "rawoil.com", true */ 'r', 'a', 'w', 'o', 'i', 'l', '.', 'c', 'o', 'm', '\0', /* "rawsec.net", true */ 'r', 'a', 'w', 's', 'e', 'c', '.', 'n', 'e', 't', '\0', /* "ray-home.de", true */ 'r', 'a', 'y', '-', 'h', 'o', 'm', 'e', '.', 'd', 'e', '\0', /* "ray-works.de", true */ 'r', 'a', 'y', '-', 'w', 'o', 'r', 'k', 's', '.', 'd', 'e', '\0', + /* "raydan.space", true */ 'r', 'a', 'y', 'd', 'a', 'n', '.', 's', 'p', 'a', 'c', 'e', '\0', /* "raymd.de", true */ 'r', 'a', 'y', 'm', 'd', '.', 'd', 'e', '\0', /* "raymii.org", true */ 'r', 'a', 'y', 'm', 'i', 'i', '.', 'o', 'r', 'g', '\0', /* "raymondjcox.com", true */ 'r', 'a', 'y', 'm', 'o', 'n', 'd', 'j', 'c', 'o', 'x', '.', 'c', 'o', 'm', '\0', /* "rayworks.de", true */ 'r', 'a', 'y', 'w', 'o', 'r', 'k', 's', '.', 'd', 'e', '\0', /* "razlaw.name", true */ 'r', 'a', 'z', 'l', 'a', 'w', '.', 'n', 'a', 'm', 'e', '\0', /* "razzolini.com.br", true */ 'r', 'a', 'z', 'z', 'o', 'l', 'i', 'n', 'i', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', /* "rbensch.com", true */ 'r', 'b', 'e', 'n', 's', 'c', 'h', '.', 'c', 'o', 'm', '\0', /* "rbhighinc.org", true */ 'r', 'b', 'h', 'i', 'g', 'h', 'i', 'n', 'c', '.', 'o', 'r', 'g', '\0', @@ -9986,33 +9936,33 @@ static const char kSTSHostTable[] = { /* "rudd-o.com", true */ 'r', 'u', 'd', 'd', '-', 'o', '.', 'c', 'o', 'm', '\0', /* "rudeotter.com", true */ 'r', 'u', 'd', 'e', 'o', 't', 't', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "ruderverein-gelsenkirchen.de", true */ 'r', 'u', 'd', 'e', 'r', 'v', 'e', 'r', 'e', 'i', 'n', '-', 'g', 'e', 'l', 's', 'e', 'n', 'k', 'i', 'r', 'c', 'h', 'e', 'n', '.', 'd', 'e', '\0', /* "ruffbeatz.com", true */ 'r', 'u', 'f', 'f', 'b', 'e', 'a', 't', 'z', '.', 'c', 'o', 'm', '\0', /* "rugk.dedyn.io", true */ 'r', 'u', 'g', 'k', '.', 'd', 'e', 'd', 'y', 'n', '.', 'i', 'o', '\0', /* "rugstorene.co.uk", true */ 'r', 'u', 'g', 's', 't', 'o', 'r', 'e', 'n', 'e', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "ruh-veit.de", true */ 'r', 'u', 'h', '-', 'v', 'e', 'i', 't', '.', 'd', 'e', '\0', /* "ruhrmobil-e.de", true */ 'r', 'u', 'h', 'r', 'm', 'o', 'b', 'i', 'l', '-', 'e', '.', 'd', 'e', '\0', - /* "ruiming.me", true */ 'r', 'u', 'i', 'm', 'i', 'n', 'g', '.', 'm', 'e', '\0', /* "ruja.dk", true */ 'r', 'u', 'j', 'a', '.', 'd', 'k', '\0', /* "runcarina.com", true */ 'r', 'u', 'n', 'c', 'a', 'r', 'i', 'n', 'a', '.', 'c', 'o', 'm', '\0', /* "rundumcolumn.xyz", true */ 'r', 'u', 'n', 'd', 'u', 'm', 'c', 'o', 'l', 'u', 'm', 'n', '.', 'x', 'y', 'z', '\0', /* "runnergrapher.com", true */ 'r', 'u', 'n', 'n', 'e', 'r', 'g', 'r', 'a', 'p', 'h', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "runreport.fr", true */ 'r', 'u', 'n', 'r', 'e', 'p', 'o', 'r', 't', '.', 'f', 'r', '\0', /* "runvs.io", true */ 'r', 'u', 'n', 'v', 's', '.', 'i', 'o', '\0', /* "runway2street.com", false */ 'r', 'u', 'n', 'w', 'a', 'y', '2', 's', 't', 'r', 'e', 'e', 't', '.', 'c', 'o', 'm', '\0', /* "ruobiyi.com", true */ 'r', 'u', 'o', 'b', 'i', 'y', 'i', '.', 'c', 'o', 'm', '\0', /* "rusempire.ru", true */ 'r', 'u', 's', 'e', 'm', 'p', 'i', 'r', 'e', '.', 'r', 'u', '\0', /* "rusl.net", true */ 'r', 'u', 's', 'l', '.', 'n', 'e', 't', '\0', /* "russellandbrowns.co.uk", true */ 'r', 'u', 's', 's', 'e', 'l', 'l', 'a', 'n', 'd', 'b', 'r', 'o', 'w', 'n', 's', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "russia.dating", true */ 'r', 'u', 's', 's', 'i', 'a', '.', 'd', 'a', 't', 'i', 'n', 'g', '\0', /* "rustable.com", true */ 'r', 'u', 's', 't', 'a', 'b', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "rustfanatic.com", true */ 'r', 'u', 's', 't', 'f', 'a', 'n', 'a', 't', 'i', 'c', '.', 'c', 'o', 'm', '\0', /* "rustyrambles.com", true */ 'r', 'u', 's', 't', 'y', 'r', 'a', 'm', 'b', 'l', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "rusxakep.com", true */ 'r', 'u', 's', 'x', 'a', 'k', 'e', 'p', '.', 'c', 'o', 'm', '\0', + /* "rutgerschimmel.nl", true */ 'r', 'u', 't', 'g', 'e', 'r', 's', 'c', 'h', 'i', 'm', 'm', 'e', 'l', '.', 'n', 'l', '\0', /* "ruudkoot.nl", true */ 'r', 'u', 'u', 'd', 'k', 'o', 'o', 't', '.', 'n', 'l', '\0', /* "rva-asbestgroep.nl", true */ 'r', 'v', 'a', '-', 'a', 's', 'b', 'e', 's', 't', 'g', 'r', 'o', 'e', 'p', '.', 'n', 'l', '\0', /* "rwanderlust.com", true */ 'r', 'w', 'a', 'n', 'd', 'e', 'r', 'l', 'u', 's', 't', '.', 'c', 'o', 'm', '\0', /* "rws-vertriebsportal.de", true */ 'r', 'w', 's', '-', 'v', 'e', 'r', 't', 'r', 'i', 'e', 'b', 's', 'p', 'o', 'r', 't', 'a', 'l', '.', 'd', 'e', '\0', /* "rww.name", true */ 'r', 'w', 'w', '.', 'n', 'a', 'm', 'e', '\0', /* "rx-contact.com", true */ 'r', 'x', '-', 'c', 'o', 'n', 't', 'a', 'c', 't', '.', 'c', 'o', 'm', '\0', /* "rxbn.de", true */ 'r', 'x', 'b', 'n', '.', 'd', 'e', '\0', /* "ryan-goldstein.com", true */ 'r', 'y', 'a', 'n', '-', 'g', 'o', 'l', 'd', 's', 't', 'e', 'i', 'n', '.', 'c', 'o', 'm', '\0', @@ -10077,16 +10027,17 @@ static const char kSTSHostTable[] = { /* "salverainha.org", true */ 's', 'a', 'l', 'v', 'e', 'r', 'a', 'i', 'n', 'h', 'a', '.', 'o', 'r', 'g', '\0', /* "samaritansnet.org", true */ 's', 'a', 'm', 'a', 'r', 'i', 't', 'a', 'n', 's', 'n', 'e', 't', '.', 'o', 'r', 'g', '\0', /* "samba.org", true */ 's', 'a', 'm', 'b', 'a', '.', 'o', 'r', 'g', '\0', /* "sambeso.net", true */ 's', 'a', 'm', 'b', 'e', 's', 'o', '.', 'n', 'e', 't', '\0', /* "samegoal.com", true */ 's', 'a', 'm', 'e', 'g', 'o', 'a', 'l', '.', 'c', 'o', 'm', '\0', /* "samegoal.org", true */ 's', 'a', 'm', 'e', 'g', 'o', 'a', 'l', '.', 'o', 'r', 'g', '\0', /* "samel.de", true */ 's', 'a', 'm', 'e', 'l', '.', 'd', 'e', '\0', /* "samenwerkingsportaal.nl", true */ 's', 'a', 'm', 'e', 'n', 'w', 'e', 'r', 'k', 'i', 'n', 'g', 's', 'p', 'o', 'r', 't', 'a', 'a', 'l', '.', 'n', 'l', '\0', + /* "samfunnet.no", false */ 's', 'a', 'm', 'f', 'u', 'n', 'n', 'e', 't', '.', 'n', 'o', '\0', /* "samifar.in", true */ 's', 'a', 'm', 'i', 'f', 'a', 'r', '.', 'i', 'n', '\0', /* "samizdat.cz", true */ 's', 'a', 'm', 'i', 'z', 'd', 'a', 't', '.', 'c', 'z', '\0', /* "samkelleher.com", true */ 's', 'a', 'm', 'k', 'e', 'l', 'l', 'e', 'h', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "saml-gateway.org", true */ 's', 'a', 'm', 'l', '-', 'g', 'a', 't', 'e', 'w', 'a', 'y', '.', 'o', 'r', 'g', '\0', /* "saml2.com", true */ 's', 'a', 'm', 'l', '2', '.', 'c', 'o', 'm', '\0', /* "samuelkeeley.com", true */ 's', 'a', 'm', 'u', 'e', 'l', 'k', 'e', 'e', 'l', 'e', 'y', '.', 'c', 'o', 'm', '\0', /* "samwilberforce.com", true */ 's', 'a', 'm', 'w', 'i', 'l', 'b', 'e', 'r', 'f', 'o', 'r', 'c', 'e', '.', 'c', 'o', 'm', '\0', /* "samwu.tw", false */ 's', 'a', 'm', 'w', 'u', '.', 't', 'w', '\0', @@ -10107,30 +10058,34 @@ static const char kSTSHostTable[] = { /* "sanglierhurlant.fr", true */ 's', 'a', 'n', 'g', 'l', 'i', 'e', 'r', 'h', 'u', 'r', 'l', 'a', 'n', 't', '.', 'f', 'r', '\0', /* "sanguoxiu.com", true */ 's', 'a', 'n', 'g', 'u', 'o', 'x', 'i', 'u', '.', 'c', 'o', 'm', '\0', /* "sangwon.io", true */ 's', 'a', 'n', 'g', 'w', 'o', 'n', '.', 'i', 'o', '\0', /* "sanhei.ch", true */ 's', 'a', 'n', 'h', 'e', 'i', '.', 'c', 'h', '\0', /* "sanissimo.com.mx", true */ 's', 'a', 'n', 'i', 's', 's', 'i', 'm', 'o', '.', 'c', 'o', 'm', '.', 'm', 'x', '\0', /* "sanradon.by", true */ 's', 'a', 'n', 'r', 'a', 'd', 'o', 'n', '.', 'b', 'y', '\0', /* "sansonehowell.com", true */ 's', 'a', 'n', 's', 'o', 'n', 'e', 'h', 'o', 'w', 'e', 'l', 'l', '.', 'c', 'o', 'm', '\0', /* "santanderideas.com", true */ 's', 'a', 'n', 't', 'a', 'n', 'd', 'e', 'r', 'i', 'd', 'e', 'a', 's', '.', 'c', 'o', 'm', '\0', + /* "santing.net", true */ 's', 'a', 'n', 't', 'i', 'n', 'g', '.', 'n', 'e', 't', '\0', /* "saorsat.ie", true */ 's', 'a', 'o', 'r', 's', 'a', 't', '.', 'i', 'e', '\0', /* "saorviewconnect.ie", true */ 's', 'a', 'o', 'r', 'v', 'i', 'e', 'w', 'c', 'o', 'n', 'n', 'e', 'c', 't', '.', 'i', 'e', '\0', /* "sapience.com", true */ 's', 'a', 'p', 'i', 'e', 'n', 'c', 'e', '.', 'c', 'o', 'm', '\0', + /* "sapk.fr", true */ 's', 'a', 'p', 'k', '.', 'f', 'r', '\0', /* "sapporobeer.com", true */ 's', 'a', 'p', 'p', 'o', 'r', 'o', 'b', 'e', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "sarahbeckettharpist.com", true */ 's', 'a', 'r', 'a', 'h', 'b', 'e', 'c', 'k', 'e', 't', 't', 'h', 'a', 'r', 'p', 'i', 's', 't', '.', 'c', 'o', 'm', '\0', /* "sarahlicity.co.uk", false */ 's', 'a', 'r', 'a', 'h', 'l', 'i', 'c', 'i', 't', 'y', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "sarahlicity.me.uk", true */ 's', 'a', 'r', 'a', 'h', 'l', 'i', 'c', 'i', 't', 'y', '.', 'm', 'e', '.', 'u', 'k', '\0', /* "sarahs-roestcafe.de", false */ 's', 'a', 'r', 'a', 'h', 's', '-', 'r', 'o', 'e', 's', 't', 'c', 'a', 'f', 'e', '.', 'd', 'e', '\0', /* "sarahsweger.com", true */ 's', 'a', 'r', 'a', 'h', 's', 'w', 'e', 'g', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "sarahvictor.co.uk", true */ 's', 'a', 'r', 'a', 'h', 'v', 'i', 'c', 't', 'o', 'r', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "sarakas.com", true */ 's', 'a', 'r', 'a', 'k', 'a', 's', '.', 'c', 'o', 'm', '\0', /* "saraleebread.com", true */ 's', 'a', 'r', 'a', 'l', 'e', 'e', 'b', 'r', 'e', 'a', 'd', '.', 'c', 'o', 'm', '\0', /* "sarasturdivant.com", true */ 's', 'a', 'r', 'a', 's', 't', 'u', 'r', 'd', 'i', 'v', 'a', 'n', 't', '.', 'c', 'o', 'm', '\0', /* "sardegnatirocini.it", true */ 's', 'a', 'r', 'd', 'e', 'g', 'n', 'a', 't', 'i', 'r', 'o', 'c', 'i', 'n', 'i', '.', 'i', 't', '\0', + /* "sarindia.com", true */ 's', 'a', 'r', 'i', 'n', 'd', 'i', 'a', '.', 'c', 'o', 'm', '\0', + /* "sarindia.de", true */ 's', 'a', 'r', 'i', 'n', 'd', 'i', 'a', '.', 'd', 'e', '\0', /* "sarisonproductions.com", true */ 's', 'a', 'r', 'i', 's', 'o', 'n', 'p', 'r', 'o', 'd', 'u', 'c', 't', 'i', 'o', 'n', 's', '.', 'c', 'o', 'm', '\0', /* "saro.me", true */ 's', 'a', 'r', 'o', '.', 'm', 'e', '\0', /* "sas-snowboarding.sk", true */ 's', 'a', 's', '-', 's', 'n', 'o', 'w', 'b', 'o', 'a', 'r', 'd', 'i', 'n', 'g', '.', 's', 'k', '\0', /* "sash.pw", true */ 's', 'a', 's', 'h', '.', 'p', 'w', '\0', /* "saskpension.com", true */ 's', 'a', 's', 'k', 'p', 'e', 'n', 's', 'i', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "sasyabapi.com", true */ 's', 'a', 's', 'y', 'a', 'b', 'a', 'p', 'i', '.', 'c', 'o', 'm', '\0', /* "sat.rent", true */ 's', 'a', 't', '.', 'r', 'e', 'n', 't', '\0', /* "sat4all.com", true */ 's', 'a', 't', '4', 'a', 'l', 'l', '.', 'c', 'o', 'm', '\0', @@ -10149,17 +10104,16 @@ static const char kSTSHostTable[] = { /* "saunas.fr", true */ 's', 'a', 'u', 'n', 'a', 's', '.', 'f', 'r', '\0', /* "sauvagebridge.nl", true */ 's', 'a', 'u', 'v', 'a', 'g', 'e', 'b', 'r', 'i', 'd', 'g', 'e', '.', 'n', 'l', '\0', /* "savannahtasteexperience.com", true */ 's', 'a', 'v', 'a', 'n', 'n', 'a', 'h', 't', 'a', 's', 't', 'e', 'e', 'x', 'p', 'e', 'r', 'i', 'e', 'n', 'c', 'e', '.', 'c', 'o', 'm', '\0', /* "savekorea.net", true */ 's', 'a', 'v', 'e', 'k', 'o', 'r', 'e', 'a', '.', 'n', 'e', 't', '\0', /* "savenet.org", true */ 's', 'a', 'v', 'e', 'n', 'e', 't', '.', 'o', 'r', 'g', '\0', /* "savetheinternet.eu", true */ 's', 'a', 'v', 'e', 't', 'h', 'e', 'i', 'n', 't', 'e', 'r', 'n', 'e', 't', '.', 'e', 'u', '\0', /* "savic.com", true */ 's', 'a', 'v', 'i', 'c', '.', 'c', 'o', 'm', '\0', /* "savingsstoreonline.ca", true */ 's', 'a', 'v', 'i', 'n', 'g', 's', 's', 't', 'o', 'r', 'e', 'o', 'n', 'l', 'i', 'n', 'e', '.', 'c', 'a', '\0', - /* "savvysuit.com", true */ 's', 'a', 'v', 'v', 'y', 's', 'u', 'i', 't', '.', 'c', 'o', 'm', '\0', /* "savvytime.com", true */ 's', 'a', 'v', 'v', 'y', 't', 'i', 'm', 'e', '.', 'c', 'o', 'm', '\0', /* "say-hanabi.com", true */ 's', 'a', 'y', '-', 'h', 'a', 'n', 'a', 'b', 'i', '.', 'c', 'o', 'm', '\0', /* "sayprepay.com", true */ 's', 'a', 'y', 'p', 'r', 'e', 'p', 'a', 'y', '.', 'c', 'o', 'm', '\0', /* "sazuz.cz", true */ 's', 'a', 'z', 'u', 'z', '.', 'c', 'z', '\0', /* "sb.im", true */ 's', 'b', '.', 'i', 'm', '\0', /* "sber.us", true */ 's', 'b', 'e', 'r', '.', 'u', 's', '\0', /* "sbiewald.de", true */ 's', 'b', 'i', 'e', 'w', 'a', 'l', 'd', '.', 'd', 'e', '\0', /* "sbirecruitment.co.in", true */ 's', 'b', 'i', 'r', 'e', 'c', 'r', 'u', 'i', 't', 'm', 'e', 'n', 't', '.', 'c', 'o', '.', 'i', 'n', '\0', @@ -10309,17 +10263,16 @@ static const char kSTSHostTable[] = { /* "security-carpet.com", true */ 's', 'e', 'c', 'u', 'r', 'i', 't', 'y', '-', 'c', 'a', 'r', 'p', 'e', 't', '.', 'c', 'o', 'm', '\0', /* "security-taskforce.be", true */ 's', 'e', 'c', 'u', 'r', 'i', 't', 'y', '-', 't', 'a', 's', 'k', 'f', 'o', 'r', 'c', 'e', '.', 'b', 'e', '\0', /* "security.google.com", true */ 's', 'e', 'c', 'u', 'r', 'i', 't', 'y', '.', 'g', 'o', 'o', 'g', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "securitybsides.pl", true */ 's', 'e', 'c', 'u', 'r', 'i', 't', 'y', 'b', 's', 'i', 'd', 'e', 's', '.', 'p', 'l', '\0', /* "securityglance.com", true */ 's', 'e', 'c', 'u', 'r', 'i', 't', 'y', 'g', 'l', 'a', 'n', 'c', 'e', '.', 'c', 'o', 'm', '\0', /* "securityheaders.com", true */ 's', 'e', 'c', 'u', 'r', 'i', 't', 'y', 'h', 'e', 'a', 'd', 'e', 'r', 's', '.', 'c', 'o', 'm', '\0', /* "securityheaders.io", true */ 's', 'e', 'c', 'u', 'r', 'i', 't', 'y', 'h', 'e', 'a', 'd', 'e', 'r', 's', '.', 'i', 'o', '\0', /* "securitymap.wiki", true */ 's', 'e', 'c', 'u', 'r', 'i', 't', 'y', 'm', 'a', 'p', '.', 'w', 'i', 'k', 'i', '\0', - /* "securityprimes.in", true */ 's', 'e', 'c', 'u', 'r', 'i', 't', 'y', 'p', 'r', 'i', 'm', 'e', 's', '.', 'i', 'n', '\0', /* "securitysnobs.com", false */ 's', 'e', 'c', 'u', 'r', 'i', 't', 'y', 's', 'n', 'o', 'b', 's', '.', 'c', 'o', 'm', '\0', /* "securitystreak.com", true */ 's', 'e', 'c', 'u', 'r', 'i', 't', 'y', 's', 't', 'r', 'e', 'a', 'k', '.', 'c', 'o', 'm', '\0', /* "secuvera.de", true */ 's', 'e', 'c', 'u', 'v', 'e', 'r', 'a', '.', 'd', 'e', '\0', /* "sedoexpert.nl", true */ 's', 'e', 'd', 'o', 'e', 'x', 'p', 'e', 'r', 't', '.', 'n', 'l', '\0', /* "sedoexperts.nl", true */ 's', 'e', 'd', 'o', 'e', 'x', 'p', 'e', 'r', 't', 's', '.', 'n', 'l', '\0', /* "sedziapilkarski.pl", true */ 's', 'e', 'd', 'z', 'i', 'a', 'p', 'i', 'l', 'k', 'a', 'r', 's', 'k', 'i', '.', 'p', 'l', '\0', /* "seedalpha.com", true */ 's', 'e', 'e', 'd', 'a', 'l', 'p', 'h', 'a', '.', 'c', 'o', 'm', '\0', /* "seedboxers.net", true */ 's', 'e', 'e', 'd', 'b', 'o', 'x', 'e', 'r', 's', '.', 'n', 'e', 't', '\0', @@ -10333,30 +10286,30 @@ static const char kSTSHostTable[] = { /* "seida.at", true */ 's', 'e', 'i', 'd', 'a', '.', 'a', 't', '\0', /* "seifried.org", true */ 's', 'e', 'i', 'f', 'r', 'i', 'e', 'd', '.', 'o', 'r', 'g', '\0', /* "seitenwaelzer.de", true */ 's', 'e', 'i', 't', 'e', 'n', 'w', 'a', 'e', 'l', 'z', 'e', 'r', '.', 'd', 'e', '\0', /* "selcusters.nl", true */ 's', 'e', 'l', 'c', 'u', 's', 't', 'e', 'r', 's', '.', 'n', 'l', '\0', /* "selectary.com", true */ 's', 'e', 'l', 'e', 'c', 't', 'a', 'r', 'y', '.', 'c', 'o', 'm', '\0', /* "selectel.ru", true */ 's', 'e', 'l', 'e', 'c', 't', 'e', 'l', '.', 'r', 'u', '\0', /* "selectorders.com", true */ 's', 'e', 'l', 'e', 'c', 't', 'o', 'r', 'd', 'e', 'r', 's', '.', 'c', 'o', 'm', '\0', /* "selent.me", true */ 's', 'e', 'l', 'e', 'n', 't', '.', 'm', 'e', '\0', - /* "self-injury.net", true */ 's', 'e', 'l', 'f', '-', 'i', 'n', 'j', 'u', 'r', 'y', '.', 'n', 'e', 't', '\0', /* "self-signed.com", true */ 's', 'e', 'l', 'f', '-', 's', 'i', 'g', 'n', 'e', 'd', '.', 'c', 'o', 'm', '\0', /* "selfici.com", true */ 's', 'e', 'l', 'f', 'i', 'c', 'i', '.', 'c', 'o', 'm', '\0', /* "selfici.cz", true */ 's', 'e', 'l', 'f', 'i', 'c', 'i', '.', 'c', 'z', '\0', /* "selfserverx.com", false */ 's', 'e', 'l', 'f', 's', 'e', 'r', 'v', 'e', 'r', 'x', '.', 'c', 'o', 'm', '\0', /* "sellme.biz", true */ 's', 'e', 'l', 'l', 'm', 'e', '.', 'b', 'i', 'z', '\0', /* "seminariruum.ee", true */ 's', 'e', 'm', 'i', 'n', 'a', 'r', 'i', 'r', 'u', 'u', 'm', '.', 'e', 'e', '\0', /* "semox.de", true */ 's', 'e', 'm', 'o', 'x', '.', 'd', 'e', '\0', /* "semps-2fa.de", true */ 's', 'e', 'm', 'p', 's', '-', '2', 'f', 'a', '.', 'd', 'e', '\0', /* "semps-threema.de", true */ 's', 'e', 'm', 'p', 's', '-', 't', 'h', 'r', 'e', 'e', 'm', 'a', '.', 'd', 'e', '\0', /* "semyonov.su", true */ 's', 'e', 'm', 'y', 'o', 'n', 'o', 'v', '.', 's', 'u', '\0', /* "semyonov.us", true */ 's', 'e', 'm', 'y', 'o', 'n', 'o', 'v', '.', 'u', 's', '\0', /* "sendash.com", true */ 's', 'e', 'n', 'd', 'a', 's', 'h', '.', 'c', 'o', 'm', '\0', /* "sendc.at", true */ 's', 'e', 'n', 'd', 'c', '.', 'a', 't', '\0', + /* "sendcat.com", true */ 's', 'e', 'n', 'd', 'c', 'a', 't', '.', 'c', 'o', 'm', '\0', /* "sendinvoice.nl", true */ 's', 'e', 'n', 'd', 'i', 'n', 'v', 'o', 'i', 'c', 'e', '.', 'n', 'l', '\0', /* "sendmeback.de", true */ 's', 'e', 'n', 'd', 'm', 'e', 'b', 'a', 'c', 'k', '.', 'd', 'e', '\0', /* "sendya.me", true */ 's', 'e', 'n', 'd', 'y', 'a', '.', 'm', 'e', '\0', /* "senmendai-reform.com", true */ 's', 'e', 'n', 'm', 'e', 'n', 'd', 'a', 'i', '-', 'r', 'e', 'f', 'o', 'r', 'm', '.', 'c', 'o', 'm', '\0', /* "senorcontento.com", true */ 's', 'e', 'n', 'o', 'r', 'c', 'o', 'n', 't', 'e', 'n', 't', 'o', '.', 'c', 'o', 'm', '\0', /* "senshudo.tv", true */ 's', 'e', 'n', 's', 'h', 'u', 'd', 'o', '.', 't', 'v', '\0', /* "sensiblemn.org", true */ 's', 'e', 'n', 's', 'i', 'b', 'l', 'e', 'm', 'n', '.', 'o', 'r', 'g', '\0', /* "sentry.io", true */ 's', 'e', 'n', 't', 'r', 'y', '.', 'i', 'o', '\0', @@ -10419,47 +10372,48 @@ static const char kSTSHostTable[] = { /* "sexy-store.nl", true */ 's', 'e', 'x', 'y', '-', 's', 't', 'o', 'r', 'e', '.', 'n', 'l', '\0', /* "seyr.it", true */ 's', 'e', 'y', 'r', '.', 'i', 't', '\0', /* "seyr.me", true */ 's', 'e', 'y', 'r', '.', 'm', 'e', '\0', /* "sfsltd.com", true */ 's', 'f', 's', 'l', 't', 'd', '.', 'c', 'o', 'm', '\0', /* "sftool.gov", true */ 's', 'f', 't', 'o', 'o', 'l', '.', 'g', 'o', 'v', '\0', /* "sg.search.yahoo.com", false */ 's', 'g', '.', 's', 'e', 'a', 'r', 'c', 'h', '.', 'y', 'a', 'h', 'o', 'o', '.', 'c', 'o', 'm', '\0', /* "sgcaccounts.co.uk", true */ 's', 'g', 'c', 'a', 'c', 'c', 'o', 'u', 'n', 't', 's', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "sgtcodfish.com", true */ 's', 'g', 't', 'c', 'o', 'd', 'f', 'i', 's', 'h', '.', 'c', 'o', 'm', '\0', - /* "sh-network.de", true */ 's', 'h', '-', 'n', 'e', 't', 'w', 'o', 'r', 'k', '.', 'd', 'e', '\0', + /* "sh-network.de", false */ 's', 'h', '-', 'n', 'e', 't', 'w', 'o', 'r', 'k', '.', 'd', 'e', '\0', /* "shaaaaaaaaaaaaa.com", true */ 's', 'h', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', 'a', '.', 'c', 'o', 'm', '\0', /* "shadex.net", true */ 's', 'h', 'a', 'd', 'e', 'x', '.', 'n', 'e', 't', '\0', /* "shadowguardian507-irl.tk", true */ 's', 'h', 'a', 'd', 'o', 'w', 'g', 'u', 'a', 'r', 'd', 'i', 'a', 'n', '5', '0', '7', '-', 'i', 'r', 'l', '.', 't', 'k', '\0', /* "shadowkitsune.net", true */ 's', 'h', 'a', 'd', 'o', 'w', 'k', 'i', 't', 's', 'u', 'n', 'e', '.', 'n', 'e', 't', '\0', /* "shadowplus.net", true */ 's', 'h', 'a', 'd', 'o', 'w', 'p', 'l', 'u', 's', '.', 'n', 'e', 't', '\0', /* "shadowrocket.net", true */ 's', 'h', 'a', 'd', 'o', 'w', 'r', 'o', 'c', 'k', 'e', 't', '.', 'n', 'e', 't', '\0', /* "shadowsocks.com", true */ 's', 'h', 'a', 'd', 'o', 'w', 's', 'o', 'c', 'k', 's', '.', 'c', 'o', 'm', '\0', - /* "shadowsocks.net", true */ 's', 'h', 'a', 'd', 'o', 'w', 's', 'o', 'c', 'k', 's', '.', 'n', 'e', 't', '\0', /* "shadowsworldonline.co.uk", true */ 's', 'h', 'a', 'd', 'o', 'w', 's', 'w', 'o', 'r', 'l', 'd', 'o', 'n', 'l', 'i', 'n', 'e', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "shagi29.ru", true */ 's', 'h', 'a', 'g', 'i', '2', '9', '.', 'r', 'u', '\0', /* "shaitan.eu", true */ 's', 'h', 'a', 'i', 't', 'a', 'n', '.', 'e', 'u', '\0', /* "shakes4u.com", true */ 's', 'h', 'a', 'k', 'e', 's', '4', 'u', '.', 'c', 'o', 'm', '\0', /* "shalott.org", true */ 's', 'h', 'a', 'l', 'o', 't', 't', '.', 'o', 'r', 'g', '\0', /* "shamariki.ru", true */ 's', 'h', 'a', 'm', 'a', 'r', 'i', 'k', 'i', '.', 'r', 'u', '\0', /* "shan.io", false */ 's', 'h', 'a', 'n', '.', 'i', 'o', '\0', /* "shanae.nl", true */ 's', 'h', 'a', 'n', 'a', 'e', '.', 'n', 'l', '\0', /* "shanetully.com", true */ 's', 'h', 'a', 'n', 'e', 't', 'u', 'l', 'l', 'y', '.', 'c', 'o', 'm', '\0', + /* "shanewadleigh.com", true */ 's', 'h', 'a', 'n', 'e', 'w', 'a', 'd', 'l', 'e', 'i', 'g', 'h', '.', 'c', 'o', 'm', '\0', /* "shannoneichorn.com", true */ 's', 'h', 'a', 'n', 'n', 'o', 'n', 'e', 'i', 'c', 'h', 'o', 'r', 'n', '.', 'c', 'o', 'm', '\0', /* "shansing.com", true */ 's', 'h', 'a', 'n', 's', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "shansing.net", true */ 's', 'h', 'a', 'n', 's', 'i', 'n', 'g', '.', 'n', 'e', 't', '\0', /* "shansing.space", true */ 's', 'h', 'a', 'n', 's', 'i', 'n', 'g', '.', 's', 'p', 'a', 'c', 'e', '\0', /* "sharepass.pw", true */ 's', 'h', 'a', 'r', 'e', 'p', 'a', 's', 's', '.', 'p', 'w', '\0', /* "sharepic.xyz", true */ 's', 'h', 'a', 'r', 'e', 'p', 'i', 'c', '.', 'x', 'y', 'z', '\0', /* "sharepointdrive.com", true */ 's', 'h', 'a', 'r', 'e', 'p', 'o', 'i', 'n', 't', 'd', 'r', 'i', 'v', 'e', '.', 'c', 'o', 'm', '\0', /* "sharesplitter.com", true */ 's', 'h', 'a', 'r', 'e', 's', 'p', 'l', 'i', 't', 't', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "sharevari.com", true */ 's', 'h', 'a', 'r', 'e', 'v', 'a', 'r', 'i', '.', 'c', 'o', 'm', '\0', /* "sharvey.ca", true */ 's', 'h', 'a', 'r', 'v', 'e', 'y', '.', 'c', 'a', '\0', /* "shasso.com", true */ 's', 'h', 'a', 's', 's', 'o', '.', 'c', 'o', 'm', '\0', /* "shaundanielz.com", true */ 's', 'h', 'a', 'u', 'n', 'd', 'a', 'n', 'i', 'e', 'l', 'z', '.', 'c', 'o', 'm', '\0', /* "shawcentral.ca", true */ 's', 'h', 'a', 'w', 'c', 'e', 'n', 't', 'r', 'a', 'l', '.', 'c', 'a', '\0', + /* "shazbots.org", true */ 's', 'h', 'a', 'z', 'b', 'o', 't', 's', '.', 'o', 'r', 'g', '\0', /* "sheilasdrivingschool.com", true */ 's', 'h', 'e', 'i', 'l', 'a', 's', 'd', 'r', 'i', 'v', 'i', 'n', 'g', 's', 'c', 'h', 'o', 'o', 'l', '.', 'c', 'o', 'm', '\0', /* "shelfordsandstaplefordscouts.org.uk", true */ 's', 'h', 'e', 'l', 'f', 'o', 'r', 'd', 's', 'a', 'n', 'd', 's', 't', 'a', 'p', 'l', 'e', 'f', 'o', 'r', 'd', 's', 'c', 'o', 'u', 't', 's', '.', 'o', 'r', 'g', '.', 'u', 'k', '\0', /* "shellfire.de", true */ 's', 'h', 'e', 'l', 'l', 'f', 'i', 'r', 'e', '.', 'd', 'e', '\0', /* "shellj.me", true */ 's', 'h', 'e', 'l', 'l', 'j', '.', 'm', 'e', '\0', /* "shellvatore.us", true */ 's', 'h', 'e', 'l', 'l', 'v', 'a', 't', 'o', 'r', 'e', '.', 'u', 's', '\0', /* "shemissed.me", true */ 's', 'h', 'e', 'm', 'i', 's', 's', 'e', 'd', '.', 'm', 'e', '\0', /* "shenghaiautoparts.com", true */ 's', 'h', 'e', 'n', 'g', 'h', 'a', 'i', 'a', 'u', 't', 'o', 'p', 'a', 'r', 't', 's', '.', 'c', 'o', 'm', '\0', /* "shentengtu.idv.tw", true */ 's', 'h', 'e', 'n', 't', 'e', 'n', 'g', 't', 'u', '.', 'i', 'd', 'v', '.', 't', 'w', '\0', @@ -10577,17 +10531,16 @@ static const char kSTSHostTable[] = { /* "simpleai.net", true */ 's', 'i', 'm', 'p', 'l', 'e', 'a', 'i', '.', 'n', 'e', 't', '\0', /* "simplecontacts.com", true */ 's', 'i', 'm', 'p', 'l', 'e', 'c', 'o', 'n', 't', 'a', 'c', 't', 's', '.', 'c', 'o', 'm', '\0', /* "simplednscrypt.org", false */ 's', 'i', 'm', 'p', 'l', 'e', 'd', 'n', 's', 'c', 'r', 'y', 'p', 't', '.', 'o', 'r', 'g', '\0', /* "simplerses.com", true */ 's', 'i', 'm', 'p', 'l', 'e', 'r', 's', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "simpletax.ca", true */ 's', 'i', 'm', 'p', 'l', 'e', 't', 'a', 'x', '.', 'c', 'a', '\0', /* "simplexsupport.com", false */ 's', 'i', 'm', 'p', 'l', 'e', 'x', 's', 'u', 'p', 'p', 'o', 'r', 't', '.', 'c', 'o', 'm', '\0', /* "simplia.cz", true */ 's', 'i', 'm', 'p', 'l', 'i', 'a', '.', 'c', 'z', '\0', /* "simplicitypvp.net", true */ 's', 'i', 'm', 'p', 'l', 'i', 'c', 'i', 't', 'y', 'p', 'v', 'p', '.', 'n', 'e', 't', '\0', - /* "simplixos.org", true */ 's', 'i', 'm', 'p', 'l', 'i', 'x', 'o', 's', '.', 'o', 'r', 'g', '\0', /* "simplycharlottemason.com", true */ 's', 'i', 'm', 'p', 'l', 'y', 'c', 'h', 'a', 'r', 'l', 'o', 't', 't', 'e', 'm', 'a', 's', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "simplycloud.de", true */ 's', 'i', 'm', 'p', 'l', 'y', 'c', 'l', 'o', 'u', 'd', '.', 'd', 'e', '\0', /* "simplyfixit.co.uk", true */ 's', 'i', 'm', 'p', 'l', 'y', 'f', 'i', 'x', 'i', 't', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "simplymozzo.se", true */ 's', 'i', 'm', 'p', 'l', 'y', 'm', 'o', 'z', 'z', 'o', '.', 's', 'e', '\0', /* "simplystudio.com", true */ 's', 'i', 'm', 'p', 'l', 'y', 's', 't', 'u', 'd', 'i', 'o', '.', 'c', 'o', 'm', '\0', /* "simpte.com", true */ 's', 'i', 'm', 'p', 't', 'e', '.', 'c', 'o', 'm', '\0', /* "simpul.nl", true */ 's', 'i', 'm', 'p', 'u', 'l', '.', 'n', 'l', '\0', /* "simumiehet.com", true */ 's', 'i', 'm', 'u', 'm', 'i', 'e', 'h', 'e', 't', '.', 'c', 'o', 'm', '\0', @@ -10608,19 +10561,19 @@ static const char kSTSHostTable[] = { /* "sistem-maklumat.com.my", true */ 's', 'i', 's', 't', 'e', 'm', '-', 'm', 'a', 'k', 'l', 'u', 'm', 'a', 't', '.', 'c', 'o', 'm', '.', 'm', 'y', '\0', /* "sistersurprise.de", true */ 's', 'i', 's', 't', 'e', 'r', 's', 'u', 'r', 'p', 'r', 'i', 's', 'e', '.', 'd', 'e', '\0', /* "sisv.eu", true */ 's', 'i', 's', 'v', '.', 'e', 'u', '\0', /* "sitc.sk", true */ 's', 'i', 't', 'c', '.', 's', 'k', '\0', /* "sitehost.io", true */ 's', 'i', 't', 'e', 'h', 'o', 's', 't', '.', 'i', 'o', '\0', /* "sitennisclub.com", true */ 's', 'i', 't', 'e', 'n', 'n', 'i', 's', 'c', 'l', 'u', 'b', '.', 'c', 'o', 'm', '\0', /* "sites.google.com", true */ 's', 'i', 't', 'e', 's', '.', 'g', 'o', 'o', 'g', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "sitesko.de", true */ 's', 'i', 't', 'e', 's', 'k', 'o', '.', 'd', 'e', '\0', - /* "sizingservers.be", false */ 's', 'i', 'z', 'i', 'n', 'g', 's', 'e', 'r', 'v', 'e', 'r', 's', '.', 'b', 'e', '\0', /* "sizzle.co.uk", true */ 's', 'i', 'z', 'z', 'l', 'e', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "sjoorm.com", true */ 's', 'j', 'o', 'o', 'r', 'm', '.', 'c', 'o', 'm', '\0', + /* "skalender.ch", false */ 's', 'k', 'a', 'l', 'e', 'n', 'd', 'e', 'r', '.', 'c', 'h', '\0', /* "skanvordoff.ru", true */ 's', 'k', 'a', 'n', 'v', 'o', 'r', 'd', 'o', 'f', 'f', '.', 'r', 'u', '\0', /* "skaraborgsassistans.com", false */ 's', 'k', 'a', 'r', 'a', 'b', 'o', 'r', 'g', 's', 'a', 's', 's', 'i', 's', 't', 'a', 'n', 's', '.', 'c', 'o', 'm', '\0', /* "skarrok.com", false */ 's', 'k', 'a', 'r', 'r', 'o', 'k', '.', 'c', 'o', 'm', '\0', /* "skatclub-beratzhausen.de", true */ 's', 'k', 'a', 't', 'c', 'l', 'u', 'b', '-', 'b', 'e', 'r', 'a', 't', 'z', 'h', 'a', 'u', 's', 'e', 'n', '.', 'd', 'e', '\0', /* "skatn.de", true */ 's', 'k', 'a', 't', 'n', '.', 'd', 'e', '\0', /* "skeeley.com", true */ 's', 'k', 'e', 'e', 'l', 'e', 'y', '.', 'c', 'o', 'm', '\0', /* "skepticalsports.com", true */ 's', 'k', 'e', 'p', 't', 'i', 'c', 'a', 'l', 's', 'p', 'o', 'r', 't', 's', '.', 'c', 'o', 'm', '\0', /* "sketchmyroom.com", true */ 's', 'k', 'e', 't', 'c', 'h', 'm', 'y', 'r', 'o', 'o', 'm', '.', 'c', 'o', 'm', '\0', @@ -10635,16 +10588,17 @@ static const char kSTSHostTable[] = { /* "skillproxy.org", true */ 's', 'k', 'i', 'l', 'l', 'p', 'r', 'o', 'x', 'y', '.', 'o', 'r', 'g', '\0', /* "skills2services.com", true */ 's', 'k', 'i', 'l', 'l', 's', '2', 's', 'e', 'r', 'v', 'i', 'c', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "skillseo.com", true */ 's', 'k', 'i', 'l', 'l', 's', 'e', 'o', '.', 'c', 'o', 'm', '\0', /* "skimming.net", true */ 's', 'k', 'i', 'm', 'm', 'i', 'n', 'g', '.', 'n', 'e', 't', '\0', /* "sking.io", true */ 's', 'k', 'i', 'n', 'g', '.', 'i', 'o', '\0', /* "skipfault.com", true */ 's', 'k', 'i', 'p', 'f', 'a', 'u', 'l', 't', '.', 'c', 'o', 'm', '\0', /* "skipperinnovations.com", true */ 's', 'k', 'i', 'p', 'p', 'e', 'r', 'i', 'n', 'n', 'o', 'v', 'a', 't', 'i', 'o', 'n', 's', '.', 'c', 'o', 'm', '\0', /* "skoda-nurdiebesten.de", true */ 's', 'k', 'o', 'd', 'a', '-', 'n', 'u', 'r', 'd', 'i', 'e', 'b', 'e', 's', 't', 'e', 'n', '.', 'd', 'e', '\0', + /* "skoda-service-team-cup.de", true */ 's', 'k', 'o', 'd', 'a', '-', 's', 'e', 'r', 'v', 'i', 'c', 'e', '-', 't', 'e', 'a', 'm', '-', 'c', 'u', 'p', '.', 'd', 'e', '\0', /* "skogsbruket.fi", true */ 's', 'k', 'o', 'g', 's', 'b', 'r', 'u', 'k', 'e', 't', '.', 'f', 'i', '\0', /* "skogskultur.fi", true */ 's', 'k', 'o', 'g', 's', 'k', 'u', 'l', 't', 'u', 'r', '.', 'f', 'i', '\0', /* "skoleniphp.cz", true */ 's', 'k', 'o', 'l', 'e', 'n', 'i', 'p', 'h', 'p', '.', 'c', 'z', '\0', /* "skontakt.cz", true */ 's', 'k', 'o', 'n', 't', 'a', 'k', 't', '.', 'c', 'z', '\0', /* "skontorp-enterprise.no", true */ 's', 'k', 'o', 'n', 't', 'o', 'r', 'p', '-', 'e', 'n', 't', 'e', 'r', 'p', 'r', 'i', 's', 'e', '.', 'n', 'o', '\0', /* "skotty.io", true */ 's', 'k', 'o', 't', 't', 'y', '.', 'i', 'o', '\0', /* "skou.dk", true */ 's', 'k', 'o', 'u', '.', 'd', 'k', '\0', /* "sktsolution.com", true */ 's', 'k', 't', 's', 'o', 'l', 'u', 't', 'i', 'o', 'n', '.', 'c', 'o', 'm', '\0', @@ -10735,27 +10689,29 @@ static const char kSTSHostTable[] = { /* "smoo.st", true */ 's', 'm', 'o', 'o', '.', 's', 't', '\0', /* "smoothgesturesplus.com", true */ 's', 'm', 'o', 'o', 't', 'h', 'g', 'e', 's', 't', 'u', 'r', 'e', 's', 'p', 'l', 'u', 's', '.', 'c', 'o', 'm', '\0', /* "smoothics.com", true */ 's', 'm', 'o', 'o', 't', 'h', 'i', 'c', 's', '.', 'c', 'o', 'm', '\0', /* "smove.sg", true */ 's', 'm', 'o', 'v', 'e', '.', 's', 'g', '\0', /* "smow.com", true */ 's', 'm', 'o', 'w', '.', 'c', 'o', 'm', '\0', /* "smow.de", true */ 's', 'm', 'o', 'w', '.', 'd', 'e', '\0', /* "smpetrey.com", true */ 's', 'm', 'p', 'e', 't', 'r', 'e', 'y', '.', 'c', 'o', 'm', '\0', /* "sms1.ro", true */ 's', 'm', 's', '1', '.', 'r', 'o', '\0', + /* "smvfd.info", true */ 's', 'm', 'v', 'f', 'd', '.', 'i', 'n', 'f', 'o', '\0', /* "snakehosting.dk", false */ 's', 'n', 'a', 'k', 'e', 'h', 'o', 's', 't', 'i', 'n', 'g', '.', 'd', 'k', '\0', /* "snapappointments.com", true */ 's', 'n', 'a', 'p', 'a', 'p', 'p', 'o', 'i', 'n', 't', 'm', 'e', 'n', 't', 's', '.', 'c', 'o', 'm', '\0', /* "snapappts.com", true */ 's', 'n', 'a', 'p', 'a', 'p', 'p', 't', 's', '.', 'c', 'o', 'm', '\0', /* "snapfinance.com", true */ 's', 'n', 'a', 'p', 'f', 'i', 'n', 'a', 'n', 'c', 'e', '.', 'c', 'o', 'm', '\0', /* "snazel.co.uk", true */ 's', 'n', 'a', 'z', 'e', 'l', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "snazzie.nl", true */ 's', 'n', 'a', 'z', 'z', 'i', 'e', '.', 'n', 'l', '\0', /* "sneakpod.de", true */ 's', 'n', 'e', 'a', 'k', 'p', 'o', 'd', '.', 'd', 'e', '\0', /* "sneakynote.com", true */ 's', 'n', 'e', 'a', 'k', 'y', 'n', 'o', 't', 'e', '.', 'c', 'o', 'm', '\0', /* "sneed.it", true */ 's', 'n', 'e', 'e', 'd', '.', 'i', 't', '\0', /* "sneedit.com", true */ 's', 'n', 'e', 'e', 'd', 'i', 't', '.', 'c', 'o', 'm', '\0', /* "sneedit.de", true */ 's', 'n', 'e', 'e', 'd', 'i', 't', '.', 'd', 'e', '\0', + /* "sneezry.com", true */ 's', 'n', 'e', 'e', 'z', 'r', 'y', '.', 'c', 'o', 'm', '\0', /* "snelshops.nl", true */ 's', 'n', 'e', 'l', 's', 'h', 'o', 'p', 's', '.', 'n', 'l', '\0', /* "snelwebshop.nl", true */ 's', 'n', 'e', 'l', 'w', 'e', 'b', 's', 'h', 'o', 'p', '.', 'n', 'l', '\0', /* "snfdata.com", true */ 's', 'n', 'f', 'd', 'a', 't', 'a', '.', 'c', 'o', 'm', '\0', /* "sniderman.eu.org", true */ 's', 'n', 'i', 'd', 'e', 'r', 'm', 'a', 'n', '.', 'e', 'u', '.', 'o', 'r', 'g', '\0', /* "sniep.net", true */ 's', 'n', 'i', 'e', 'p', '.', 'n', 'e', 't', '\0', /* "snille.com", true */ 's', 'n', 'i', 'l', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "snip.host", true */ 's', 'n', 'i', 'p', '.', 'h', 'o', 's', 't', '\0', /* "snl.no", true */ 's', 'n', 'l', '.', 'n', 'o', '\0', @@ -10769,17 +10725,16 @@ static const char kSTSHostTable[] = { /* "snughealth.org.uk", true */ 's', 'n', 'u', 'g', 'h', 'e', 'a', 'l', 't', 'h', '.', 'o', 'r', 'g', '.', 'u', 'k', '\0', /* "sny.no", true */ 's', 'n', 'y', '.', 'n', 'o', '\0', /* "so-healthy.co.uk", true */ 's', 'o', '-', 'h', 'e', 'a', 'l', 't', 'h', 'y', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "sobaya-gohei.com", true */ 's', 'o', 'b', 'a', 'y', 'a', '-', 'g', 'o', 'h', 'e', 'i', '.', 'c', 'o', 'm', '\0', /* "sobieray.dyndns.org", true */ 's', 'o', 'b', 'i', 'e', 'r', 'a', 'y', '.', 'd', 'y', 'n', 'd', 'n', 's', '.', 'o', 'r', 'g', '\0', /* "soboleva-pr.com.ua", true */ 's', 'o', 'b', 'o', 'l', 'e', 'v', 'a', '-', 'p', 'r', '.', 'c', 'o', 'm', '.', 'u', 'a', '\0', /* "social-events.net", false */ 's', 'o', 'c', 'i', 'a', 'l', '-', 'e', 'v', 'e', 'n', 't', 's', '.', 'n', 'e', 't', '\0', /* "social-media-strategies.it", true */ 's', 'o', 'c', 'i', 'a', 'l', '-', 'm', 'e', 'd', 'i', 'a', '-', 's', 't', 'r', 'a', 't', 'e', 'g', 'i', 'e', 's', '.', 'i', 't', '\0', - /* "socialgrowing.cl", true */ 's', 'o', 'c', 'i', 'a', 'l', 'g', 'r', 'o', 'w', 'i', 'n', 'g', '.', 'c', 'l', '\0', /* "socialnous.co", true */ 's', 'o', 'c', 'i', 'a', 'l', 'n', 'o', 'u', 's', '.', 'c', 'o', '\0', /* "socialrank.com", true */ 's', 'o', 'c', 'i', 'a', 'l', 'r', 'a', 'n', 'k', '.', 'c', 'o', 'm', '\0', /* "socialsecurity.gov", false */ 's', 'o', 'c', 'i', 'a', 'l', 's', 'e', 'c', 'u', 'r', 'i', 't', 'y', '.', 'g', 'o', 'v', '\0', /* "socialworkout.com", true */ 's', 'o', 'c', 'i', 'a', 'l', 'w', 'o', 'r', 'k', 'o', 'u', 't', '.', 'c', 'o', 'm', '\0', /* "socialworkout.net", true */ 's', 'o', 'c', 'i', 'a', 'l', 'w', 'o', 'r', 'k', 'o', 'u', 't', '.', 'n', 'e', 't', '\0', /* "socialworkout.org", true */ 's', 'o', 'c', 'i', 'a', 'l', 'w', 'o', 'r', 'k', 'o', 'u', 't', '.', 'o', 'r', 'g', '\0', /* "socialworkout.tv", true */ 's', 'o', 'c', 'i', 'a', 'l', 'w', 'o', 'r', 'k', 'o', 'u', 't', '.', 't', 'v', '\0', /* "societyhilldance.com", true */ 's', 'o', 'c', 'i', 'e', 't', 'y', 'h', 'i', 'l', 'l', 'd', 'a', 'n', 'c', 'e', '.', 'c', 'o', 'm', '\0', @@ -10840,16 +10795,17 @@ static const char kSTSHostTable[] = { /* "soply.com", true */ 's', 'o', 'p', 'l', 'y', '.', 'c', 'o', 'm', '\0', /* "soporte.cc", true */ 's', 'o', 'p', 'o', 'r', 't', 'e', '.', 'c', 'c', '\0', /* "sor.so", true */ 's', 'o', 'r', '.', 's', 'o', '\0', /* "sorcix.com", true */ 's', 'o', 'r', 'c', 'i', 'x', '.', 'c', 'o', 'm', '\0', /* "sorn.service.gov.uk", true */ 's', 'o', 'r', 'n', '.', 's', 'e', 'r', 'v', 'i', 'c', 'e', '.', 'g', 'o', 'v', '.', 'u', 'k', '\0', /* "sortaweird.net", true */ 's', 'o', 'r', 't', 'a', 'w', 'e', 'i', 'r', 'd', '.', 'n', 'e', 't', '\0', /* "sorz.org", true */ 's', 'o', 'r', 'z', '.', 'o', 'r', 'g', '\0', /* "sos.sk", true */ 's', 'o', 's', '.', 's', 'k', '\0', + /* "sosaka.ml", true */ 's', 'o', 's', 'a', 'k', 'a', '.', 'm', 'l', '\0', /* "sosecu.red", true */ 's', 'o', 's', 'e', 'c', 'u', '.', 'r', 'e', 'd', '\0', /* "sotar.us", true */ 's', 'o', 't', 'a', 'r', '.', 'u', 's', '\0', /* "sou-co.jp", true */ 's', 'o', 'u', '-', 'c', 'o', '.', 'j', 'p', '\0', /* "soucorneteiro.com.br", true */ 's', 'o', 'u', 'c', 'o', 'r', 'n', 'e', 't', 'e', 'i', 'r', 'o', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', /* "souki.cz", true */ 's', 'o', 'u', 'k', 'i', '.', 'c', 'z', '\0', /* "soulogic.com", false */ 's', 'o', 'u', 'l', 'o', 'g', 'i', 'c', '.', 'c', 'o', 'm', '\0', /* "soumikghosh.com", true */ 's', 'o', 'u', 'm', 'i', 'k', 'g', 'h', 'o', 's', 'h', '.', 'c', 'o', 'm', '\0', /* "soundforsound.co.uk", true */ 's', 'o', 'u', 'n', 'd', 'f', 'o', 'r', 's', 'o', 'u', 'n', 'd', '.', 'c', 'o', '.', 'u', 'k', '\0', @@ -10862,16 +10818,17 @@ static const char kSTSHostTable[] = { /* "sourcecode.love", true */ 's', 'o', 'u', 'r', 'c', 'e', 'c', 'o', 'd', 'e', '.', 'l', 'o', 'v', 'e', '\0', /* "sourcely.net", true */ 's', 'o', 'u', 'r', 'c', 'e', 'l', 'y', '.', 'n', 'e', 't', '\0', /* "sourceway.de", true */ 's', 'o', 'u', 'r', 'c', 'e', 'w', 'a', 'y', '.', 'd', 'e', '\0', /* "sourcitec.com", true */ 's', 'o', 'u', 'r', 'c', 'i', 't', 'e', 'c', '.', 'c', 'o', 'm', '\0', /* "sous-surveillance.net", true */ 's', 'o', 'u', 's', '-', 's', 'u', 'r', 'v', 'e', 'i', 'l', 'l', 'a', 'n', 'c', 'e', '.', 'n', 'e', 't', '\0', /* "southamerican.dating", true */ 's', 'o', 'u', 't', 'h', 'a', 'm', 'e', 'r', 'i', 'c', 'a', 'n', '.', 'd', 'a', 't', 'i', 'n', 'g', '\0', /* "southernjamusa.com", true */ 's', 'o', 'u', 't', 'h', 'e', 'r', 'n', 'j', 'a', 'm', 'u', 's', 'a', '.', 'c', 'o', 'm', '\0', /* "southernutahinfluencers.com", true */ 's', 'o', 'u', 't', 'h', 'e', 'r', 'n', 'u', 't', 'a', 'h', 'i', 'n', 'f', 'l', 'u', 'e', 'n', 'c', 'e', 'r', 's', '.', 'c', 'o', 'm', '\0', + /* "southmeriden-vfd.org", true */ 's', 'o', 'u', 't', 'h', 'm', 'e', 'r', 'i', 'd', 'e', 'n', '-', 'v', 'f', 'd', '.', 'o', 'r', 'g', '\0', /* "southside-crew.com", true */ 's', 'o', 'u', 't', 'h', 's', 'i', 'd', 'e', '-', 'c', 'r', 'e', 'w', '.', 'c', 'o', 'm', '\0', /* "southside-tuning-day.de", true */ 's', 'o', 'u', 't', 'h', 's', 'i', 'd', 'e', '-', 't', 'u', 'n', 'i', 'n', 'g', '-', 'd', 'a', 'y', '.', 'd', 'e', '\0', /* "souvik.me", true */ 's', 'o', 'u', 'v', 'i', 'k', '.', 'm', 'e', '\0', /* "soved.eu", true */ 's', 'o', 'v', 'e', 'd', '.', 'e', 'u', '\0', /* "sowncloud.de", true */ 's', 'o', 'w', 'n', 'c', 'l', 'o', 'u', 'd', '.', 'd', 'e', '\0', /* "sp.rw", true */ 's', 'p', '.', 'r', 'w', '\0', /* "space-it.de", true */ 's', 'p', 'a', 'c', 'e', '-', 'i', 't', '.', 'd', 'e', '\0', /* "spacecafe.org", true */ 's', 'p', 'a', 'c', 'e', 'c', 'a', 'f', 'e', '.', 'o', 'r', 'g', '\0', @@ -10886,43 +10843,43 @@ static const char kSTSHostTable[] = { /* "sparklebastard.com", true */ 's', 'p', 'a', 'r', 'k', 'l', 'e', 'b', 'a', 's', 't', 'a', 'r', 'd', '.', 'c', 'o', 'm', '\0', /* "sparsa.army", true */ 's', 'p', 'a', 'r', 's', 'a', '.', 'a', 'r', 'm', 'y', '\0', /* "spartaconsulting.fi", true */ 's', 'p', 'a', 'r', 't', 'a', 'c', 'o', 'n', 's', 'u', 'l', 't', 'i', 'n', 'g', '.', 'f', 'i', '\0', /* "spawn.cz", true */ 's', 'p', 'a', 'w', 'n', '.', 'c', 'z', '\0', /* "spaysy.com", true */ 's', 'p', 'a', 'y', 's', 'y', '.', 'c', 'o', 'm', '\0', /* "spdf.net", true */ 's', 'p', 'd', 'f', '.', 'n', 'e', 't', '\0', /* "spectrosoftware.de", true */ 's', 'p', 'e', 'c', 't', 'r', 'o', 's', 'o', 'f', 't', 'w', 'a', 'r', 'e', '.', 'd', 'e', '\0', /* "speculor.net", true */ 's', 'p', 'e', 'c', 'u', 'l', 'o', 'r', '.', 'n', 'e', 't', '\0', - /* "spedplus.com.br", true */ 's', 'p', 'e', 'd', 'p', 'l', 'u', 's', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', + /* "spedplus.com.br", false */ 's', 'p', 'e', 'd', 'p', 'l', 'u', 's', '.', 'c', 'o', 'm', '.', 'b', 'r', '\0', /* "speeddate.it", false */ 's', 'p', 'e', 'e', 'd', 'd', 'a', 't', 'e', '.', 'i', 't', '\0', /* "speeds.vip", true */ 's', 'p', 'e', 'e', 'd', 's', '.', 'v', 'i', 'p', '\0', /* "speedy.lt", true */ 's', 'p', 'e', 'e', 'd', 'y', '.', 'l', 't', '\0', /* "speedyprep.com", true */ 's', 'p', 'e', 'e', 'd', 'y', 'p', 'r', 'e', 'p', '.', 'c', 'o', 'm', '\0', /* "speich.net", true */ 's', 'p', 'e', 'i', 'c', 'h', '.', 'n', 'e', 't', '\0', /* "spenglerei-shop.de", true */ 's', 'p', 'e', 'n', 'g', 'l', 'e', 'r', 'e', 'i', '-', 's', 'h', 'o', 'p', '.', 'd', 'e', '\0', /* "sperohub.com", true */ 's', 'p', 'e', 'r', 'o', 'h', 'u', 'b', '.', 'c', 'o', 'm', '\0', /* "sperohub.io", true */ 's', 'p', 'e', 'r', 'o', 'h', 'u', 'b', '.', 'i', 'o', '\0', /* "sperohub.lt", true */ 's', 'p', 'e', 'r', 'o', 'h', 'u', 'b', '.', 'l', 't', '\0', /* "sphereblur.com", true */ 's', 'p', 'h', 'e', 'r', 'e', 'b', 'l', 'u', 'r', '.', 'c', 'o', 'm', '\0', + /* "spherenix.org", true */ 's', 'p', 'h', 'e', 'r', 'e', 'n', 'i', 'x', '.', 'o', 'r', 'g', '\0', /* "spibe.is", true */ 's', 'p', 'i', 'b', 'e', '.', 'i', 's', '\0', /* "spicydog.org", true */ 's', 'p', 'i', 'c', 'y', 'd', 'o', 'g', '.', 'o', 'r', 'g', '\0', /* "spicydog.tk", true */ 's', 'p', 'i', 'c', 'y', 'd', 'o', 'g', '.', 't', 'k', '\0', /* "spicymatch.com", true */ 's', 'p', 'i', 'c', 'y', 'm', 'a', 't', 'c', 'h', '.', 'c', 'o', 'm', '\0', /* "spicywombat.com", true */ 's', 'p', 'i', 'c', 'y', 'w', 'o', 'm', 'b', 'a', 't', '.', 'c', 'o', 'm', '\0', /* "spielcasinos.com", true */ 's', 'p', 'i', 'e', 'l', 'c', 'a', 's', 'i', 'n', 'o', 's', '.', 'c', 'o', 'm', '\0', /* "spiet.nl", true */ 's', 'p', 'i', 'e', 't', '.', 'n', 'l', '\0', /* "spikeykc.me", true */ 's', 'p', 'i', 'k', 'e', 'y', 'k', 'c', '.', 'm', 'e', '\0', /* "spillmaker.no", true */ 's', 'p', 'i', 'l', 'l', 'm', 'a', 'k', 'e', 'r', '.', 'n', 'o', '\0', /* "spilsbury.io", true */ 's', 'p', 'i', 'l', 's', 'b', 'u', 'r', 'y', '.', 'i', 'o', '\0', /* "spinalien.net", true */ 's', 'p', 'i', 'n', 'a', 'l', 'i', 'e', 'n', '.', 'n', 'e', 't', '\0', /* "spins.fedoraproject.org", true */ 's', 'p', 'i', 'n', 's', '.', 'f', 'e', 'd', 'o', 'r', 'a', 'p', 'r', 'o', 'j', 'e', 'c', 't', '.', 'o', 'r', 'g', '\0', /* "spirit-dev.net", true */ 's', 'p', 'i', 'r', 'i', 't', '-', 'd', 'e', 'v', '.', 'n', 'e', 't', '\0', /* "spiritbionic.ro", true */ 's', 'p', 'i', 'r', 'i', 't', 'b', 'i', 'o', 'n', 'i', 'c', '.', 'r', 'o', '\0', /* "spisbilligt.dk", true */ 's', 'p', 'i', 's', 'b', 'i', 'l', 'l', 'i', 'g', 't', '.', 'd', 'k', '\0', - /* "spitefultowel.com", true */ 's', 'p', 'i', 't', 'e', 'f', 'u', 'l', 't', 'o', 'w', 'e', 'l', '.', 'c', 'o', 'm', '\0', /* "spititout.it", true */ 's', 'p', 'i', 't', 'i', 't', 'o', 'u', 't', '.', 'i', 't', '\0', /* "spittersberger.recipes", true */ 's', 'p', 'i', 't', 't', 'e', 'r', 's', 'b', 'e', 'r', 'g', 'e', 'r', '.', 'r', 'e', 'c', 'i', 'p', 'e', 's', '\0', /* "splikity.com", true */ 's', 'p', 'l', 'i', 'k', 'i', 't', 'y', '.', 'c', 'o', 'm', '\0', /* "splitdna.com", true */ 's', 'p', 'l', 'i', 't', 'd', 'n', 'a', '.', 'c', 'o', 'm', '\0', /* "splitreflection.com", true */ 's', 'p', 'l', 'i', 't', 'r', 'e', 'f', 'l', 'e', 'c', 't', 'i', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "splunk.net", true */ 's', 'p', 'l', 'u', 'n', 'k', '.', 'n', 'e', 't', '\0', /* "spodelime.com", true */ 's', 'p', 'o', 'd', 'e', 'l', 'i', 'm', 'e', '.', 'c', 'o', 'm', '\0', /* "spom.net", true */ 's', 'p', 'o', 'm', '.', 'n', 'e', 't', '\0', @@ -10943,17 +10900,16 @@ static const char kSTSHostTable[] = { /* "sprigings.com", true */ 's', 'p', 'r', 'i', 'g', 'i', 'n', 'g', 's', '.', 'c', 'o', 'm', '\0', /* "spritchard.photos", true */ 's', 'p', 'r', 'i', 't', 'c', 'h', 'a', 'r', 'd', '.', 'p', 'h', 'o', 't', 'o', 's', '\0', /* "sproutconnections.com", true */ 's', 'p', 'r', 'o', 'u', 't', 'c', 'o', 'n', 'n', 'e', 'c', 't', 'i', 'o', 'n', 's', '.', 'c', 'o', 'm', '\0', /* "sprueche-zum-valentinstag.de", true */ 's', 'p', 'r', 'u', 'e', 'c', 'h', 'e', '-', 'z', 'u', 'm', '-', 'v', 'a', 'l', 'e', 'n', 't', 'i', 'n', 's', 't', 'a', 'g', '.', 'd', 'e', '\0', /* "sprueche-zur-geburt.info", true */ 's', 'p', 'r', 'u', 'e', 'c', 'h', 'e', '-', 'z', 'u', 'r', '-', 'g', 'e', 'b', 'u', 'r', 't', '.', 'i', 'n', 'f', 'o', '\0', /* "sprueche-zur-hochzeit.de", true */ 's', 'p', 'r', 'u', 'e', 'c', 'h', 'e', '-', 'z', 'u', 'r', '-', 'h', 'o', 'c', 'h', 'z', 'e', 'i', 't', '.', 'd', 'e', '\0', /* "sprueche-zur-konfirmation.de", true */ 's', 'p', 'r', 'u', 'e', 'c', 'h', 'e', '-', 'z', 'u', 'r', '-', 'k', 'o', 'n', 'f', 'i', 'r', 'm', 'a', 't', 'i', 'o', 'n', '.', 'd', 'e', '\0', /* "sprutech.de", true */ 's', 'p', 'r', 'u', 't', 'e', 'c', 'h', '.', 'd', 'e', '\0', - /* "sprybear.com", true */ 's', 'p', 'r', 'y', 'b', 'e', 'a', 'r', '.', 'c', 'o', 'm', '\0', /* "sps-lehrgang.de", true */ 's', 'p', 's', '-', 'l', 'e', 'h', 'r', 'g', 'a', 'n', 'g', '.', 'd', 'e', '\0', /* "sptk.org", true */ 's', 'p', 't', 'k', '.', 'o', 'r', 'g', '\0', /* "spuffin.com", true */ 's', 'p', 'u', 'f', 'f', 'i', 'n', '.', 'c', 'o', 'm', '\0', /* "spydar007.com", true */ 's', 'p', 'y', 'd', 'a', 'r', '0', '0', '7', '.', 'c', 'o', 'm', '\0', /* "spydar007.net", true */ 's', 'p', 'y', 'd', 'a', 'r', '0', '0', '7', '.', 'n', 'e', 't', '\0', /* "spydersec.com", true */ 's', 'p', 'y', 'd', 'e', 'r', 's', 'e', 'c', '.', 'c', 'o', 'm', '\0', /* "spyprofit.ru", true */ 's', 'p', 'y', 'p', 'r', 'o', 'f', 'i', 't', '.', 'r', 'u', '\0', /* "spyroszarzonis.com", true */ 's', 'p', 'y', 'r', 'o', 's', 'z', 'a', 'r', 'z', 'o', 'n', 'i', 's', '.', 'c', 'o', 'm', '\0', @@ -10986,17 +10942,16 @@ static const char kSTSHostTable[] = { /* "ssl.md", true */ 's', 's', 'l', '.', 'm', 'd', '\0', /* "ssl247.co.uk", true */ 's', 's', 'l', '2', '4', '7', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "ssl247.com.mx", true */ 's', 's', 'l', '2', '4', '7', '.', 'c', 'o', 'm', '.', 'm', 'x', '\0', /* "ssl247.de", true */ 's', 's', 'l', '2', '4', '7', '.', 'd', 'e', '\0', /* "ssl247.dk", true */ 's', 's', 'l', '2', '4', '7', '.', 'd', 'k', '\0', /* "sslcertificaten.nl", true */ 's', 's', 'l', 'c', 'e', 'r', 't', 'i', 'f', 'i', 'c', 'a', 't', 'e', 'n', '.', 'n', 'l', '\0', /* "sslcheck.nl", true */ 's', 's', 'l', 'c', 'h', 'e', 'c', 'k', '.', 'n', 'l', '\0', /* "ssldecoder.org", true */ 's', 's', 'l', 'd', 'e', 'c', 'o', 'd', 'e', 'r', '.', 'o', 'r', 'g', '\0', - /* "sslhosting.cz", true */ 's', 's', 'l', 'h', 'o', 's', 't', 'i', 'n', 'g', '.', 'c', 'z', '\0', /* "sslmate.com", true */ 's', 's', 'l', 'm', 'a', 't', 'e', '.', 'c', 'o', 'm', '\0', /* "sslpoint.com", true */ 's', 's', 'l', 'p', 'o', 'i', 'n', 't', '.', 'c', 'o', 'm', '\0', /* "sslsurvey.de", true */ 's', 's', 'l', 's', 'u', 'r', 'v', 'e', 'y', '.', 'd', 'e', '\0', /* "sslzilla.de", true */ 's', 's', 'l', 'z', 'i', 'l', 'l', 'a', '.', 'd', 'e', '\0', /* "sstewartgallus.com", true */ 's', 's', 't', 'e', 'w', 'a', 'r', 't', 'g', 'a', 'l', 'l', 'u', 's', '.', 'c', 'o', 'm', '\0', /* "ssworld.ga", true */ 's', 's', 'w', 'o', 'r', 'l', 'd', '.', 'g', 'a', '\0', /* "staack.com", false */ 's', 't', 'a', 'a', 'c', 'k', '.', 'c', 'o', 'm', '\0', /* "staatschutz.at", true */ 's', 't', 'a', 'a', 't', 's', 'c', 'h', 'u', 't', 'z', '.', 'a', 't', '\0', @@ -11109,17 +11064,16 @@ static const char kSTSHostTable[] = { /* "stirlingpoon.com", false */ 's', 't', 'i', 'r', 'l', 'i', 'n', 'g', 'p', 'o', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "stirlingpoon.net", true */ 's', 't', 'i', 'r', 'l', 'i', 'n', 'g', 'p', 'o', 'o', 'n', '.', 'n', 'e', 't', '\0', /* "stirlingpoon.xyz", true */ 's', 't', 'i', 'r', 'l', 'i', 'n', 'g', 'p', 'o', 'o', 'n', '.', 'x', 'y', 'z', '\0', /* "stitchfiddle.com", true */ 's', 't', 'i', 't', 'c', 'h', 'f', 'i', 'd', 'd', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "stjohnin.com", true */ 's', 't', 'j', 'o', 'h', 'n', 'i', 'n', '.', 'c', 'o', 'm', '\0', /* "stjohnmiami.org", true */ 's', 't', 'j', 'o', 'h', 'n', 'm', 'i', 'a', 'm', 'i', '.', 'o', 'r', 'g', '\0', /* "stnl.de", true */ 's', 't', 'n', 'l', '.', 'd', 'e', '\0', /* "stocktrader.com", true */ 's', 't', 'o', 'c', 'k', 't', 'r', 'a', 'd', 'e', 'r', '.', 'c', 'o', 'm', '\0', - /* "stoffe-monster.de", true */ 's', 't', 'o', 'f', 'f', 'e', '-', 'm', 'o', 'n', 's', 't', 'e', 'r', '.', 'd', 'e', '\0', /* "stoffelen.nl", true */ 's', 't', 'o', 'f', 'f', 'e', 'l', 'e', 'n', '.', 'n', 'l', '\0', /* "stoianlawfirm.com", true */ 's', 't', 'o', 'i', 'a', 'n', 'l', 'a', 'w', 'f', 'i', 'r', 'm', '.', 'c', 'o', 'm', '\0', /* "stoick.me", true */ 's', 't', 'o', 'i', 'c', 'k', '.', 'm', 'e', '\0', /* "stole-my.bike", false */ 's', 't', 'o', 'l', 'e', '-', 'm', 'y', '.', 'b', 'i', 'k', 'e', '\0', /* "stole-my.tv", false */ 's', 't', 'o', 'l', 'e', '-', 'm', 'y', '.', 't', 'v', '\0', /* "stolina.de", true */ 's', 't', 'o', 'l', 'i', 'n', 'a', '.', 'd', 'e', '\0', /* "stolkschepen.nl", true */ 's', 't', 'o', 'l', 'k', 's', 'c', 'h', 'e', 'p', 'e', 'n', '.', 'n', 'l', '\0', /* "stomt.com", true */ 's', 't', 'o', 'm', 't', '.', 'c', 'o', 'm', '\0', @@ -11139,17 +11093,17 @@ static const char kSTSHostTable[] = { /* "stpatricksguild.com", true */ 's', 't', 'p', 'a', 't', 'r', 'i', 'c', 'k', 's', 'g', 'u', 'i', 'l', 'd', '.', 'c', 'o', 'm', '\0', /* "stpip.com", true */ 's', 't', 'p', 'i', 'p', '.', 'c', 'o', 'm', '\0', /* "stpip.net", true */ 's', 't', 'p', 'i', 'p', '.', 'n', 'e', 't', '\0', /* "strahlende-augen.info", true */ 's', 't', 'r', 'a', 'h', 'l', 'e', 'n', 'd', 'e', '-', 'a', 'u', 'g', 'e', 'n', '.', 'i', 'n', 'f', 'o', '\0', /* "strangemusicinc.net", true */ 's', 't', 'r', 'a', 'n', 'g', 'e', 'm', 'u', 's', 'i', 'c', 'i', 'n', 'c', '.', 'n', 'e', 't', '\0', /* "straubis.org", true */ 's', 't', 'r', 'a', 'u', 'b', 'i', 's', '.', 'o', 'r', 'g', '\0', /* "strbt.de", true */ 's', 't', 'r', 'b', 't', '.', 'd', 'e', '\0', /* "strchr.com", true */ 's', 't', 'r', 'c', 'h', 'r', '.', 'c', 'o', 'm', '\0', - /* "streampanel.net", false */ 's', 't', 'r', 'e', 'a', 'm', 'p', 'a', 'n', 'e', 'l', '.', 'n', 'e', 't', '\0', + /* "streampanel.net", true */ 's', 't', 'r', 'e', 'a', 'm', 'p', 'a', 'n', 'e', 'l', '.', 'n', 'e', 't', '\0', /* "streamzilla.com", true */ 's', 't', 'r', 'e', 'a', 'm', 'z', 'i', 'l', 'l', 'a', '.', 'c', 'o', 'm', '\0', /* "streetdancecenter.com", true */ 's', 't', 'r', 'e', 'e', 't', 'd', 'a', 'n', 'c', 'e', 'c', 'e', 'n', 't', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "streetspotr.com", true */ 's', 't', 'r', 'e', 'e', 't', 's', 'p', 'o', 't', 'r', '.', 'c', 'o', 'm', '\0', /* "streetview.wien", true */ 's', 't', 'r', 'e', 'e', 't', 'v', 'i', 'e', 'w', '.', 'w', 'i', 'e', 'n', '\0', /* "stressfreehousehold.com", true */ 's', 't', 'r', 'e', 's', 's', 'f', 'r', 'e', 'e', 'h', 'o', 'u', 's', 'e', 'h', 'o', 'l', 'd', '.', 'c', 'o', 'm', '\0', /* "stretchmyan.us", true */ 's', 't', 'r', 'e', 't', 'c', 'h', 'm', 'y', 'a', 'n', '.', 'u', 's', '\0', /* "stricted.net", true */ 's', 't', 'r', 'i', 'c', 't', 'e', 'd', '.', 'n', 'e', 't', '\0', /* "strictlynormal.com", true */ 's', 't', 'r', 'i', 'c', 't', 'l', 'y', 'n', 'o', 'r', 'm', 'a', 'l', '.', 'c', 'o', 'm', '\0', @@ -11182,17 +11136,17 @@ static const char kSTSHostTable[] = { /* "stulda.cz", true */ 's', 't', 'u', 'l', 'd', 'a', '.', 'c', 'z', '\0', /* "stumf.si", true */ 's', 't', 'u', 'm', 'f', '.', 's', 'i', '\0', /* "stuntmen.xyz", true */ 's', 't', 'u', 'n', 't', 'm', 'e', 'n', '.', 'x', 'y', 'z', '\0', /* "stupendous.net", true */ 's', 't', 'u', 'p', 'e', 'n', 'd', 'o', 'u', 's', '.', 'n', 'e', 't', '\0', /* "sturbi.de", true */ 's', 't', 'u', 'r', 'b', 'i', '.', 'd', 'e', '\0', /* "sturbock.me", true */ 's', 't', 'u', 'r', 'b', 'o', 'c', 'k', '.', 'm', 'e', '\0', /* "stutelage.com", true */ 's', 't', 'u', 't', 'e', 'l', 'a', 'g', 'e', '.', 'c', 'o', 'm', '\0', /* "stuur.nl", false */ 's', 't', 'u', 'u', 'r', '.', 'n', 'l', '\0', - /* "stygium.net", false */ 's', 't', 'y', 'g', 'i', 'u', 'm', '.', 'n', 'e', 't', '\0', + /* "stygium.net", true */ 's', 't', 'y', 'g', 'i', 'u', 'm', '.', 'n', 'e', 't', '\0', /* "styleci.io", true */ 's', 't', 'y', 'l', 'e', 'c', 'i', '.', 'i', 'o', '\0', /* "stylenda.com", true */ 's', 't', 'y', 'l', 'e', 'n', 'd', 'a', '.', 'c', 'o', 'm', '\0', /* "styles.pm", true */ 's', 't', 'y', 'l', 'e', 's', '.', 'p', 'm', '\0', /* "stylle.me", true */ 's', 't', 'y', 'l', 'l', 'e', '.', 'm', 'e', '\0', /* "su1ph3r.io", true */ 's', 'u', '1', 'p', 'h', '3', 'r', '.', 'i', 'o', '\0', /* "suave.io", true */ 's', 'u', 'a', 'v', 'e', '.', 'i', 'o', '\0', /* "subeesu.com", true */ 's', 'u', 'b', 'e', 'e', 's', 'u', '.', 'c', 'o', 'm', '\0', /* "sublevel.net", false */ 's', 'u', 'b', 'l', 'e', 'v', 'e', 'l', '.', 'n', 'e', 't', '\0', @@ -11207,21 +11161,21 @@ static const char kSTSHostTable[] = { /* "sudaraka.org", true */ 's', 'u', 'd', 'a', 'r', 'a', 'k', 'a', '.', 'o', 'r', 'g', '\0', /* "sudo.ws", true */ 's', 'u', 'd', 'o', '.', 'w', 's', '\0', /* "sudoschool.com", true */ 's', 'u', 'd', 'o', 's', 'c', 'h', 'o', 'o', 'l', '.', 'c', 'o', 'm', '\0', /* "suian.or.jp", true */ 's', 'u', 'i', 'a', 'n', '.', 'o', 'r', '.', 'j', 'p', '\0', /* "suitocracy.com", true */ 's', 'u', 'i', 't', 'o', 'c', 'r', 'a', 'c', 'y', '.', 'c', 'o', 'm', '\0', /* "suksit.com", true */ 's', 'u', 'k', 's', 'i', 't', '.', 'c', 'o', 'm', '\0', /* "sulek.eu", true */ 's', 'u', 'l', 'e', 'k', '.', 'e', 'u', '\0', /* "summitbankofkc.com", true */ 's', 'u', 'm', 'm', 'i', 't', 'b', 'a', 'n', 'k', 'o', 'f', 'k', 'c', '.', 'c', 'o', 'm', '\0', - /* "sumoatm.com", true */ 's', 'u', 'm', 'o', 'a', 't', 'm', '.', 'c', 'o', 'm', '\0', /* "sunbritetv.com", true */ 's', 'u', 'n', 'b', 'r', 'i', 't', 'e', 't', 'v', '.', 'c', 'o', 'm', '\0', /* "sundayfundayjapan.com", true */ 's', 'u', 'n', 'd', 'a', 'y', 'f', 'u', 'n', 'd', 'a', 'y', 'j', 'a', 'p', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "suneilpatel.com", true */ 's', 'u', 'n', 'e', 'i', 'l', 'p', 'a', 't', 'e', 'l', '.', 'c', 'o', 'm', '\0', /* "sunflyer.cn", true */ 's', 'u', 'n', 'f', 'l', 'y', 'e', 'r', '.', 'c', 'n', '\0', + /* "sunjaydhama.com", true */ 's', 'u', 'n', 'j', 'a', 'y', 'd', 'h', 'a', 'm', 'a', '.', 'c', 'o', 'm', '\0', /* "sunnyfruit.ru", true */ 's', 'u', 'n', 'n', 'y', 'f', 'r', 'u', 'i', 't', '.', 'r', 'u', '\0', /* "sunsetwx.com", true */ 's', 'u', 'n', 's', 'e', 't', 'w', 'x', '.', 'c', 'o', 'm', '\0', /* "sunstar.bg", true */ 's', 'u', 'n', 's', 't', 'a', 'r', '.', 'b', 'g', '\0', /* "suos.io", true */ 's', 'u', 'o', 's', '.', 'i', 'o', '\0', /* "supastuds.com", true */ 's', 'u', 'p', 'a', 's', 't', 'u', 'd', 's', '.', 'c', 'o', 'm', '\0', /* "supcro.com", true */ 's', 'u', 'p', 'c', 'r', 'o', '.', 'c', 'o', 'm', '\0', /* "super-o-blog.com", true */ 's', 'u', 'p', 'e', 'r', '-', 'o', '-', 'b', 'l', 'o', 'g', '.', 'c', 'o', 'm', '\0', /* "superbabysitting.ch", true */ 's', 'u', 'p', 'e', 'r', 'b', 'a', 'b', 'y', 's', 'i', 't', 't', 'i', 'n', 'g', '.', 'c', 'h', '\0', @@ -11232,17 +11186,17 @@ static const char kSTSHostTable[] = { /* "superkonsult.se", true */ 's', 'u', 'p', 'e', 'r', 'k', 'o', 'n', 's', 'u', 'l', 't', '.', 's', 'e', '\0', /* "supermarx.nl", true */ 's', 'u', 'p', 'e', 'r', 'm', 'a', 'r', 'x', '.', 'n', 'l', '\0', /* "superpase.com", true */ 's', 'u', 'p', 'e', 'r', 'p', 'a', 's', 'e', '.', 'c', 'o', 'm', '\0', /* "supersecurefancydomain.com", true */ 's', 'u', 'p', 'e', 'r', 's', 'e', 'c', 'u', 'r', 'e', 'f', 'a', 'n', 'c', 'y', 'd', 'o', 'm', 'a', 'i', 'n', '.', 'c', 'o', 'm', '\0', /* "supersonnig-festival.de", true */ 's', 'u', 'p', 'e', 'r', 's', 'o', 'n', 'n', 'i', 'g', '-', 'f', 'e', 's', 't', 'i', 'v', 'a', 'l', '.', 'd', 'e', '\0', /* "supersonnigfestival.de", true */ 's', 'u', 'p', 'e', 'r', 's', 'o', 'n', 'n', 'i', 'g', 'f', 'e', 's', 't', 'i', 'v', 'a', 'l', '.', 'd', 'e', '\0', /* "superswingtrainer.com", true */ 's', 'u', 'p', 'e', 'r', 's', 'w', 'i', 'n', 'g', 't', 'r', 'a', 'i', 'n', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "superuser.fi", true */ 's', 'u', 'p', 'e', 'r', 'u', 's', 'e', 'r', '.', 'f', 'i', '\0', - /* "supinbot.ovh", true */ 's', 'u', 'p', 'i', 'n', 'b', 'o', 't', '.', 'o', 'v', 'h', '\0', + /* "supinbot.ovh", false */ 's', 'u', 'p', 'i', 'n', 'b', 'o', 't', '.', 'o', 'v', 'h', '\0', /* "supplies24.at", true */ 's', 'u', 'p', 'p', 'l', 'i', 'e', 's', '2', '4', '.', 'a', 't', '\0', /* "supplies24.es", true */ 's', 'u', 'p', 'p', 'l', 'i', 'e', 's', '2', '4', '.', 'e', 's', '\0', /* "support.mayfirst.org", false */ 's', 'u', 'p', 'p', 'o', 'r', 't', '.', 'm', 'a', 'y', 'f', 'i', 'r', 's', 't', '.', 'o', 'r', 'g', '\0', /* "supweb.ovh", true */ 's', 'u', 'p', 'w', 'e', 'b', '.', 'o', 'v', 'h', '\0', /* "sur-v.com", true */ 's', 'u', 'r', '-', 'v', '.', 'c', 'o', 'm', '\0', /* "surfone-leucate.com", true */ 's', 'u', 'r', 'f', 'o', 'n', 'e', '-', 'l', 'e', 'u', 'c', 'a', 't', 'e', '.', 'c', 'o', 'm', '\0', /* "surgenet.nl", true */ 's', 'u', 'r', 'g', 'e', 'n', 'e', 't', '.', 'n', 'l', '\0', /* "surgicalassociateswny.com", true */ 's', 'u', 'r', 'g', 'i', 'c', 'a', 'l', 'a', 's', 's', 'o', 'c', 'i', 'a', 't', 'e', 's', 'w', 'n', 'y', '.', 'c', 'o', 'm', '\0', @@ -11259,16 +11213,17 @@ static const char kSTSHostTable[] = { /* "suwalls.com", true */ 's', 'u', 'w', 'a', 'l', 'l', 's', '.', 'c', 'o', 'm', '\0', /* "sv-turm-hohenlimburg.de", true */ 's', 'v', '-', 't', 'u', 'r', 'm', '-', 'h', 'o', 'h', 'e', 'n', 'l', 'i', 'm', 'b', 'u', 'r', 'g', '.', 'd', 'e', '\0', /* "svager.cz", true */ 's', 'v', 'a', 'g', 'e', 'r', '.', 'c', 'z', '\0', /* "svallee.fr", false */ 's', 'v', 'a', 'l', 'l', 'e', 'e', '.', 'f', 'r', '\0', /* "svarovani.tk", true */ 's', 'v', 'a', 'r', 'o', 'v', 'a', 'n', 'i', '.', 't', 'k', '\0', /* "svatba-frantovi.cz", true */ 's', 'v', 'a', 't', 'b', 'a', '-', 'f', 'r', 'a', 'n', 't', 'o', 'v', 'i', '.', 'c', 'z', '\0', /* "svendubbeld.nl", true */ 's', 'v', 'e', 'n', 'd', 'u', 'b', 'b', 'e', 'l', 'd', '.', 'n', 'l', '\0', /* "sveneckelmann.de", true */ 's', 'v', 'e', 'n', 'e', 'c', 'k', 'e', 'l', 'm', 'a', 'n', 'n', '.', 'd', 'e', '\0', + /* "svenluijten.com", true */ 's', 'v', 'e', 'n', 'l', 'u', 'i', 'j', 't', 'e', 'n', '.', 'c', 'o', 'm', '\0', /* "svenskacasino.com", true */ 's', 'v', 'e', 'n', 's', 'k', 'a', 'c', 'a', 's', 'i', 'n', 'o', '.', 'c', 'o', 'm', '\0', /* "svijet-medija.hr", true */ 's', 'v', 'i', 'j', 'e', 't', '-', 'm', 'e', 'd', 'i', 'j', 'a', '.', 'h', 'r', '\0', /* "sw-servers.net", true */ 's', 'w', '-', 's', 'e', 'r', 'v', 'e', 'r', 's', '.', 'n', 'e', 't', '\0', /* "swaggerdile.com", true */ 's', 'w', 'a', 'g', 'g', 'e', 'r', 'd', 'i', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "swaleacademiestrust.org.uk", true */ 's', 'w', 'a', 'l', 'e', 'a', 'c', 'a', 'd', 'e', 'm', 'i', 'e', 's', 't', 'r', 'u', 's', 't', '.', 'o', 'r', 'g', '.', 'u', 'k', '\0', /* "swansdoor.org", true */ 's', 'w', 'a', 'n', 's', 'd', 'o', 'o', 'r', '.', 'o', 'r', 'g', '\0', /* "swapadoodle.com", true */ 's', 'w', 'a', 'p', 'a', 'd', 'o', 'o', 'd', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "swat4stats.com", true */ 's', 'w', 'a', 't', '4', 's', 't', 'a', 't', 's', '.', 'c', 'o', 'm', '\0', @@ -11318,17 +11273,16 @@ static const char kSTSHostTable[] = { /* "sysctl.se", false */ 's', 'y', 's', 'c', 't', 'l', '.', 's', 'e', '\0', /* "sysdb.io", true */ 's', 'y', 's', 'd', 'b', '.', 'i', 'o', '\0', /* "sysert.tv", true */ 's', 'y', 's', 'e', 'r', 't', '.', 't', 'v', '\0', /* "sysmike.de", true */ 's', 'y', 's', 'm', 'i', 'k', 'e', '.', 'd', 'e', '\0', /* "sysmike.net", true */ 's', 'y', 's', 'm', 'i', 'k', 'e', '.', 'n', 'e', 't', '\0', /* "syss.de", true */ 's', 'y', 's', 's', '.', 'd', 'e', '\0', /* "system.is", true */ 's', 'y', 's', 't', 'e', 'm', '.', 'i', 's', '\0', /* "systemintegra.ru", true */ 's', 'y', 's', 't', 'e', 'm', 'i', 'n', 't', 'e', 'g', 'r', 'a', '.', 'r', 'u', '\0', - /* "systemreboot.net", true */ 's', 'y', 's', 't', 'e', 'm', 'r', 'e', 'b', 'o', 'o', 't', '.', 'n', 'e', 't', '\0', /* "syzygy-tables.info", true */ 's', 'y', 'z', 'y', 'g', 'y', '-', 't', 'a', 'b', 'l', 'e', 's', '.', 'i', 'n', 'f', 'o', '\0', /* "szagun.net", true */ 's', 'z', 'a', 'g', 'u', 'n', '.', 'n', 'e', 't', '\0', /* "szamitogepdepo.com", true */ 's', 'z', 'a', 'm', 'i', 't', 'o', 'g', 'e', 'p', 'd', 'e', 'p', 'o', '.', 'c', 'o', 'm', '\0', /* "szechenyi2020.hu", true */ 's', 'z', 'e', 'c', 'h', 'e', 'n', 'y', 'i', '2', '0', '2', '0', '.', 'h', 'u', '\0', /* "szentistvanpt.sk", true */ 's', 'z', 'e', 'n', 't', 'i', 's', 't', 'v', 'a', 'n', 'p', 't', '.', 's', 'k', '\0', /* "szongott.net", true */ 's', 'z', 'o', 'n', 'g', 'o', 't', 't', '.', 'n', 'e', 't', '\0', /* "t-complex.space", true */ 't', '-', 'c', 'o', 'm', 'p', 'l', 'e', 'x', '.', 's', 'p', 'a', 'c', 'e', '\0', /* "t-hawk.com", true */ 't', '-', 'h', 'a', 'w', 'k', '.', 'c', 'o', 'm', '\0', @@ -11401,17 +11355,16 @@ static const char kSTSHostTable[] = { /* "taskstream.com", true */ 't', 'a', 's', 'k', 's', 't', 'r', 'e', 'a', 'm', '.', 'c', 'o', 'm', '\0', /* "taskulu.com", true */ 't', 'a', 's', 'k', 'u', 'l', 'u', '.', 'c', 'o', 'm', '\0', /* "tastycake.net", true */ 't', 'a', 's', 't', 'y', 'c', 'a', 'k', 'e', '.', 'n', 'e', 't', '\0', /* "tatilbus.com", false */ 't', 'a', 't', 'i', 'l', 'b', 'u', 's', '.', 'c', 'o', 'm', '\0', /* "tatort-fanpage.de", true */ 't', 'a', 't', 'o', 'r', 't', '-', 'f', 'a', 'n', 'p', 'a', 'g', 'e', '.', 'd', 'e', '\0', /* "tatt.io", true */ 't', 'a', 't', 't', '.', 'i', 'o', '\0', /* "tattoo.dating", true */ 't', 'a', 't', 't', 'o', 'o', '.', 'd', 'a', 't', 'i', 'n', 'g', '\0', /* "tavoittaja.fi", true */ 't', 'a', 'v', 'o', 'i', 't', 't', 'a', 'j', 'a', '.', 'f', 'i', '\0', - /* "tavopica.lt", true */ 't', 'a', 'v', 'o', 'p', 'i', 'c', 'a', '.', 'l', 't', '\0', /* "taxaroo.com", true */ 't', 'a', 'x', 'a', 'r', 'o', 'o', '.', 'c', 'o', 'm', '\0', /* "taxisafmatosinhos.pt", true */ 't', 'a', 'x', 'i', 's', 'a', 'f', 'm', 'a', 't', 'o', 's', 'i', 'n', 'h', 'o', 's', '.', 'p', 't', '\0', /* "taxsnaps.co.nz", true */ 't', 'a', 'x', 's', 'n', 'a', 'p', 's', '.', 'c', 'o', '.', 'n', 'z', '\0', /* "taxspeaker.com", true */ 't', 'a', 'x', 's', 'p', 'e', 'a', 'k', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "taxsquirrel.com", true */ 't', 'a', 'x', 's', 'q', 'u', 'i', 'r', 'r', 'e', 'l', '.', 'c', 'o', 'm', '\0', /* "tazj.in", false */ 't', 'a', 'z', 'j', '.', 'i', 'n', '\0', /* "tbarter.com", false */ 't', 'b', 'a', 'r', 't', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "tbitc.ch", true */ 't', 'b', 'i', 't', 'c', '.', 'c', 'h', '\0', @@ -11482,16 +11435,17 @@ static const char kSTSHostTable[] = { /* "tedeh.net", true */ 't', 'e', 'd', 'e', 'h', '.', 'n', 'e', 't', '\0', /* "tedovo.com", true */ 't', 'e', 'd', 'o', 'v', 'o', '.', 'c', 'o', 'm', '\0', /* "teebeedee.org", true */ 't', 'e', 'e', 'b', 'e', 'e', 'd', 'e', 'e', '.', 'o', 'r', 'g', '\0', /* "teemo.gg", true */ 't', 'e', 'e', 'm', 'o', '.', 'g', 'g', '\0', /* "teemperor.de", true */ 't', 'e', 'e', 'm', 'p', 'e', 'r', 'o', 'r', '.', 'd', 'e', '\0', /* "tege-elektronik.hu", true */ 't', 'e', 'g', 'e', '-', 'e', 'l', 'e', 'k', 't', 'r', 'o', 'n', 'i', 'k', '.', 'h', 'u', '\0', /* "tehotuotanto.net", true */ 't', 'e', 'h', 'o', 't', 'u', 'o', 't', 'a', 'n', 't', 'o', '.', 'n', 'e', 't', '\0', /* "tehrabbitt.com", false */ 't', 'e', 'h', 'r', 'a', 'b', 'b', 'i', 't', 't', '.', 'c', 'o', 'm', '\0', + /* "teknologi.or.id", true */ 't', 'e', 'k', 'n', 'o', 'l', 'o', 'g', 'i', '.', 'o', 'r', '.', 'i', 'd', '\0', /* "tektoria.de", false */ 't', 'e', 'k', 't', 'o', 'r', 'i', 'a', '.', 'd', 'e', '\0', /* "tel-dithmarschen.de", true */ 't', 'e', 'l', '-', 'd', 'i', 't', 'h', 'm', 'a', 'r', 's', 'c', 'h', 'e', 'n', '.', 'd', 'e', '\0', /* "telefisk.org", true */ 't', 'e', 'l', 'e', 'f', 'i', 's', 'k', '.', 'o', 'r', 'g', '\0', /* "telefonkonferenz.ch", true */ 't', 'e', 'l', 'e', 'f', 'o', 'n', 'k', 'o', 'n', 'f', 'e', 'r', 'e', 'n', 'z', '.', 'c', 'h', '\0', /* "telefonnummer.online", true */ 't', 'e', 'l', 'e', 'f', 'o', 'n', 'n', 'u', 'm', 'm', 'e', 'r', '.', 'o', 'n', 'l', 'i', 'n', 'e', '\0', /* "telefoonnummerinfo.nl", true */ 't', 'e', 'l', 'e', 'f', 'o', 'o', 'n', 'n', 'u', 'm', 'm', 'e', 'r', 'i', 'n', 'f', 'o', '.', 'n', 'l', '\0', /* "telehealthventures.com", true */ 't', 'e', 'l', 'e', 'h', 'e', 'a', 'l', 't', 'h', 'v', 'e', 'n', 't', 'u', 'r', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "telekollektiv.org", true */ 't', 'e', 'l', 'e', 'k', 'o', 'l', 'l', 'e', 'k', 't', 'i', 'v', '.', 'o', 'r', 'g', '\0', @@ -11510,17 +11464,16 @@ static const char kSTSHostTable[] = { /* "tennisadmin.com", true */ 't', 'e', 'n', 'n', 'i', 's', 'a', 'd', 'm', 'i', 'n', '.', 'c', 'o', 'm', '\0', /* "tenpolab.com", true */ 't', 'e', 'n', 'p', 'o', 'l', 'a', 'b', '.', 'c', 'o', 'm', '\0', /* "tensei-slime.com", true */ 't', 'e', 'n', 's', 'e', 'i', '-', 's', 'l', 'i', 'm', 'e', '.', 'c', 'o', 'm', '\0', /* "tenshoku-hanashi.com", true */ 't', 'e', 'n', 's', 'h', 'o', 'k', 'u', '-', 'h', 'a', 'n', 'a', 's', 'h', 'i', '.', 'c', 'o', 'm', '\0', /* "tent.io", true */ 't', 'e', 'n', 't', '.', 'i', 'o', '\0', /* "tenta.com", true */ 't', 'e', 'n', 't', 'a', '.', 'c', 'o', 'm', '\0', /* "tentations-voyages.com", true */ 't', 'e', 'n', 't', 'a', 't', 'i', 'o', 'n', 's', '-', 'v', 'o', 'y', 'a', 'g', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "tenyx.de", true */ 't', 'e', 'n', 'y', 'x', '.', 'd', 'e', '\0', - /* "teodio.cl", true */ 't', 'e', 'o', 'd', 'i', 'o', '.', 'c', 'l', '\0', /* "teos.online", true */ 't', 'e', 'o', 's', '.', 'o', 'n', 'l', 'i', 'n', 'e', '\0', /* "teoskanta.fi", true */ 't', 'e', 'o', 's', 'k', 'a', 'n', 't', 'a', '.', 'f', 'i', '\0', /* "tepid.org", true */ 't', 'e', 'p', 'i', 'd', '.', 'o', 'r', 'g', '\0', /* "teracloud.at", true */ 't', 'e', 'r', 'a', 'c', 'l', 'o', 'u', 'd', '.', 'a', 't', '\0', /* "teriiphotography.com", true */ 't', 'e', 'r', 'i', 'i', 'p', 'h', 'o', 't', 'o', 'g', 'r', 'a', 'p', 'h', 'y', '.', 'c', 'o', 'm', '\0', /* "terrab.de", true */ 't', 'e', 'r', 'r', 'a', 'b', '.', 'd', 'e', '\0', /* "terracloud.de", true */ 't', 'e', 'r', 'r', 'a', 'c', 'l', 'o', 'u', 'd', '.', 'd', 'e', '\0', /* "terraelectronica.ru", true */ 't', 'e', 'r', 'r', 'a', 'e', 'l', 'e', 'c', 't', 'r', 'o', 'n', 'i', 'c', 'a', '.', 'r', 'u', '\0', @@ -11627,30 +11580,32 @@ static const char kSTSHostTable[] = { /* "thelinuxspace.com", true */ 't', 'h', 'e', 'l', 'i', 'n', 'u', 'x', 's', 'p', 'a', 'c', 'e', '.', 'c', 'o', 'm', '\0', /* "thelittlecraft.com", true */ 't', 'h', 'e', 'l', 'i', 't', 't', 'l', 'e', 'c', 'r', 'a', 'f', 't', '.', 'c', 'o', 'm', '\0', /* "thelocals.ru", true */ 't', 'h', 'e', 'l', 'o', 'c', 'a', 'l', 's', '.', 'r', 'u', '\0', /* "themarshallproject.org", true */ 't', 'h', 'e', 'm', 'a', 'r', 's', 'h', 'a', 'l', 'l', 'p', 'r', 'o', 'j', 'e', 'c', 't', '.', 'o', 'r', 'g', '\0', /* "themeaudit.com", true */ 't', 'h', 'e', 'm', 'e', 'a', 'u', 'd', 'i', 't', '.', 'c', 'o', 'm', '\0', /* "themoderate.xyz", true */ 't', 'h', 'e', 'm', 'o', 'd', 'e', 'r', 'a', 't', 'e', '.', 'x', 'y', 'z', '\0', /* "themoep.at", true */ 't', 'h', 'e', 'm', 'o', 'e', 'p', '.', 'a', 't', '\0', /* "themostexpensiveworkofart.com", true */ 't', 'h', 'e', 'm', 'o', 's', 't', 'e', 'x', 'p', 'e', 'n', 's', 'i', 'v', 'e', 'w', 'o', 'r', 'k', 'o', 'f', 'a', 'r', 't', '.', 'c', 'o', 'm', '\0', + /* "themusthaves.nl", true */ 't', 'h', 'e', 'm', 'u', 's', 't', 'h', 'a', 'v', 'e', 's', '.', 'n', 'l', '\0', /* "thenanfang.com", true */ 't', 'h', 'e', 'n', 'a', 'n', 'f', 'a', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "thenexwork.com", true */ 't', 'h', 'e', 'n', 'e', 'x', 'w', 'o', 'r', 'k', '.', 'c', 'o', 'm', '\0', /* "thenib.com", true */ 't', 'h', 'e', 'n', 'i', 'b', '.', 'c', 'o', 'm', '\0', /* "thenocman.com", true */ 't', 'h', 'e', 'n', 'o', 'c', 'm', 'a', 'n', '.', 'c', 'o', 'm', '\0', /* "thenorthschool.org.uk", true */ 't', 'h', 'e', 'n', 'o', 'r', 't', 'h', 's', 'c', 'h', 'o', 'o', 'l', '.', 'o', 'r', 'g', '.', 'u', 'k', '\0', /* "theojones.name", true */ 't', 'h', 'e', 'o', 'j', 'o', 'n', 'e', 's', '.', 'n', 'a', 'm', 'e', '\0', /* "thepaymentscompany.com", true */ 't', 'h', 'e', 'p', 'a', 'y', 'm', 'e', 'n', 't', 's', 'c', 'o', 'm', 'p', 'a', 'n', 'y', '.', 'c', 'o', 'm', '\0', /* "thepb.in", true */ 't', 'h', 'e', 'p', 'b', '.', 'i', 'n', '\0', /* "thephonecaseplace.com", true */ 't', 'h', 'e', 'p', 'h', 'o', 'n', 'e', 'c', 'a', 's', 'e', 'p', 'l', 'a', 'c', 'e', '.', 'c', 'o', 'm', '\0', /* "thepiratebay.poker", true */ 't', 'h', 'e', 'p', 'i', 'r', 'a', 't', 'e', 'b', 'a', 'y', '.', 'p', 'o', 'k', 'e', 'r', '\0', /* "thepiratebay.tech", true */ 't', 'h', 'e', 'p', 'i', 'r', 'a', 't', 'e', 'b', 'a', 'y', '.', 't', 'e', 'c', 'h', '\0', /* "theploughharborne.co.uk", true */ 't', 'h', 'e', 'p', 'l', 'o', 'u', 'g', 'h', 'h', 'a', 'r', 'b', 'o', 'r', 'n', 'e', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "theramo.re", true */ 't', 'h', 'e', 'r', 'a', 'm', 'o', '.', 'r', 'e', '\0', /* "therapynotes.com", true */ 't', 'h', 'e', 'r', 'a', 'p', 'y', 'n', 'o', 't', 'e', 's', '.', 'c', 'o', 'm', '\0', + /* "therevenge.me", true */ 't', 'h', 'e', 'r', 'e', 'v', 'e', 'n', 'g', 'e', '.', 'm', 'e', '\0', /* "therewill.be", true */ 't', 'h', 'e', 'r', 'e', 'w', 'i', 'l', 'l', '.', 'b', 'e', '\0', /* "thermity.com", true */ 't', 'h', 'e', 'r', 'm', 'i', 't', 'y', '.', 'c', 'o', 'm', '\0', /* "thermolamina.nl", true */ 't', 'h', 'e', 'r', 'm', 'o', 'l', 'a', 'm', 'i', 'n', 'a', '.', 'n', 'l', '\0', /* "therockawaysny.com", true */ 't', 'h', 'e', 'r', 'o', 'c', 'k', 'a', 'w', 'a', 'y', 's', 'n', 'y', '.', 'c', 'o', 'm', '\0', /* "thescientists.nl", true */ 't', 'h', 'e', 's', 'c', 'i', 'e', 'n', 't', 'i', 's', 't', 's', '.', 'n', 'l', '\0', /* "theseed.io", true */ 't', 'h', 'e', 's', 'e', 'e', 'd', '.', 'i', 'o', '\0', /* "theseedbox.xyz", true */ 't', 'h', 'e', 's', 'e', 'e', 'd', 'b', 'o', 'x', '.', 'x', 'y', 'z', '\0', /* "theseletarmall.com", true */ 't', 'h', 'e', 's', 'e', 'l', 'e', 't', 'a', 'r', 'm', 'a', 'l', 'l', '.', 'c', 'o', 'm', '\0', @@ -11669,17 +11624,16 @@ static const char kSTSHostTable[] = { /* "theunitedstates.io", true */ 't', 'h', 'e', 'u', 'n', 'i', 't', 'e', 'd', 's', 't', 'a', 't', 'e', 's', '.', 'i', 'o', '\0', /* "theweilai.com", false */ 't', 'h', 'e', 'w', 'e', 'i', 'l', 'a', 'i', '.', 'c', 'o', 'm', '\0', /* "thewhitehat.club", true */ 't', 'h', 'e', 'w', 'h', 'i', 't', 'e', 'h', 'a', 't', '.', 'c', 'l', 'u', 'b', '\0', /* "thewhiterabbit.space", true */ 't', 'h', 'e', 'w', 'h', 'i', 't', 'e', 'r', 'a', 'b', 'b', 'i', 't', '.', 's', 'p', 'a', 'c', 'e', '\0', /* "thewindow.com", true */ 't', 'h', 'e', 'w', 'i', 'n', 'd', 'o', 'w', '.', 'c', 'o', 'm', '\0', /* "thewoodkid.com.au", true */ 't', 'h', 'e', 'w', 'o', 'o', 'd', 'k', 'i', 'd', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "theworldsend.eu", true */ 't', 'h', 'e', 'w', 'o', 'r', 'l', 'd', 's', 'e', 'n', 'd', '.', 'e', 'u', '\0', /* "thexme.de", true */ 't', 'h', 'e', 'x', 'm', 'e', '.', 'd', 'e', '\0', - /* "theyosh.nl", true */ 't', 'h', 'e', 'y', 'o', 's', 'h', '.', 'n', 'l', '\0', /* "thezero.org", true */ 't', 'h', 'e', 'z', 'e', 'r', 'o', '.', 'o', 'r', 'g', '\0', /* "thibautcharles.net", true */ 't', 'h', 'i', 'b', 'a', 'u', 't', 'c', 'h', 'a', 'r', 'l', 'e', 's', '.', 'n', 'e', 't', '\0', /* "thierryhayoz.ch", true */ 't', 'h', 'i', 'e', 'r', 'r', 'y', 'h', 'a', 'y', 'o', 'z', '.', 'c', 'h', '\0', /* "thingies.site", true */ 't', 'h', 'i', 'n', 'g', 'i', 'e', 's', '.', 's', 'i', 't', 'e', '\0', /* "thinkcash.nl", true */ 't', 'h', 'i', 'n', 'k', 'c', 'a', 's', 'h', '.', 'n', 'l', '\0', /* "thinkdo.jp", true */ 't', 'h', 'i', 'n', 'k', 'd', 'o', '.', 'j', 'p', '\0', /* "thinkindifferent.net", true */ 't', 'h', 'i', 'n', 'k', 'i', 'n', 'd', 'i', 'f', 'f', 'e', 'r', 'e', 'n', 't', '.', 'n', 'e', 't', '\0', /* "thinklikeanentrepreneur.com", true */ 't', 'h', 'i', 'n', 'k', 'l', 'i', 'k', 'e', 'a', 'n', 'e', 'n', 't', 'r', 'e', 'p', 'r', 'e', 'n', 'e', 'u', 'r', '.', 'c', 'o', 'm', '\0', @@ -11729,17 +11683,17 @@ static const char kSTSHostTable[] = { /* "ti-pla.net", true */ 't', 'i', '-', 'p', 'l', 'a', '.', 'n', 'e', 't', '\0', /* "ti.blog.br", true */ 't', 'i', '.', 'b', 'l', 'o', 'g', '.', 'b', 'r', '\0', /* "tiacollection.com", true */ 't', 'i', 'a', 'c', 'o', 'l', 'l', 'e', 'c', 't', 'i', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "tianshili.me", true */ 't', 'i', 'a', 'n', 's', 'h', 'i', 'l', 'i', '.', 'm', 'e', '\0', /* "ticfleet.com", true */ 't', 'i', 'c', 'f', 'l', 'e', 'e', 't', '.', 'c', 'o', 'm', '\0', /* "ticketmates.com.au", true */ 't', 'i', 'c', 'k', 'e', 't', 'm', 'a', 't', 'e', 's', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "ticketoplichting.nl", true */ 't', 'i', 'c', 'k', 'e', 't', 'o', 'p', 'l', 'i', 'c', 'h', 't', 'i', 'n', 'g', '.', 'n', 'l', '\0', /* "tickettoaster.de", true */ 't', 'i', 'c', 'k', 'e', 't', 't', 'o', 'a', 's', 't', 'e', 'r', '.', 'd', 'e', '\0', - /* "tid.jp", false */ 't', 'i', 'd', '.', 'j', 'p', '\0', + /* "tid.jp", true */ 't', 'i', 'd', '.', 'j', 'p', '\0', /* "tidmore.us", true */ 't', 'i', 'd', 'm', 'o', 'r', 'e', '.', 'u', 's', '\0', /* "tidycustoms.net", true */ 't', 'i', 'd', 'y', 'c', 'u', 's', 't', 'o', 'm', 's', '.', 'n', 'e', 't', '\0', /* "tiendavertigo.com", true */ 't', 'i', 'e', 'n', 'd', 'a', 'v', 'e', 'r', 't', 'i', 'g', 'o', '.', 'c', 'o', 'm', '\0', /* "tiendschuurstraat.nl", true */ 't', 'i', 'e', 'n', 'd', 's', 'c', 'h', 'u', 'u', 'r', 's', 't', 'r', 'a', 'a', 't', '.', 'n', 'l', '\0', /* "tiens-ib.cz", true */ 't', 'i', 'e', 'n', 's', '-', 'i', 'b', '.', 'c', 'z', '\0', /* "tierarztpraxis-bogenhausen.de", true */ 't', 'i', 'e', 'r', 'a', 'r', 'z', 't', 'p', 'r', 'a', 'x', 'i', 's', '-', 'b', 'o', 'g', 'e', 'n', 'h', 'a', 'u', 's', 'e', 'n', '.', 'd', 'e', '\0', /* "tiernanx.com", true */ 't', 'i', 'e', 'r', 'n', 'a', 'n', 'x', '.', 'c', 'o', 'm', '\0', /* "tifan.net", true */ 't', 'i', 'f', 'a', 'n', '.', 'n', 'e', 't', '\0', @@ -11748,17 +11702,16 @@ static const char kSTSHostTable[] = { /* "tigerdile.com", true */ 't', 'i', 'g', 'e', 'r', 'd', 'i', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "tightlineproductions.com", true */ 't', 'i', 'g', 'h', 't', 'l', 'i', 'n', 'e', 'p', 'r', 'o', 'd', 'u', 'c', 't', 'i', 'o', 'n', 's', '.', 'c', 'o', 'm', '\0', /* "tildebot.com", true */ 't', 'i', 'l', 'd', 'e', 'b', 'o', 't', '.', 'c', 'o', 'm', '\0', /* "tilikum.io", true */ 't', 'i', 'l', 'i', 'k', 'u', 'm', '.', 'i', 'o', '\0', /* "tilkah.com.au", true */ 't', 'i', 'l', 'k', 'a', 'h', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "tillcraft.com", true */ 't', 'i', 'l', 'l', 'c', 'r', 'a', 'f', 't', '.', 'c', 'o', 'm', '\0', /* "tillseasyscore.com", true */ 't', 'i', 'l', 'l', 's', 'e', 'a', 's', 'y', 's', 'c', 'o', 'r', 'e', '.', 'c', 'o', 'm', '\0', /* "timbuktutimber.com", true */ 't', 'i', 'm', 'b', 'u', 'k', 't', 'u', 't', 'i', 'm', 'b', 'e', 'r', '.', 'c', 'o', 'm', '\0', - /* "timcamara.com", true */ 't', 'i', 'm', 'c', 'a', 'm', 'a', 'r', 'a', '.', 'c', 'o', 'm', '\0', /* "timdebruijn.nl", true */ 't', 'i', 'm', 'd', 'e', 'b', 'r', 'u', 'i', 'j', 'n', '.', 'n', 'l', '\0', /* "time2060.ru", true */ 't', 'i', 'm', 'e', '2', '0', '6', '0', '.', 'r', 'u', '\0', /* "time22.com", true */ 't', 'i', 'm', 'e', '2', '2', '.', 'c', 'o', 'm', '\0', /* "timersuite.com", true */ 't', 'i', 'm', 'e', 'r', 's', 'u', 'i', 't', 'e', '.', 'c', 'o', 'm', '\0', /* "timetab.org", true */ 't', 'i', 'm', 'e', 't', 'a', 'b', '.', 'o', 'r', 'g', '\0', /* "timetotrade.com", true */ 't', 'i', 'm', 'e', 't', 'o', 't', 'r', 'a', 'd', 'e', '.', 'c', 'o', 'm', '\0', /* "timmersgems.com", true */ 't', 'i', 'm', 'm', 'e', 'r', 's', 'g', 'e', 'm', 's', '.', 'c', 'o', 'm', '\0', /* "timmy.ws", true */ 't', 'i', 'm', 'm', 'y', '.', 'w', 's', '\0', @@ -11780,19 +11733,21 @@ static const char kSTSHostTable[] = { /* "tinyssh.org", true */ 't', 'i', 'n', 'y', 's', 's', 'h', '.', 'o', 'r', 'g', '\0', /* "tinyvpn.net", true */ 't', 'i', 'n', 'y', 'v', 'p', 'n', '.', 'n', 'e', 't', '\0', /* "tinyvpn.org", true */ 't', 'i', 'n', 'y', 'v', 'p', 'n', '.', 'o', 'r', 'g', '\0', /* "tipbox.is", true */ 't', 'i', 'p', 'b', 'o', 'x', '.', 'i', 's', '\0', /* "tiplanet.org", true */ 't', 'i', 'p', 'l', 'a', 'n', 'e', 't', '.', 'o', 'r', 'g', '\0', /* "tipoftheday.tips", true */ 't', 'i', 'p', 'o', 'f', 't', 'h', 'e', 'd', 'a', 'y', '.', 't', 'i', 'p', 's', '\0', /* "tipps-fuer-den-haushalt.de", true */ 't', 'i', 'p', 'p', 's', '-', 'f', 'u', 'e', 'r', '-', 'd', 'e', 'n', '-', 'h', 'a', 'u', 's', 'h', 'a', 'l', 't', '.', 'd', 'e', '\0', /* "tippspiel.cc", true */ 't', 'i', 'p', 'p', 's', 'p', 'i', 'e', 'l', '.', 'c', 'c', '\0', + /* "tism.in", true */ 't', 'i', 's', 'm', '.', 'i', 'n', '\0', /* "tit.systems", true */ 't', 'i', 't', '.', 's', 'y', 's', 't', 'e', 'm', 's', '\0', /* "titanleaf.com", true */ 't', 'i', 't', 'a', 'n', 'l', 'e', 'a', 'f', '.', 'c', 'o', 'm', '\0', /* "titanous.com", true */ 't', 'i', 't', 'a', 'n', 'o', 'u', 's', '.', 'c', 'o', 'm', '\0', + /* "titiansgirlphotography.com", true */ 't', 'i', 't', 'i', 'a', 'n', 's', 'g', 'i', 'r', 'l', 'p', 'h', 'o', 't', 'o', 'g', 'r', 'a', 'p', 'h', 'y', '.', 'c', 'o', 'm', '\0', /* "titouan.co", false */ 't', 'i', 't', 'o', 'u', 'a', 'n', '.', 'c', 'o', '\0', /* "tjenestetorvet.dk", true */ 't', 'j', 'e', 'n', 'e', 's', 't', 'e', 't', 'o', 'r', 'v', 'e', 't', '.', 'd', 'k', '\0', /* "tjs.me", true */ 't', 'j', 's', '.', 'm', 'e', '\0', /* "tkat.ch", true */ 't', 'k', 'a', 't', '.', 'c', 'h', '\0', /* "tlach.cz", true */ 't', 'l', 'a', 'c', 'h', '.', 'c', 'z', '\0', /* "tlo.link", true */ 't', 'l', 'o', '.', 'l', 'i', 'n', 'k', '\0', /* "tlo.xyz", true */ 't', 'l', 'o', '.', 'x', 'y', 'z', '\0', /* "tls.builders", true */ 't', 'l', 's', '.', 'b', 'u', 'i', 'l', 'd', 'e', 'r', 's', '\0', @@ -11923,16 +11878,17 @@ static const char kSTSHostTable[] = { /* "totalchecklist.com", true */ 't', 'o', 't', 'a', 'l', 'c', 'h', 'e', 'c', 'k', 'l', 'i', 's', 't', '.', 'c', 'o', 'm', '\0', /* "totaltriathlon.com", true */ 't', 'o', 't', 'a', 'l', 't', 'r', 'i', 'a', 't', 'h', 'l', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "totalworkout.fitness", true */ 't', 'o', 't', 'a', 'l', 'w', 'o', 'r', 'k', 'o', 'u', 't', '.', 'f', 'i', 't', 'n', 'e', 's', 's', '\0', /* "totch.de", true */ 't', 'o', 't', 'c', 'h', '.', 'd', 'e', '\0', /* "totem-international.com", true */ 't', 'o', 't', 'e', 'm', '-', 'i', 'n', 't', 'e', 'r', 'n', 'a', 't', 'i', 'o', 'n', 'a', 'l', '.', 'c', 'o', 'm', '\0', /* "touch.facebook.com", false */ 't', 'o', 'u', 'c', 'h', '.', 'f', 'a', 'c', 'e', 'b', 'o', 'o', 'k', '.', 'c', 'o', 'm', '\0', /* "touch.mail.ru", true */ 't', 'o', 'u', 'c', 'h', '.', 'm', 'a', 'i', 'l', '.', 'r', 'u', '\0', /* "touchbasemail.com", true */ 't', 'o', 'u', 'c', 'h', 'b', 'a', 's', 'e', 'm', 'a', 'i', 'l', '.', 'c', 'o', 'm', '\0', + /* "touchpointidg.us", true */ 't', 'o', 'u', 'c', 'h', 'p', 'o', 'i', 'n', 't', 'i', 'd', 'g', '.', 'u', 's', '\0', /* "touchstonefms.co.uk", true */ 't', 'o', 'u', 'c', 'h', 's', 't', 'o', 'n', 'e', 'f', 'm', 's', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "touchtable.nl", true */ 't', 'o', 'u', 'c', 'h', 't', 'a', 'b', 'l', 'e', '.', 'n', 'l', '\0', /* "touhou.cc", true */ 't', 'o', 'u', 'h', 'o', 'u', '.', 'c', 'c', '\0', /* "tourispo.com", true */ 't', 'o', 'u', 'r', 'i', 's', 'p', 'o', '.', 'c', 'o', 'm', '\0', /* "toursandtransfers.it", true */ 't', 'o', 'u', 'r', 's', 'a', 'n', 'd', 't', 'r', 'a', 'n', 's', 'f', 'e', 'r', 's', '.', 'i', 't', '\0', /* "tout-art.ch", true */ 't', 'o', 'u', 't', '-', 'a', 'r', 't', '.', 'c', 'h', '\0', /* "toutart.ch", true */ 't', 'o', 'u', 't', 'a', 'r', 't', '.', 'c', 'h', '\0', /* "toutmonexam.fr", true */ 't', 'o', 'u', 't', 'm', 'o', 'n', 'e', 'x', 'a', 'm', '.', 'f', 'r', '\0', @@ -12058,16 +12014,17 @@ static const char kSTSHostTable[] = { /* "trw-reseller.com", true */ 't', 'r', 'w', '-', 'r', 'e', 's', 'e', 'l', 'l', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "tryfabulousdiet.com", true */ 't', 'r', 'y', 'f', 'a', 'b', 'u', 'l', 'o', 'u', 's', 'd', 'i', 'e', 't', '.', 'c', 'o', 'm', '\0', /* "tryfabulousskincream.com", true */ 't', 'r', 'y', 'f', 'a', 'b', 'u', 'l', 'o', 'u', 's', 's', 'k', 'i', 'n', 'c', 'r', 'e', 'a', 'm', '.', 'c', 'o', 'm', '\0', /* "tryfabulousskinserum.com", true */ 't', 'r', 'y', 'f', 'a', 'b', 'u', 'l', 'o', 'u', 's', 's', 'k', 'i', 'n', 's', 'e', 'r', 'u', 'm', '.', 'c', 'o', 'm', '\0', /* "tryoneday.co", true */ 't', 'r', 'y', 'o', 'n', 'e', 'd', 'a', 'y', '.', 'c', 'o', '\0', /* "trywesayyes.com", true */ 't', 'r', 'y', 'w', 'e', 's', 'a', 'y', 'y', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "trzepak.pl", true */ 't', 'r', 'z', 'e', 'p', 'a', 'k', '.', 'p', 'l', '\0', /* "ts3.consulting", true */ 't', 's', '3', '.', 'c', 'o', 'n', 's', 'u', 'l', 't', 'i', 'n', 'g', '\0', + /* "tsaro.io", true */ 't', 's', 'a', 'r', 'o', '.', 'i', 'o', '\0', /* "tsgbit.net", true */ 't', 's', 'g', 'b', 'i', 't', '.', 'n', 'e', 't', '\0', /* "tsrstore.gq", true */ 't', 's', 'r', 's', 't', 'o', 'r', 'e', '.', 'g', 'q', '\0', /* "tsumegumi.net", true */ 't', 's', 'u', 'm', 'e', 'g', 'u', 'm', 'i', '.', 'n', 'e', 't', '\0', /* "tsumi.it", true */ 't', 's', 'u', 'm', 'i', '.', 'i', 't', '\0', /* "tsuyuzakihiroyuki.com", true */ 't', 's', 'u', 'y', 'u', 'z', 'a', 'k', 'i', 'h', 'i', 'r', 'o', 'y', 'u', 'k', 'i', '.', 'c', 'o', 'm', '\0', /* "tsv-1894.de", true */ 't', 's', 'v', '-', '1', '8', '9', '4', '.', 'd', 'e', '\0', /* "ttb.gov", true */ 't', 't', 'b', '.', 'g', 'o', 'v', '\0', /* "ttbonline.gov", true */ 't', 't', 'b', 'o', 'n', 'l', 'i', 'n', 'e', '.', 'g', 'o', 'v', '\0', @@ -12154,17 +12111,19 @@ static const char kSTSHostTable[] = { /* "uat-activesg.com", true */ 'u', 'a', 't', '-', 'a', 'c', 't', 'i', 'v', 'e', 's', 'g', '.', 'c', 'o', 'm', '\0', /* "ub3rk1tten.com", false */ 'u', 'b', '3', 'r', 'k', '1', 't', 't', 'e', 'n', '.', 'c', 'o', 'm', '\0', /* "ubanquity.com", true */ 'u', 'b', 'a', 'n', 'q', 'u', 'i', 't', 'y', '.', 'c', 'o', 'm', '\0', /* "uber.com.au", true */ 'u', 'b', 'e', 'r', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "uberboxen.net", true */ 'u', 'b', 'e', 'r', 'b', 'o', 'x', 'e', 'n', '.', 'n', 'e', 't', '\0', /* "uberfunction.com", true */ 'u', 'b', 'e', 'r', 'f', 'u', 'n', 'c', 't', 'i', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "ubertt.org", true */ 'u', 'b', 'e', 'r', 't', 't', '.', 'o', 'r', 'g', '\0', /* "uberwald.de", true */ 'u', 'b', 'e', 'r', 'w', 'a', 'l', 'd', '.', 'd', 'e', '\0', + /* "uberwald.ws", true */ 'u', 'b', 'e', 'r', 'w', 'a', 'l', 'd', '.', 'w', 's', '\0', /* "ubicv.com", true */ 'u', 'b', 'i', 'c', 'v', '.', 'c', 'o', 'm', '\0', + /* "ubtce.com", true */ 'u', 'b', 't', 'c', 'e', '.', 'c', 'o', 'm', '\0', /* "ucfirst.nl", true */ 'u', 'c', 'f', 'i', 'r', 's', 't', '.', 'n', 'l', '\0', /* "udbhav.me", true */ 'u', 'd', 'b', 'h', 'a', 'v', '.', 'm', 'e', '\0', /* "udo-luetkemeier.de", true */ 'u', 'd', 'o', '-', 'l', 'u', 'e', 't', 'k', 'e', 'm', 'e', 'i', 'e', 'r', '.', 'd', 'e', '\0', /* "udomain.net", true */ 'u', 'd', 'o', 'm', 'a', 'i', 'n', '.', 'n', 'e', 't', '\0', /* "udruga-point.hr", true */ 'u', 'd', 'r', 'u', 'g', 'a', '-', 'p', 'o', 'i', 'n', 't', '.', 'h', 'r', '\0', /* "uerdingen.info", true */ 'u', 'e', 'r', 'd', 'i', 'n', 'g', 'e', 'n', '.', 'i', 'n', 'f', 'o', '\0', /* "uesociedadlimitada.com", true */ 'u', 'e', 's', 'o', 'c', 'i', 'e', 'd', 'a', 'd', 'l', 'i', 'm', 'i', 't', 'a', 'd', 'a', '.', 'c', 'o', 'm', '\0', /* "ueu.me", true */ 'u', 'e', 'u', '.', 'm', 'e', '\0', @@ -12219,17 +12178,16 @@ static const char kSTSHostTable[] = { /* "under30stravelinsurance.com.au", true */ 'u', 'n', 'd', 'e', 'r', '3', '0', 's', 't', 'r', 'a', 'v', 'e', 'l', 'i', 'n', 's', 'u', 'r', 'a', 'n', 'c', 'e', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "underskatten.tk", true */ 'u', 'n', 'd', 'e', 'r', 's', 'k', 'a', 't', 't', 'e', 'n', '.', 't', 'k', '\0', /* "undo.co.il", true */ 'u', 'n', 'd', 'o', '.', 'c', 'o', '.', 'i', 'l', '\0', /* "undone.me", true */ 'u', 'n', 'd', 'o', 'n', 'e', '.', 'm', 'e', '\0', /* "unearaigneeauplafond.fr", false */ 'u', 'n', 'e', 'a', 'r', 'a', 'i', 'g', 'n', 'e', 'e', 'a', 'u', 'p', 'l', 'a', 'f', 'o', 'n', 'd', '.', 'f', 'r', '\0', /* "unexpected.nu", true */ 'u', 'n', 'e', 'x', 'p', 'e', 'c', 't', 'e', 'd', '.', 'n', 'u', '\0', /* "ungegamere.dk", true */ 'u', 'n', 'g', 'e', 'g', 'a', 'm', 'e', 'r', 'e', '.', 'd', 'k', '\0', /* "unicef.pl", true */ 'u', 'n', 'i', 'c', 'e', 'f', '.', 'p', 'l', '\0', - /* "unicooo.com", true */ 'u', 'n', 'i', 'c', 'o', 'o', 'o', '.', 'c', 'o', 'm', '\0', /* "unicorncloud.org", true */ 'u', 'n', 'i', 'c', 'o', 'r', 'n', 'c', 'l', 'o', 'u', 'd', '.', 'o', 'r', 'g', '\0', /* "unicredit.ba", true */ 'u', 'n', 'i', 'c', 'r', 'e', 'd', 'i', 't', '.', 'b', 'a', '\0', /* "unicredit.ro", true */ 'u', 'n', 'i', 'c', 'r', 'e', 'd', 'i', 't', '.', 'r', 'o', '\0', /* "unicreditbank.hu", true */ 'u', 'n', 'i', 'c', 'r', 'e', 'd', 'i', 't', 'b', 'a', 'n', 'k', '.', 'h', 'u', '\0', /* "unicreditbank.rs", true */ 'u', 'n', 'i', 'c', 'r', 'e', 'd', 'i', 't', 'b', 'a', 'n', 'k', '.', 'r', 's', '\0', /* "unicreditbank.ru", true */ 'u', 'n', 'i', 'c', 'r', 'e', 'd', 'i', 't', 'b', 'a', 'n', 'k', '.', 'r', 'u', '\0', /* "uniekglas.nl", true */ 'u', 'n', 'i', 'e', 'k', 'g', 'l', 'a', 's', '.', 'n', 'l', '\0', /* "uniform-agri.com", true */ 'u', 'n', 'i', 'f', 'o', 'r', 'm', '-', 'a', 'g', 'r', 'i', '.', 'c', 'o', 'm', '\0', @@ -12263,16 +12221,17 @@ static const char kSTSHostTable[] = { /* "unrealircd.org", true */ 'u', 'n', 'r', 'e', 'a', 'l', 'i', 'r', 'c', 'd', '.', 'o', 'r', 'g', '\0', /* "unrelated.net.au", true */ 'u', 'n', 'r', 'e', 'l', 'a', 't', 'e', 'd', '.', 'n', 'e', 't', '.', 'a', 'u', '\0', /* "uns.vn", true */ 'u', 'n', 's', '.', 'v', 'n', '\0', /* "unseen.is", true */ 'u', 'n', 's', 'e', 'e', 'n', '.', 'i', 's', '\0', /* "unseen.tw", true */ 'u', 'n', 's', 'e', 'e', 'n', '.', 't', 'w', '\0', /* "unser-gartenforum.de", true */ 'u', 'n', 's', 'e', 'r', '-', 'g', 'a', 'r', 't', 'e', 'n', 'f', 'o', 'r', 'u', 'm', '.', 'd', 'e', '\0', /* "unsupervised.ca", true */ 'u', 'n', 's', 'u', 'p', 'e', 'r', 'v', 'i', 's', 'e', 'd', '.', 'c', 'a', '\0', /* "unsuspicious.click", true */ 'u', 'n', 's', 'u', 's', 'p', 'i', 'c', 'i', 'o', 'u', 's', '.', 'c', 'l', 'i', 'c', 'k', '\0', + /* "unsystem.net", true */ 'u', 'n', 's', 'y', 's', 't', 'e', 'm', '.', 'n', 'e', 't', '\0', /* "unterfrankenclan.de", true */ 'u', 'n', 't', 'e', 'r', 'f', 'r', 'a', 'n', 'k', 'e', 'n', 'c', 'l', 'a', 'n', '.', 'd', 'e', '\0', /* "unterschicht.tv", true */ 'u', 'n', 't', 'e', 'r', 's', 'c', 'h', 'i', 'c', 'h', 't', '.', 't', 'v', '\0', /* "untoldstory.eu", true */ 'u', 'n', 't', 'o', 'l', 'd', 's', 't', 'o', 'r', 'y', '.', 'e', 'u', '\0', /* "unun.fi", true */ 'u', 'n', 'u', 'n', '.', 'f', 'i', '\0', /* "unveiledgnosis.com", true */ 'u', 'n', 'v', 'e', 'i', 'l', 'e', 'd', 'g', 'n', 'o', 's', 'i', 's', '.', 'c', 'o', 'm', '\0', /* "unyq.me", false */ 'u', 'n', 'y', 'q', '.', 'm', 'e', '\0', /* "up1.ca", true */ 'u', 'p', '1', '.', 'c', 'a', '\0', /* "upandclear.org", true */ 'u', 'p', 'a', 'n', 'd', 'c', 'l', 'e', 'a', 'r', '.', 'o', 'r', 'g', '\0', @@ -12339,17 +12298,16 @@ static const char kSTSHostTable[] = { /* "v0tti.com", false */ 'v', '0', 't', 't', 'i', '.', 'c', 'o', 'm', '\0', /* "v2.pw", true */ 'v', '2', '.', 'p', 'w', '\0', /* "v2ex.com", true */ 'v', '2', 'e', 'x', '.', 'c', 'o', 'm', '\0', /* "v4veedu.com", true */ 'v', '4', 'v', 'e', 'e', 'd', 'u', '.', 'c', 'o', 'm', '\0', /* "va-reitartikel.com", true */ 'v', 'a', '-', 'r', 'e', 'i', 't', 'a', 'r', 't', 'i', 'k', 'e', 'l', '.', 'c', 'o', 'm', '\0', /* "vagrantup.com", true */ 'v', 'a', 'g', 'r', 'a', 'n', 't', 'u', 'p', '.', 'c', 'o', 'm', '\0', /* "vakuutuskanava.fi", true */ 'v', 'a', 'k', 'u', 'u', 't', 'u', 's', 'k', 'a', 'n', 'a', 'v', 'a', '.', 'f', 'i', '\0', /* "val-sec.com", true */ 'v', 'a', 'l', '-', 's', 'e', 'c', '.', 'c', 'o', 'm', '\0', - /* "valasi.eu", true */ 'v', 'a', 'l', 'a', 's', 'i', '.', 'e', 'u', '\0', /* "valbonne-consulting.com", true */ 'v', 'a', 'l', 'b', 'o', 'n', 'n', 'e', '-', 'c', 'o', 'n', 's', 'u', 'l', 't', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "valentin-sundermann.de", true */ 'v', 'a', 'l', 'e', 'n', 't', 'i', 'n', '-', 's', 'u', 'n', 'd', 'e', 'r', 'm', 'a', 'n', 'n', '.', 'd', 'e', '\0', /* "validator.nu", true */ 'v', 'a', 'l', 'i', 'd', 'a', 't', 'o', 'r', '.', 'n', 'u', '\0', /* "validbrands.com", true */ 'v', 'a', 'l', 'i', 'd', 'b', 'r', 'a', 'n', 'd', 's', '.', 'c', 'o', 'm', '\0', /* "valitron.se", true */ 'v', 'a', 'l', 'i', 't', 'r', 'o', 'n', '.', 's', 'e', '\0', /* "valkohattu.fi", true */ 'v', 'a', 'l', 'k', 'o', 'h', 'a', 't', 't', 'u', '.', 'f', 'i', '\0', /* "valmagus.com", false */ 'v', 'a', 'l', 'm', 'a', 'g', 'u', 's', '.', 'c', 'o', 'm', '\0', /* "valokuva-albumi.fi", true */ 'v', 'a', 'l', 'o', 'k', 'u', 'v', 'a', '-', 'a', 'l', 'b', 'u', 'm', 'i', '.', 'f', 'i', '\0', @@ -12364,34 +12322,32 @@ static const char kSTSHostTable[] = { /* "vandalfsen.me", true */ 'v', 'a', 'n', 'd', 'a', 'l', 'f', 's', 'e', 'n', '.', 'm', 'e', '\0', /* "vande-walle.eu", true */ 'v', 'a', 'n', 'd', 'e', '-', 'w', 'a', 'l', 'l', 'e', '.', 'e', 'u', '\0', /* "vanderziel.org", true */ 'v', 'a', 'n', 'd', 'e', 'r', 'z', 'i', 'e', 'l', '.', 'o', 'r', 'g', '\0', /* "vanestack.com", true */ 'v', 'a', 'n', 'e', 's', 't', 'a', 'c', 'k', '.', 'c', 'o', 'm', '\0', /* "vangeluwedeberlaere.be", true */ 'v', 'a', 'n', 'g', 'e', 'l', 'u', 'w', 'e', 'd', 'e', 'b', 'e', 'r', 'l', 'a', 'e', 'r', 'e', '.', 'b', 'e', '\0', /* "vanhoutte.be", false */ 'v', 'a', 'n', 'h', 'o', 'u', 't', 't', 'e', '.', 'b', 'e', '\0', /* "vanlaanen.com", false */ 'v', 'a', 'n', 'l', 'a', 'a', 'n', 'e', 'n', '.', 'c', 'o', 'm', '\0', /* "vanmalland.com", true */ 'v', 'a', 'n', 'm', 'a', 'l', 'l', 'a', 'n', 'd', '.', 'c', 'o', 'm', '\0', - /* "vantien.com", true */ 'v', 'a', 'n', 't', 'i', 'e', 'n', '.', 'c', 'o', 'm', '\0', /* "vantru.is", true */ 'v', 'a', 'n', 't', 'r', 'u', '.', 'i', 's', '\0', /* "vanwunnik.com", true */ 'v', 'a', 'n', 'w', 'u', 'n', 'n', 'i', 'k', '.', 'c', 'o', 'm', '\0', /* "vapemania.eu", true */ 'v', 'a', 'p', 'e', 'm', 'a', 'n', 'i', 'a', '.', 'e', 'u', '\0', /* "vapordepot.jp", false */ 'v', 'a', 'p', 'o', 'r', 'd', 'e', 'p', 'o', 't', '.', 'j', 'p', '\0', /* "varden.info", true */ 'v', 'a', 'r', 'd', 'e', 'n', '.', 'i', 'n', 'f', 'o', '\0', /* "varghese.de", true */ 'v', 'a', 'r', 'g', 'h', 'e', 's', 'e', '.', 'd', 'e', '\0', /* "variag-group.ru", true */ 'v', 'a', 'r', 'i', 'a', 'g', '-', 'g', 'r', 'o', 'u', 'p', '.', 'r', 'u', '\0', /* "varicoseveinssolution.com", true */ 'v', 'a', 'r', 'i', 'c', 'o', 's', 'e', 'v', 'e', 'i', 'n', 's', 's', 'o', 'l', 'u', 't', 'i', 'o', 'n', '.', 'c', 'o', 'm', '\0', /* "varshathacker.com", true */ 'v', 'a', 'r', 's', 'h', 'a', 't', 'h', 'a', 'c', 'k', 'e', 'r', '.', 'c', 'o', 'm', '\0', /* "varunagw.com", false */ 'v', 'a', 'r', 'u', 'n', 'a', 'g', 'w', '.', 'c', 'o', 'm', '\0', /* "varvy.com", true */ 'v', 'a', 'r', 'v', 'y', '.', 'c', 'o', 'm', '\0', /* "vashel.us", true */ 'v', 'a', 's', 'h', 'e', 'l', '.', 'u', 's', '\0', /* "vat-eu.com", true */ 'v', 'a', 't', '-', 'e', 'u', '.', 'c', 'o', 'm', '\0', /* "vattulainen.fi", true */ 'v', 'a', 't', 't', 'u', 'l', 'a', 'i', 'n', 'e', 'n', '.', 'f', 'i', '\0', /* "vault21.net", true */ 'v', 'a', 'u', 'l', 't', '2', '1', '.', 'n', 'e', 't', '\0', /* "vaultproject.io", true */ 'v', 'a', 'u', 'l', 't', 'p', 'r', 'o', 'j', 'e', 'c', 't', '.', 'i', 'o', '\0', - /* "vaur.fr", true */ 'v', 'a', 'u', 'r', '.', 'f', 'r', '\0', /* "vavai.net", true */ 'v', 'a', 'v', 'a', 'i', '.', 'n', 'e', 't', '\0', /* "vazue.com", true */ 'v', 'a', 'z', 'u', 'e', '.', 'c', 'o', 'm', '\0', /* "vbest.net", true */ 'v', 'b', 'e', 's', 't', '.', 'n', 'e', 't', '\0', /* "vbhelp.org", true */ 'v', 'b', 'h', 'e', 'l', 'p', '.', 'o', 'r', 'g', '\0', /* "vcdove.com", true */ 'v', 'c', 'd', 'o', 'v', 'e', '.', 'c', 'o', 'm', '\0', /* "vcelin-na-doliku.cz", true */ 'v', 'c', 'e', 'l', 'i', 'n', '-', 'n', 'a', '-', 'd', 'o', 'l', 'i', 'k', 'u', '.', 'c', 'z', '\0', /* "vcientertainment.com", false */ 'v', 'c', 'i', 'e', 'n', 't', 'e', 'r', 't', 'a', 'i', 'n', 'm', 'e', 'n', 't', '.', 'c', 'o', 'm', '\0', /* "vcsjones.com", true */ 'v', 'c', 's', 'j', 'o', 'n', 'e', 's', '.', 'c', 'o', 'm', '\0', @@ -12405,16 +12361,17 @@ static const char kSTSHostTable[] = { /* "vecozo.nl", true */ 'v', 'e', 'c', 'o', 'z', 'o', '.', 'n', 'l', '\0', /* "vegalitarian.org", true */ 'v', 'e', 'g', 'a', 'l', 'i', 't', 'a', 'r', 'i', 'a', 'n', '.', 'o', 'r', 'g', '\0', /* "veggiesbourg.fr", true */ 'v', 'e', 'g', 'g', 'i', 'e', 's', 'b', 'o', 'u', 'r', 'g', '.', 'f', 'r', '\0', /* "vehent.org", true */ 'v', 'e', 'h', 'e', 'n', 't', '.', 'o', 'r', 'g', '\0', /* "vehicleenquiry.service.gov.uk", true */ 'v', 'e', 'h', 'i', 'c', 'l', 'e', 'e', 'n', 'q', 'u', 'i', 'r', 'y', '.', 's', 'e', 'r', 'v', 'i', 'c', 'e', '.', 'g', 'o', 'v', '.', 'u', 'k', '\0', /* "vehicletax.service.gov.uk", true */ 'v', 'e', 'h', 'i', 'c', 'l', 'e', 't', 'a', 'x', '.', 's', 'e', 'r', 'v', 'i', 'c', 'e', '.', 'g', 'o', 'v', '.', 'u', 'k', '\0', /* "veii.de", true */ 'v', 'e', 'i', 'i', '.', 'd', 'e', '\0', /* "veil-framework.com", true */ 'v', 'e', 'i', 'l', '-', 'f', 'r', 'a', 'm', 'e', 'w', 'o', 'r', 'k', '.', 'c', 'o', 'm', '\0', + /* "velasense.com", true */ 'v', 'e', 'l', 'a', 's', 'e', 'n', 's', 'e', '.', 'c', 'o', 'm', '\0', /* "venicerealdeal.com", true */ 'v', 'e', 'n', 'i', 'c', 'e', 'r', 'e', 'a', 'l', 'd', 'e', 'a', 'l', '.', 'c', 'o', 'm', '\0', /* "venixplays-stream.ml", true */ 'v', 'e', 'n', 'i', 'x', 'p', 'l', 'a', 'y', 's', '-', 's', 't', 'r', 'e', 'a', 'm', '.', 'm', 'l', '\0', /* "vennet.fr", true */ 'v', 'e', 'n', 'n', 'e', 't', '.', 'f', 'r', '\0', /* "venturepro.com", true */ 'v', 'e', 'n', 't', 'u', 'r', 'e', 'p', 'r', 'o', '.', 'c', 'o', 'm', '\0', /* "veramagazine.jp", true */ 'v', 'e', 'r', 'a', 'm', 'a', 'g', 'a', 'z', 'i', 'n', 'e', '.', 'j', 'p', '\0', /* "verdeandco.co.uk", true */ 'v', 'e', 'r', 'd', 'e', 'a', 'n', 'd', 'c', 'o', '.', 'c', 'o', '.', 'u', 'k', '\0', /* "verdict.gg", true */ 'v', 'e', 'r', 'd', 'i', 'c', 't', '.', 'g', 'g', '\0', /* "verein-kiekin.de", true */ 'v', 'e', 'r', 'e', 'i', 'n', '-', 'k', 'i', 'e', 'k', 'i', 'n', '.', 'd', 'e', '\0', @@ -12483,17 +12440,16 @@ static const char kSTSHostTable[] = { /* "vincentkooijman.nl", true */ 'v', 'i', 'n', 'c', 'e', 'n', 't', 'k', 'o', 'o', 'i', 'j', 'm', 'a', 'n', '.', 'n', 'l', '\0', /* "vincentpancol.com", true */ 'v', 'i', 'n', 'c', 'e', 'n', 't', 'p', 'a', 'n', 'c', 'o', 'l', '.', 'c', 'o', 'm', '\0', /* "vinciconps4.it", true */ 'v', 'i', 'n', 'c', 'i', 'c', 'o', 'n', 'p', 's', '4', '.', 'i', 't', '\0', /* "vincitraining.com", true */ 'v', 'i', 'n', 'c', 'i', 't', 'r', 'a', 'i', 'n', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "vinilosdecorativos.net", true */ 'v', 'i', 'n', 'i', 'l', 'o', 's', 'd', 'e', 'c', 'o', 'r', 'a', 't', 'i', 'v', 'o', 's', '.', 'n', 'e', 't', '\0', /* "vinner.com.au", true */ 'v', 'i', 'n', 'n', 'e', 'r', '.', 'c', 'o', 'm', '.', 'a', 'u', '\0', /* "vinyculture.com", true */ 'v', 'i', 'n', 'y', 'c', 'u', 'l', 't', 'u', 'r', 'e', '.', 'c', 'o', 'm', '\0', /* "viphospitality.se", true */ 'v', 'i', 'p', 'h', 'o', 's', 'p', 'i', 't', 'a', 'l', 'i', 't', 'y', '.', 's', 'e', '\0', - /* "vipmusic.ga", false */ 'v', 'i', 'p', 'm', 'u', 's', 'i', 'c', '.', 'g', 'a', '\0', /* "vipnettikasinoklubi.com", true */ 'v', 'i', 'p', 'n', 'e', 't', 't', 'i', 'k', 'a', 's', 'i', 'n', 'o', 'k', 'l', 'u', 'b', 'i', '.', 'c', 'o', 'm', '\0', /* "virginiacrimeanalysisnetwork.org", true */ 'v', 'i', 'r', 'g', 'i', 'n', 'i', 'a', 'c', 'r', 'i', 'm', 'e', 'a', 'n', 'a', 'l', 'y', 's', 'i', 's', 'n', 'e', 't', 'w', 'o', 'r', 'k', '.', 'o', 'r', 'g', '\0', /* "virtualdesignmedia.com", false */ 'v', 'i', 'r', 't', 'u', 'a', 'l', 'd', 'e', 's', 'i', 'g', 'n', 'm', 'e', 'd', 'i', 'a', '.', 'c', 'o', 'm', '\0', /* "virtuallifestyle.nl", true */ 'v', 'i', 'r', 't', 'u', 'a', 'l', 'l', 'i', 'f', 'e', 's', 't', 'y', 'l', 'e', '.', 'n', 'l', '\0', /* "virtualperez.com", true */ 'v', 'i', 'r', 't', 'u', 'a', 'l', 'p', 'e', 'r', 'e', 'z', '.', 'c', 'o', 'm', '\0', /* "virtualsanity.com", true */ 'v', 'i', 'r', 't', 'u', 'a', 'l', 's', 'a', 'n', 'i', 't', 'y', '.', 'c', 'o', 'm', '\0', /* "visalogy.com", true */ 'v', 'i', 's', 'a', 'l', 'o', 'g', 'y', '.', 'c', 'o', 'm', '\0', /* "viscopic.com", true */ 'v', 'i', 's', 'c', 'o', 'p', 'i', 'c', '.', 'c', 'o', 'm', '\0', @@ -12526,17 +12482,16 @@ static const char kSTSHostTable[] = { /* "vizzboard.com", true */ 'v', 'i', 'z', 'z', 'b', 'o', 'a', 'r', 'd', '.', 'c', 'o', 'm', '\0', /* "vjirovsky.cz", false */ 'v', 'j', 'i', 'r', 'o', 'v', 's', 'k', 'y', '.', 'c', 'z', '\0', /* "vkox.com", true */ 'v', 'k', 'o', 'x', '.', 'c', 'o', 'm', '\0', /* "vleij.com", true */ 'v', 'l', 'e', 'i', 'j', '.', 'c', 'o', 'm', '\0', /* "vleij.family", true */ 'v', 'l', 'e', 'i', 'j', '.', 'f', 'a', 'm', 'i', 'l', 'y', '\0', /* "vleij.se", true */ 'v', 'l', 'e', 'i', 'j', '.', 's', 'e', '\0', /* "vloeck.de", true */ 'v', 'l', 'o', 'e', 'c', 'k', '.', 'd', 'e', '\0', /* "vlogge.com", true */ 'v', 'l', 'o', 'g', 'g', 'e', '.', 'c', 'o', 'm', '\0', - /* "vlora.city", true */ 'v', 'l', 'o', 'r', 'a', '.', 'c', 'i', 't', 'y', '\0', /* "vmc.co.id", true */ 'v', 'm', 'c', '.', 'c', 'o', '.', 'i', 'd', '\0', /* "vmem.jp", true */ 'v', 'm', 'e', 'm', '.', 'j', 'p', '\0', /* "vmoagents.com", false */ 'v', 'm', 'o', 'a', 'g', 'e', 'n', 't', 's', '.', 'c', 'o', 'm', '\0', /* "vn.search.yahoo.com", false */ 'v', 'n', '.', 's', 'e', 'a', 'r', 'c', 'h', '.', 'y', 'a', 'h', 'o', 'o', '.', 'c', 'o', 'm', '\0', /* "vnd.cloud", true */ 'v', 'n', 'd', '.', 'c', 'l', 'o', 'u', 'd', '\0', /* "vnvisa.center", true */ 'v', 'n', 'v', 'i', 's', 'a', '.', 'c', 'e', 'n', 't', 'e', 'r', '\0', /* "vnvisa.ru", true */ 'v', 'n', 'v', 'i', 's', 'a', '.', 'r', 'u', '\0', /* "vocab.guru", true */ 'v', 'o', 'c', 'a', 'b', '.', 'g', 'u', 'r', 'u', '\0', @@ -12557,17 +12512,16 @@ static const char kSTSHostTable[] = { /* "vorlif.org", true */ 'v', 'o', 'r', 'l', 'i', 'f', '.', 'o', 'r', 'g', '\0', /* "vorodevops.com", true */ 'v', 'o', 'r', 'o', 'd', 'e', 'v', 'o', 'p', 's', '.', 'c', 'o', 'm', '\0', /* "voshod.org", true */ 'v', 'o', 's', 'h', 'o', 'd', '.', 'o', 'r', 'g', '\0', /* "vosjesweb.nl", true */ 'v', 'o', 's', 'j', 'e', 's', 'w', 'e', 'b', '.', 'n', 'l', '\0', /* "vostronet.com", true */ 'v', 'o', 's', 't', 'r', 'o', 'n', 'e', 't', '.', 'c', 'o', 'm', '\0', /* "voter-info.uk", true */ 'v', 'o', 't', 'e', 'r', '-', 'i', 'n', 'f', 'o', '.', 'u', 'k', '\0', /* "votoot.com", true */ 'v', 'o', 't', 'o', 'o', 't', '.', 'c', 'o', 'm', '\0', /* "voxographe.com", true */ 'v', 'o', 'x', 'o', 'g', 'r', 'a', 'p', 'h', 'e', '.', 'c', 'o', 'm', '\0', - /* "vozp.cz", false */ 'v', 'o', 'z', 'p', '.', 'c', 'z', '\0', /* "vpip.net", true */ 'v', 'p', 'i', 'p', '.', 'n', 'e', 't', '\0', /* "vpn.black", true */ 'v', 'p', 'n', '.', 'b', 'l', 'a', 'c', 'k', '\0', /* "vpn.ht", true */ 'v', 'p', 'n', '.', 'h', 't', '\0', /* "vpnhot.com", true */ 'v', 'p', 'n', 'h', 'o', 't', '.', 'c', 'o', 'm', '\0', /* "vpnzoom.com", true */ 'v', 'p', 'n', 'z', 'o', 'o', 'm', '.', 'c', 'o', 'm', '\0', /* "vps-szerver-berles.hu", true */ 'v', 'p', 's', '-', 's', 'z', 'e', 'r', 'v', 'e', 'r', '-', 'b', 'e', 'r', 'l', 'e', 's', '.', 'h', 'u', '\0', /* "vrijgezellen-feest.com", true */ 'v', 'r', 'i', 'j', 'g', 'e', 'z', 'e', 'l', 'l', 'e', 'n', '-', 'f', 'e', 'e', 's', 't', '.', 'c', 'o', 'm', '\0', /* "vrobert.fr", false */ 'v', 'r', 'o', 'b', 'e', 'r', 't', '.', 'f', 'r', '\0', @@ -12586,26 +12540,26 @@ static const char kSTSHostTable[] = { /* "vyberodhadce.cz", true */ 'v', 'y', 'b', 'e', 'r', 'o', 'd', 'h', 'a', 'd', 'c', 'e', '.', 'c', 'z', '\0', /* "vyplnto.cz", true */ 'v', 'y', 'p', 'l', 'n', 't', 'o', '.', 'c', 'z', '\0', /* "vztekloun.cz", true */ 'v', 'z', 't', 'e', 'k', 'l', 'o', 'u', 'n', '.', 'c', 'z', '\0', /* "w-spotlight.appspot.com", true */ 'w', '-', 's', 'p', 'o', 't', 'l', 'i', 'g', 'h', 't', '.', 'a', 'p', 'p', 's', 'p', 'o', 't', '.', 'c', 'o', 'm', '\0', /* "w.wiki", true */ 'w', '.', 'w', 'i', 'k', 'i', '\0', /* "w4nvu.org", true */ 'w', '4', 'n', 'v', 'u', '.', 'o', 'r', 'g', '\0', /* "w7k.de", true */ 'w', '7', 'k', '.', 'd', 'e', '\0', /* "wa-stromerzeuger.de", true */ 'w', 'a', '-', 's', 't', 'r', 'o', 'm', 'e', 'r', 'z', 'e', 'u', 'g', 'e', 'r', '.', 'd', 'e', '\0', + /* "wachter.biz", true */ 'w', 'a', 'c', 'h', 't', 'e', 'r', '.', 'b', 'i', 'z', '\0', /* "wachtwoordencheck.nl", true */ 'w', 'a', 'c', 'h', 't', 'w', 'o', 'o', 'r', 'd', 'e', 'n', 'c', 'h', 'e', 'c', 'k', '.', 'n', 'l', '\0', /* "waelti.xxx", true */ 'w', 'a', 'e', 'l', 't', 'i', '.', 'x', 'x', 'x', '\0', /* "wafa4hw.com", true */ 'w', 'a', 'f', 'a', '4', 'h', 'w', '.', 'c', 'o', 'm', '\0', /* "waffle.at", true */ 'w', 'a', 'f', 'f', 'l', 'e', '.', 'a', 't', '\0', /* "wail.net", true */ 'w', 'a', 'i', 'l', '.', 'n', 'e', 't', '\0', /* "wait.moe", true */ 'w', 'a', 'i', 't', '.', 'm', 'o', 'e', '\0', /* "waits.io", true */ 'w', 'a', 'i', 't', 's', '.', 'i', 'o', '\0', /* "waixingrenfuli.vip", true */ 'w', 'a', 'i', 'x', 'i', 'n', 'g', 'r', 'e', 'n', 'f', 'u', 'l', 'i', '.', 'v', 'i', 'p', '\0', /* "waixingrenfuli7.vip", true */ 'w', 'a', 'i', 'x', 'i', 'n', 'g', 'r', 'e', 'n', 'f', 'u', 'l', 'i', '7', '.', 'v', 'i', 'p', '\0', - /* "waka-mono.com", true */ 'w', 'a', 'k', 'a', '-', 'm', 'o', 'n', 'o', '.', 'c', 'o', 'm', '\0', /* "wakamiyasumiyosi.com", true */ 'w', 'a', 'k', 'a', 'm', 'i', 'y', 'a', 's', 'u', 'm', 'i', 'y', 'o', 's', 'i', '.', 'c', 'o', 'm', '\0', /* "wakatime.com", true */ 'w', 'a', 'k', 'a', 't', 'i', 'm', 'e', '.', 'c', 'o', 'm', '\0', /* "wakened.net", true */ 'w', 'a', 'k', 'e', 'n', 'e', 'd', '.', 'n', 'e', 't', '\0', /* "walkingforhealth.org.uk", true */ 'w', 'a', 'l', 'k', 'i', 'n', 'g', 'f', 'o', 'r', 'h', 'e', 'a', 'l', 't', 'h', '.', 'o', 'r', 'g', '.', 'u', 'k', '\0', /* "wallet.google.com", true */ 'w', 'a', 'l', 'l', 'e', 't', '.', 'g', 'o', 'o', 'g', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "wallethub.com", false */ 'w', 'a', 'l', 'l', 'e', 't', 'h', 'u', 'b', '.', 'c', 'o', 'm', '\0', /* "wallingford.cc", true */ 'w', 'a', 'l', 'l', 'i', 'n', 'g', 'f', 'o', 'r', 'd', '.', 'c', 'c', '\0', /* "wallpapers.pub", true */ 'w', 'a', 'l', 'l', 'p', 'a', 'p', 'e', 'r', 's', '.', 'p', 'u', 'b', '\0', @@ -12627,17 +12581,16 @@ static const char kSTSHostTable[] = { /* "warmservers.com", true */ 'w', 'a', 'r', 'm', 's', 'e', 'r', 'v', 'e', 'r', 's', '.', 'c', 'o', 'm', '\0', /* "warr.ath.cx", true */ 'w', 'a', 'r', 'r', '.', 'a', 't', 'h', '.', 'c', 'x', '\0', /* "warrencreative.com", false */ 'w', 'a', 'r', 'r', 'e', 'n', 'c', 'r', 'e', 'a', 't', 'i', 'v', 'e', '.', 'c', 'o', 'm', '\0', /* "warsentech.com", true */ 'w', 'a', 'r', 's', 'e', 'n', 't', 'e', 'c', 'h', '.', 'c', 'o', 'm', '\0', /* "warsh.moe", true */ 'w', 'a', 'r', 's', 'h', '.', 'm', 'o', 'e', '\0', /* "wartorngalaxy.com", true */ 'w', 'a', 'r', 't', 'o', 'r', 'n', 'g', 'a', 'l', 'a', 'x', 'y', '.', 'c', 'o', 'm', '\0', /* "wasema.com", true */ 'w', 'a', 's', 'e', 'm', 'a', '.', 'c', 'o', 'm', '\0', /* "washingtonviews.com", true */ 'w', 'a', 's', 'h', 'i', 'n', 'g', 't', 'o', 'n', 'v', 'i', 'e', 'w', 's', '.', 'c', 'o', 'm', '\0', - /* "wasserspucker.de", true */ 'w', 'a', 's', 's', 'e', 'r', 's', 'p', 'u', 'c', 'k', 'e', 'r', '.', 'd', 'e', '\0', /* "watchface.watch", true */ 'w', 'a', 't', 'c', 'h', 'f', 'a', 'c', 'e', '.', 'w', 'a', 't', 'c', 'h', '\0', /* "watchinventory.com", true */ 'w', 'a', 't', 'c', 'h', 'i', 'n', 'v', 'e', 'n', 't', 'o', 'r', 'y', '.', 'c', 'o', 'm', '\0', /* "watchstyle.com", true */ 'w', 'a', 't', 'c', 'h', 's', 't', 'y', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "waterfedpole.com", true */ 'w', 'a', 't', 'e', 'r', 'f', 'e', 'd', 'p', 'o', 'l', 'e', '.', 'c', 'o', 'm', '\0', /* "waterforlife.net.au", true */ 'w', 'a', 't', 'e', 'r', 'f', 'o', 'r', 'l', 'i', 'f', 'e', '.', 'n', 'e', 't', '.', 'a', 'u', '\0', /* "watersb.org", true */ 'w', 'a', 't', 'e', 'r', 's', 'b', '.', 'o', 'r', 'g', '\0', /* "watertrails.io", true */ 'w', 'a', 't', 'e', 'r', 't', 'r', 'a', 'i', 'l', 's', '.', 'i', 'o', '\0', /* "wavefrontsystemstech.com", true */ 'w', 'a', 'v', 'e', 'f', 'r', 'o', 'n', 't', 's', 'y', 's', 't', 'e', 'm', 's', 't', 'e', 'c', 'h', '.', 'c', 'o', 'm', '\0', @@ -12753,17 +12706,16 @@ static const char kSTSHostTable[] = { /* "wellacapability.com", true */ 'w', 'e', 'l', 'l', 'a', 'c', 'a', 'p', 'a', 'b', 'i', 'l', 'i', 't', 'y', '.', 'c', 'o', 'm', '\0', /* "wellastore.ru", true */ 'w', 'e', 'l', 'l', 'a', 's', 't', 'o', 'r', 'e', '.', 'r', 'u', '\0', /* "welldrake.com", true */ 'w', 'e', 'l', 'l', 'd', 'r', 'a', 'k', 'e', '.', 'c', 'o', 'm', '\0', /* "wellensteyn.ru", true */ 'w', 'e', 'l', 'l', 'e', 'n', 's', 't', 'e', 'y', 'n', '.', 'r', 'u', '\0', /* "wellproducedwines.com", true */ 'w', 'e', 'l', 'l', 'p', 'r', 'o', 'd', 'u', 'c', 'e', 'd', 'w', 'i', 'n', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "wellsolveit.com", true */ 'w', 'e', 'l', 'l', 's', 'o', 'l', 'v', 'e', 'i', 't', '.', 'c', 'o', 'm', '\0', /* "wellspringcamps.com", true */ 'w', 'e', 'l', 'l', 's', 'p', 'r', 'i', 'n', 'g', 'c', 'a', 'm', 'p', 's', '.', 'c', 'o', 'm', '\0', /* "welovemail.com", true */ 'w', 'e', 'l', 'o', 'v', 'e', 'm', 'a', 'i', 'l', '.', 'c', 'o', 'm', '\0', - /* "welpy.com", true */ 'w', 'e', 'l', 'p', 'y', '.', 'c', 'o', 'm', '\0', /* "welteneroberer.de", true */ 'w', 'e', 'l', 't', 'e', 'n', 'e', 'r', 'o', 'b', 'e', 'r', 'e', 'r', '.', 'd', 'e', '\0', /* "weltengilde.de", true */ 'w', 'e', 'l', 't', 'e', 'n', 'g', 'i', 'l', 'd', 'e', '.', 'd', 'e', '\0', /* "weltenhueter.de", true */ 'w', 'e', 'l', 't', 'e', 'n', 'h', 'u', 'e', 't', 'e', 'r', '.', 'd', 'e', '\0', /* "wemakemenus.com", true */ 'w', 'e', 'm', 'a', 'k', 'e', 'm', 'e', 'n', 'u', 's', '.', 'c', 'o', 'm', '\0', /* "wenjs.me", true */ 'w', 'e', 'n', 'j', 's', '.', 'm', 'e', '\0', /* "wepay.com", false */ 'w', 'e', 'p', 'a', 'y', '.', 'c', 'o', 'm', '\0', /* "wepay.in.th", true */ 'w', 'e', 'p', 'a', 'y', '.', 'i', 'n', '.', 't', 'h', '\0', /* "wer-kommt-her.de", true */ 'w', 'e', 'r', '-', 'k', 'o', 'm', 'm', 't', '-', 'h', 'e', 'r', '.', 'd', 'e', '\0', @@ -12773,17 +12725,16 @@ static const char kSTSHostTable[] = { /* "werken-bij-inwork.nl", true */ 'w', 'e', 'r', 'k', 'e', 'n', '-', 'b', 'i', 'j', '-', 'i', 'n', 'w', 'o', 'r', 'k', '.', 'n', 'l', '\0', /* "werktor.net", true */ 'w', 'e', 'r', 'k', 't', 'o', 'r', '.', 'n', 'e', 't', '\0', /* "wernerschaeffer.de", true */ 'w', 'e', 'r', 'n', 'e', 'r', 's', 'c', 'h', 'a', 'e', 'f', 'f', 'e', 'r', '.', 'd', 'e', '\0', /* "wesecom.com", false */ 'w', 'e', 's', 'e', 'c', 'o', 'm', '.', 'c', 'o', 'm', '\0', /* "weserv.nl", true */ 'w', 'e', 's', 'e', 'r', 'v', '.', 'n', 'l', '\0', /* "wesleycabus.be", true */ 'w', 'e', 's', 'l', 'e', 'y', 'c', 'a', 'b', 'u', 's', '.', 'b', 'e', '\0', /* "wessner.org", true */ 'w', 'e', 's', 's', 'n', 'e', 'r', '.', 'o', 'r', 'g', '\0', /* "westcountrystalking.com", true */ 'w', 'e', 's', 't', 'c', 'o', 'u', 'n', 't', 'r', 'y', 's', 't', 'a', 'l', 'k', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', - /* "westendzone.com", true */ 'w', 'e', 's', 't', 'e', 'n', 'd', 'z', 'o', 'n', 'e', '.', 'c', 'o', 'm', '\0', /* "westeros.hu", true */ 'w', 'e', 's', 't', 'e', 'r', 'o', 's', '.', 'h', 'u', '\0', /* "westsuburbanbank.com", true */ 'w', 'e', 's', 't', 's', 'u', 'b', 'u', 'r', 'b', 'a', 'n', 'b', 'a', 'n', 'k', '.', 'c', 'o', 'm', '\0', /* "westsussexconnecttosupport.org", true */ 'w', 'e', 's', 't', 's', 'u', 's', 's', 'e', 'x', 'c', 'o', 'n', 'n', 'e', 'c', 't', 't', 'o', 's', 'u', 'p', 'p', 'o', 'r', 't', '.', 'o', 'r', 'g', '\0', /* "wetherbymethodist.org.uk", true */ 'w', 'e', 't', 'h', 'e', 'r', 'b', 'y', 'm', 'e', 't', 'h', 'o', 'd', 'i', 's', 't', '.', 'o', 'r', 'g', '.', 'u', 'k', '\0', /* "wetherbyweather.org.uk", true */ 'w', 'e', 't', 'h', 'e', 'r', 'b', 'y', 'w', 'e', 'a', 't', 'h', 'e', 'r', '.', 'o', 'r', 'g', '.', 'u', 'k', '\0', /* "wetofu.top", true */ 'w', 'e', 't', 'o', 'f', 'u', '.', 't', 'o', 'p', '\0', /* "wetoxic.com", true */ 'w', 'e', 't', 'o', 'x', 'i', 'c', '.', 'c', 'o', 'm', '\0', /* "wettbonus.info", true */ 'w', 'e', 't', 't', 'b', 'o', 'n', 'u', 's', '.', 'i', 'n', 'f', 'o', '\0', @@ -12849,17 +12800,16 @@ static const char kSTSHostTable[] = { /* "wifirst.net", true */ 'w', 'i', 'f', 'i', 'r', 's', 't', '.', 'n', 'e', 't', '\0', /* "wigle.net", true */ 'w', 'i', 'g', 'l', 'e', '.', 'n', 'e', 't', '\0', /* "wiimotion.de", true */ 'w', 'i', 'i', 'm', 'o', 't', 'i', 'o', 'n', '.', 'd', 'e', '\0', /* "wijnservices.nl", true */ 'w', 'i', 'j', 'n', 's', 'e', 'r', 'v', 'i', 'c', 'e', 's', '.', 'n', 'l', '\0', /* "wiki.python.org", true */ 'w', 'i', 'k', 'i', '.', 'p', 'y', 't', 'h', 'o', 'n', '.', 'o', 'r', 'g', '\0', /* "wikibooks.org", true */ 'w', 'i', 'k', 'i', 'b', 'o', 'o', 'k', 's', '.', 'o', 'r', 'g', '\0', /* "wikiclash.info", false */ 'w', 'i', 'k', 'i', 'c', 'l', 'a', 's', 'h', '.', 'i', 'n', 'f', 'o', '\0', /* "wikidata.org", true */ 'w', 'i', 'k', 'i', 'd', 'a', 't', 'a', '.', 'o', 'r', 'g', '\0', - /* "wikidsystems.com", false */ 'w', 'i', 'k', 'i', 'd', 's', 'y', 's', 't', 'e', 'm', 's', '.', 'c', 'o', 'm', '\0', /* "wikileaks.com", true */ 'w', 'i', 'k', 'i', 'l', 'e', 'a', 'k', 's', '.', 'c', 'o', 'm', '\0', /* "wikileaks.org", true */ 'w', 'i', 'k', 'i', 'l', 'e', 'a', 'k', 's', '.', 'o', 'r', 'g', '\0', /* "wikimedia.org", true */ 'w', 'i', 'k', 'i', 'm', 'e', 'd', 'i', 'a', '.', 'o', 'r', 'g', '\0', /* "wikimediafoundation.org", true */ 'w', 'i', 'k', 'i', 'm', 'e', 'd', 'i', 'a', 'f', 'o', 'u', 'n', 'd', 'a', 't', 'i', 'o', 'n', '.', 'o', 'r', 'g', '\0', /* "wikimilk.org", true */ 'w', 'i', 'k', 'i', 'm', 'i', 'l', 'k', '.', 'o', 'r', 'g', '\0', /* "wikinews.org", true */ 'w', 'i', 'k', 'i', 'n', 'e', 'w', 's', '.', 'o', 'r', 'g', '\0', /* "wikipedia.org", true */ 'w', 'i', 'k', 'i', 'p', 'e', 'd', 'i', 'a', '.', 'o', 'r', 'g', '\0', /* "wikiquote.org", true */ 'w', 'i', 'k', 'i', 'q', 'u', 'o', 't', 'e', '.', 'o', 'r', 'g', '\0', @@ -12999,16 +12949,17 @@ static const char kSTSHostTable[] = { /* "wpserp.com", true */ 'w', 'p', 's', 'e', 'r', 'p', '.', 'c', 'o', 'm', '\0', /* "wpvulndb.com", true */ 'w', 'p', 'v', 'u', 'l', 'n', 'd', 'b', '.', 'c', 'o', 'm', '\0', /* "wpzhiku.com", true */ 'w', 'p', 'z', 'h', 'i', 'k', 'u', '.', 'c', 'o', 'm', '\0', /* "wql.zj.cn", true */ 'w', 'q', 'l', '.', 'z', 'j', '.', 'c', 'n', '\0', /* "wrara.org", true */ 'w', 'r', 'a', 'r', 'a', '.', 'o', 'r', 'g', '\0', /* "wrgms.com", true */ 'w', 'r', 'g', 'm', 's', '.', 'c', 'o', 'm', '\0', /* "wrightdoumawedding.com", true */ 'w', 'r', 'i', 'g', 'h', 't', 'd', 'o', 'u', 'm', 'a', 'w', 'e', 'd', 'd', 'i', 'n', 'g', '.', 'c', 'o', 'm', '\0', /* "writeoff.me", true */ 'w', 'r', 'i', 't', 'e', 'o', 'f', 'f', '.', 'm', 'e', '\0', + /* "wrldevelopment.com", true */ 'w', 'r', 'l', 'd', 'e', 'v', 'e', 'l', 'o', 'p', 'm', 'e', 'n', 't', '.', 'c', 'o', 'm', '\0', /* "wrwg.ca", true */ 'w', 'r', 'w', 'g', '.', 'c', 'a', '\0', /* "wsa.poznan.pl", true */ 'w', 's', 'a', '.', 'p', 'o', 'z', 'n', 'a', 'n', '.', 'p', 'l', '\0', /* "wscales.com", true */ 'w', 's', 'c', 'a', 'l', 'e', 's', '.', 'c', 'o', 'm', '\0', /* "wsdezign.com", false */ 'w', 's', 'd', 'e', 'z', 'i', 'g', 'n', '.', 'c', 'o', 'm', '\0', /* "wselektro.de", true */ 'w', 's', 'e', 'l', 'e', 'k', 't', 'r', 'o', '.', 'd', 'e', '\0', /* "wsgvet.com", true */ 'w', 's', 'g', 'v', 'e', 't', '.', 'c', 'o', 'm', '\0', /* "wss.com.ve", true */ 'w', 's', 's', '.', 'c', 'o', 'm', '.', 'v', 'e', '\0', /* "wsv-grafenau.de", true */ 'w', 's', 'v', '-', 'g', 'r', 'a', 'f', 'e', 'n', 'a', 'u', '.', 'd', 'e', '\0', @@ -13086,17 +13037,16 @@ static const char kSTSHostTable[] = { /* "x-ripped-hd.com", true */ 'x', '-', 'r', 'i', 'p', 'p', 'e', 'd', '-', 'h', 'd', '.', 'c', 'o', 'm', '\0', /* "x.io", true */ 'x', '.', 'i', 'o', '\0', /* "x.st", true */ 'x', '.', 's', 't', '\0', /* "x3led.com", true */ 'x', '3', 'l', 'e', 'd', '.', 'c', 'o', 'm', '\0', /* "x509.io", true */ 'x', '5', '0', '9', '.', 'i', 'o', '\0', /* "x64architecture.com", true */ 'x', '6', '4', 'a', 'r', 'c', 'h', 'i', 't', 'e', 'c', 't', 'u', 'r', 'e', '.', 'c', 'o', 'm', '\0', /* "xa1.uk", true */ 'x', 'a', '1', '.', 'u', 'k', '\0', /* "xalqbank-online.az", true */ 'x', 'a', 'l', 'q', 'b', 'a', 'n', 'k', '-', 'o', 'n', 'l', 'i', 'n', 'e', '.', 'a', 'z', '\0', - /* "xatr0z.org", false */ 'x', 'a', 't', 'r', '0', 'z', '.', 'o', 'r', 'g', '\0', /* "xbb.hk", true */ 'x', 'b', 'b', '.', 'h', 'k', '\0', /* "xbb.li", true */ 'x', 'b', 'b', '.', 'l', 'i', '\0', /* "xbind.io", true */ 'x', 'b', 'i', 'n', 'd', '.', 'i', 'o', '\0', /* "xboxdownloadthat.com", true */ 'x', 'b', 'o', 'x', 'd', 'o', 'w', 'n', 'l', 'o', 'a', 'd', 't', 'h', 'a', 't', '.', 'c', 'o',