summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwolfbeast <mcwerewolf@gmail.com>2018-09-29 22:56:37 +0200
committerwolfbeast <mcwerewolf@gmail.com>2018-09-29 22:56:37 +0200
commit6d9103276b8914795731eb030fa888eb33910dbe (patch)
tree87f79960ec581b1540ee2f416908c58df54f3ef6
parent0b16007427aac4bb94643c6ea4cc79b81010765a (diff)
parentc7e12ca399b7d637333a588e028e005ef904c157 (diff)
downloadUXP-6d9103276b8914795731eb030fa888eb33910dbe.tar
UXP-6d9103276b8914795731eb030fa888eb33910dbe.tar.gz
UXP-6d9103276b8914795731eb030fa888eb33910dbe.tar.lz
UXP-6d9103276b8914795731eb030fa888eb33910dbe.tar.xz
UXP-6d9103276b8914795731eb030fa888eb33910dbe.zip
Merge branch 'master' of https://github.com/MoonchildProductions/UXP
-rw-r--r--dom/media/test/bug1377278.webm (renamed from dom/media/test/bug580982.webm)bin215594 -> 215594 bytes
-rw-r--r--dom/media/test/bug1377278.webm^headers^ (renamed from dom/media/test/bug580982.webm^headers^)0
-rw-r--r--dom/media/test/manifest.js4
-rw-r--r--dom/media/test/mochitest.ini4
-rw-r--r--media/libnestegg/README_MCP (renamed from media/libnestegg/README_MOZILLA)4
-rw-r--r--media/libnestegg/include/nestegg.h29
-rw-r--r--media/libnestegg/src/nestegg.c337
-rwxr-xr-xmedia/libnestegg/update.sh4
-rw-r--r--security/manager/ssl/nsSTSPreloadList.errors2207
-rw-r--r--security/manager/ssl/nsSTSPreloadList.inc2623
10 files changed, 3191 insertions, 2021 deletions
diff --git a/dom/media/test/bug580982.webm b/dom/media/test/bug1377278.webm
index 802019f39..802019f39 100644
--- a/dom/media/test/bug580982.webm
+++ b/dom/media/test/bug1377278.webm
Binary files differ
diff --git a/dom/media/test/bug580982.webm^headers^ b/dom/media/test/bug1377278.webm^headers^
index 4030ea1d3..4030ea1d3 100644
--- a/dom/media/test/bug580982.webm^headers^
+++ b/dom/media/test/bug1377278.webm^headers^
diff --git a/dom/media/test/manifest.js b/dom/media/test/manifest.js
index c6d533c1b..7e30cc97d 100644
--- a/dom/media/test/manifest.js
+++ b/dom/media/test/manifest.js
@@ -224,6 +224,9 @@ var gPlayTests = [
// Test playback of a webm file
{ name:"seek-short.webm", type:"video/webm", duration:0.23 },
+ // Test playback of a webm file with 'matroska' doctype
+ { name:"bug1377278.webm", type:"video/webm", duration:4.0 },
+
// Test playback of a WebM file with non-zero start time.
{ name:"split.webm", type:"video/webm", duration:1.967 },
@@ -532,7 +535,6 @@ var gErrorTests = [
{ name:"448636.ogv", type:"video/ogg" },
{ name:"bug504843.ogv", type:"video/ogg" },
{ name:"bug501279.ogg", type:"audio/ogg" },
- { name:"bug580982.webm", type:"video/webm" },
{ name:"bug603918.webm", type:"video/webm" },
{ name:"bug604067.webm", type:"video/webm" },
{ name:"bogus.duh", type:"bogus/duh" }
diff --git a/dom/media/test/mochitest.ini b/dom/media/test/mochitest.ini
index ddabf78b6..742ac1b1c 100644
--- a/dom/media/test/mochitest.ini
+++ b/dom/media/test/mochitest.ini
@@ -382,8 +382,6 @@ support-files =
bug556821.ogv^headers^
bug557094.ogv
bug557094.ogv^headers^
- bug580982.webm
- bug580982.webm^headers^
bug603918.webm
bug603918.webm^headers^
bug604067.webm
@@ -395,6 +393,8 @@ support-files =
bug1301226.wav^headers^
bug1301226-odd.wav
bug1301226-odd.wav^headers^
+ bug1377278.webm
+ bug1377278.webm^headers^
can_play_type_dash.js
can_play_type_ogg.js
can_play_type_wave.js
diff --git a/media/libnestegg/README_MOZILLA b/media/libnestegg/README_MCP
index ede23ea14..e738fd920 100644
--- a/media/libnestegg/README_MOZILLA
+++ b/media/libnestegg/README_MCP
@@ -3,6 +3,6 @@ git repository using the update.sh script. The only changes
made were those applied by update.sh and the addition of
Makefile.in build files for the Mozilla build system.
-The nestegg git repository is: git://github.com/kinetiknz/nestegg.git
+The nestegg git repository is: https://github.com/kinetiknz/nestegg
-The git commit ID used was 1eeeccee205f7aee0386898508c1a68427e0dcc2.
+The git commit ID used was f7a0b7cedc893b6683cf15cb210b1656c086d964.
diff --git a/media/libnestegg/include/nestegg.h b/media/libnestegg/include/nestegg.h
index d91483b93..2baa50bc5 100644
--- a/media/libnestegg/include/nestegg.h
+++ b/media/libnestegg/include/nestegg.h
@@ -27,7 +27,7 @@ extern "C" {
@code
nestegg * demux_ctx;
- nestegg_init(&demux_ctx, io, NULL);
+ nestegg_init(&demux_ctx, io, NULL, -1);
nestegg_packet * pkt;
while ((r = nestegg_read_packet(demux_ctx, &pkt)) > 0) {
@@ -71,6 +71,7 @@ extern "C" {
#define NESTEGG_CODEC_VORBIS 1 /**< Track uses Xiph Vorbis codec. */
#define NESTEGG_CODEC_VP9 2 /**< Track uses Google On2 VP9 codec. */
#define NESTEGG_CODEC_OPUS 3 /**< Track uses Xiph Opus codec. */
+#define NESTEGG_CODEC_AV1 4 /**< Track uses AOMedia AV1 codec. */
#define NESTEGG_CODEC_UNKNOWN INT_MAX /**< Track uses unknown codec. */
#define NESTEGG_VIDEO_MONO 0 /**< Track is mono video. */
@@ -92,9 +93,10 @@ extern "C" {
#define NESTEGG_ENCODING_COMPRESSION 0 /**< Content encoding type is compression. */
#define NESTEGG_ENCODING_ENCRYPTION 1 /**< Content encoding type is encryption. */
-#define NESTEGG_PACKET_HAS_SIGNAL_BYTE_FALSE 0 /**< Packet does not have signal byte */
-#define NESTEGG_PACKET_HAS_SIGNAL_BYTE_UNENCRYPTED 1 /**< Packet has signal byte and is unencrypted */
-#define NESTEGG_PACKET_HAS_SIGNAL_BYTE_ENCRYPTED 2 /**< Packet has signal byte and is encrypted */
+#define NESTEGG_PACKET_HAS_SIGNAL_BYTE_FALSE 0 /**< Packet does not have signal byte */
+#define NESTEGG_PACKET_HAS_SIGNAL_BYTE_UNENCRYPTED 1 /**< Packet has signal byte and is unencrypted */
+#define NESTEGG_PACKET_HAS_SIGNAL_BYTE_ENCRYPTED 2 /**< Packet has signal byte and is encrypted */
+#define NESTEGG_PACKET_HAS_SIGNAL_BYTE_PARTITIONED 4 /**< Packet has signal byte and is partitioned */
#define NESTEGG_PACKET_HAS_KEYFRAME_FALSE 0 /**< Packet contains only keyframes. */
#define NESTEGG_PACKET_HAS_KEYFRAME_TRUE 1 /**< Packet does not contain any keyframes */
@@ -185,7 +187,7 @@ void nestegg_destroy(nestegg * context);
int nestegg_duration(nestegg * context, uint64_t * duration);
/** Query the tstamp scale of the media stream in nanoseconds.
- @note Timecodes presented by nestegg have been scaled by this value
+ @note Timestamps presented by nestegg have been scaled by this value
before presentation to the caller.
@param context Stream context initialized by #nestegg_init.
@param scale Storage for the queried scale factor.
@@ -247,6 +249,7 @@ int nestegg_track_type(nestegg * context, unsigned int track);
@param track Zero based track number.
@retval #NESTEGG_CODEC_VP8 Track codec is VP8.
@retval #NESTEGG_CODEC_VP9 Track codec is VP9.
+ @retval #NESTEGG_CODEC_AV1 Track codec is AV1.
@retval #NESTEGG_CODEC_VORBIS Track codec is Vorbis.
@retval #NESTEGG_CODEC_OPUS Track codec is Opus.
@retval #NESTEGG_CODEC_UNKNOWN Track codec is unknown.
@@ -363,7 +366,7 @@ int nestegg_packet_has_keyframe(nestegg_packet * packet);
@retval -1 Error. */
int nestegg_packet_track(nestegg_packet * packet, unsigned int * track);
-/** Query the time stamp in nanoseconds of @a packet.
+/** Query the timestamp in nanoseconds of @a packet.
@param packet Packet initialized by #nestegg_read_packet.
@param tstamp Storage for the queried timestamp in nanoseconds.
@retval 0 Success.
@@ -424,6 +427,8 @@ int nestegg_packet_discard_padding(nestegg_packet * packet,
set, encryption information not read from packet.
@retval #NESTEGG_PACKET_HAS_SIGNAL_BYTE_ENCRYPTED Encrypted bit set,
encryption infomation read from packet.
+ @retval #NESTEGG_PACKET_HAS_SIGNAL_BYTE_PARTITIONED Partitioned bit set,
+ encryption and parition information read from packet.
@retval -1 Error.*/
int nestegg_packet_encryption(nestegg_packet * packet);
@@ -439,6 +444,18 @@ int nestegg_packet_encryption(nestegg_packet * packet);
int nestegg_packet_iv(nestegg_packet * packet, unsigned char const ** iv,
size_t * length);
+/** Query the packet for offsets.
+@param packet Packet initialized by #nestegg_read_packet.
+@param partition_offsets Storage for queried offsets.
+@param num_offsets Length of returned offsets, may be 0.
+The data is owned by the #nestegg_packet packet.
+@retval 0 Success.
+@retval -1 Error.
+*/
+int nestegg_packet_offsets(nestegg_packet * packet,
+ uint32_t const ** partition_offsets,
+ uint8_t * num_offsets);
+
/** Returns reference_block given packet
@param packet Packet initialized by #nestegg_read_packet.
@param reference_block pointer to store reference block in.
diff --git a/media/libnestegg/src/nestegg.c b/media/libnestegg/src/nestegg.c
index 1ca34c4f0..61c30ec6b 100644
--- a/media/libnestegg/src/nestegg.c
+++ b/media/libnestegg/src/nestegg.c
@@ -154,6 +154,7 @@ enum ebml_type_enum {
/* Track IDs */
#define TRACK_ID_VP8 "V_VP8"
#define TRACK_ID_VP9 "V_VP9"
+#define TRACK_ID_AV1 "V_AV1"
#define TRACK_ID_VORBIS "A_VORBIS"
#define TRACK_ID_OPUS "A_OPUS"
@@ -164,11 +165,16 @@ enum ebml_type_enum {
/* Packet Encryption */
#define SIGNAL_BYTE_SIZE 1
#define IV_SIZE 8
+#define NUM_PACKETS_SIZE 1
+#define PACKET_OFFSET_SIZE 4
/* Signal Byte */
#define PACKET_ENCRYPTED 1
#define ENCRYPTED_BIT_MASK (1 << 0)
+#define PACKET_PARTITIONED 2
+#define PARTITIONED_BIT_MASK (1 << 1)
+
enum vint_mask {
MASK_NONE,
MASK_FIRST_BIT
@@ -338,6 +344,8 @@ struct frame_encryption {
unsigned char * iv;
size_t length;
uint8_t signal_byte;
+ uint8_t num_partitions;
+ uint32_t * partition_offsets;
};
struct frame {
@@ -1039,14 +1047,14 @@ static int
ne_read_simple(nestegg * ctx, struct ebml_element_desc * desc, size_t length)
{
struct ebml_type * storage;
- int r;
+ int r = -1;
storage = (struct ebml_type *) (ctx->ancestor->data + desc->offset);
if (storage->read) {
- ctx->log(ctx, NESTEGG_LOG_DEBUG, "element %llx (%s) already read, skipping",
- desc->id, desc->name);
- return 0;
+ ctx->log(ctx, NESTEGG_LOG_DEBUG, "element %llx (%s) already read, skipping %u",
+ desc->id, desc->name, length);
+ return ne_io_read_skip(ctx->io, length);
}
storage->type = desc->type;
@@ -1070,7 +1078,6 @@ ne_read_simple(nestegg * ctx, struct ebml_element_desc * desc, size_t length)
case TYPE_MASTER:
case TYPE_UNKNOWN:
default:
- r = 0;
assert(0);
break;
}
@@ -1359,6 +1366,52 @@ ne_find_track_entry(nestegg * ctx, unsigned int track)
return NULL;
}
+static struct frame *
+ne_alloc_frame(void)
+{
+ struct frame * f = ne_alloc(sizeof(*f));
+
+ if (!f)
+ return NULL;
+
+ f->data = NULL;
+ f->length = 0;
+ f->frame_encryption = NULL;
+ f->next = NULL;
+
+ return f;
+}
+
+static struct frame_encryption *
+ne_alloc_frame_encryption(void)
+{
+ struct frame_encryption * f = ne_alloc(sizeof(*f));
+
+ if (!f)
+ return NULL;
+
+ f->iv = NULL;
+ f->length = 0;
+ f->signal_byte = 0;
+ f->num_partitions = 0;
+ f->partition_offsets = NULL;
+
+ return f;
+}
+
+static void
+ne_free_frame(struct frame * f)
+{
+ if (f->frame_encryption) {
+ free(f->frame_encryption->iv);
+ free(f->frame_encryption->partition_offsets);
+ }
+
+ free(f->frame_encryption);
+ free(f->data);
+ free(f);
+}
+
static int
ne_read_block(nestegg * ctx, uint64_t block_id, uint64_t block_size, nestegg_packet ** data)
{
@@ -1371,7 +1424,7 @@ ne_read_block(nestegg * ctx, uint64_t block_id, uint64_t block_size, nestegg_pac
uint64_t track_number, length, frame_sizes[256], cluster_tc, flags, frames, tc_scale, total,
encoding_type, encryption_algo, encryption_mode;
unsigned int i, lacing, track;
- uint8_t signal_byte, keyframe = NESTEGG_PACKET_HAS_KEYFRAME_UNKNOWN;
+ uint8_t signal_byte, keyframe = NESTEGG_PACKET_HAS_KEYFRAME_UNKNOWN, j = 0;
size_t consumed = 0, data_size, encryption_size;
*data = NULL;
@@ -1424,6 +1477,10 @@ ne_read_block(nestegg * ctx, uint64_t block_id, uint64_t block_size, nestegg_pac
return r;
consumed += 1;
frames += 1;
+ break;
+ default:
+ assert(0);
+ return -1;
}
if (frames > 256)
@@ -1453,6 +1510,9 @@ ne_read_block(nestegg * ctx, uint64_t block_id, uint64_t block_size, nestegg_pac
if (r != 1)
return r;
break;
+ default:
+ assert(0);
+ return -1;
}
/* Sanity check unlaced frame sizes against total block size. */
@@ -1490,8 +1550,11 @@ ne_read_block(nestegg * ctx, uint64_t block_id, uint64_t block_size, nestegg_pac
cluster_tc = ctx->cluster_timecode;
abs_timecode = timecode + cluster_tc;
- if (abs_timecode < 0)
- return -1;
+ if (abs_timecode < 0) {
+ /* Ignore the spec and negative timestamps */
+ ctx->log(ctx, NESTEGG_LOG_WARNING, "ignoring negative timecode: %lld", abs_timecode);
+ abs_timecode = 0;
+ }
pkt = ne_alloc(sizeof(*pkt));
if (!pkt)
@@ -1509,7 +1572,7 @@ ne_read_block(nestegg * ctx, uint64_t block_id, uint64_t block_size, nestegg_pac
nestegg_free_packet(pkt);
return -1;
}
- f = ne_alloc(sizeof(*f));
+ f = ne_alloc_frame();
if (!f) {
nestegg_free_packet(pkt);
return -1;
@@ -1518,13 +1581,13 @@ ne_read_block(nestegg * ctx, uint64_t block_id, uint64_t block_size, nestegg_pac
if (encoding_type == NESTEGG_ENCODING_ENCRYPTION) {
r = ne_io_read(ctx->io, &signal_byte, SIGNAL_BYTE_SIZE);
if (r != 1) {
- free(f);
+ ne_free_frame(f);
nestegg_free_packet(pkt);
return r;
}
- f->frame_encryption = ne_alloc(sizeof(*f->frame_encryption));
+ f->frame_encryption = ne_alloc_frame_encryption();
if (!f->frame_encryption) {
- free(f);
+ ne_free_frame(f);
nestegg_free_packet(pkt);
return -1;
}
@@ -1532,49 +1595,70 @@ ne_read_block(nestegg * ctx, uint64_t block_id, uint64_t block_size, nestegg_pac
if ((signal_byte & ENCRYPTED_BIT_MASK) == PACKET_ENCRYPTED) {
f->frame_encryption->iv = ne_alloc(IV_SIZE);
if (!f->frame_encryption->iv) {
- free(f->frame_encryption);
- free(f);
+ ne_free_frame(f);
nestegg_free_packet(pkt);
return -1;
}
r = ne_io_read(ctx->io, f->frame_encryption->iv, IV_SIZE);
if (r != 1) {
- free(f->frame_encryption->iv);
- free(f->frame_encryption);
- free(f);
+ ne_free_frame(f);
nestegg_free_packet(pkt);
return r;
}
f->frame_encryption->length = IV_SIZE;
encryption_size = SIGNAL_BYTE_SIZE + IV_SIZE;
+
+ if ((signal_byte & PARTITIONED_BIT_MASK) == PACKET_PARTITIONED) {
+ r = ne_io_read(ctx->io, &f->frame_encryption->num_partitions, NUM_PACKETS_SIZE);
+ if (r != 1) {
+ ne_free_frame(f);
+ nestegg_free_packet(pkt);
+ return r;
+ }
+
+ encryption_size += NUM_PACKETS_SIZE + f->frame_encryption->num_partitions * PACKET_OFFSET_SIZE;
+ f->frame_encryption->partition_offsets = ne_alloc(f->frame_encryption->num_partitions * PACKET_OFFSET_SIZE);
+
+ for (j = 0; j < f->frame_encryption->num_partitions; ++j) {
+ uint64_t value = 0;
+ r = ne_read_uint(ctx->io, &value, PACKET_OFFSET_SIZE);
+ if (r != 1) {
+ break;
+ }
+
+ f->frame_encryption->partition_offsets[j] = (uint32_t) value;
+ }
+
+ /* If any of the partition offsets did not return 1, then fail. */
+ if (j != f->frame_encryption->num_partitions) {
+ ne_free_frame(f);
+ nestegg_free_packet(pkt);
+ return r;
+ }
+ }
} else {
- f->frame_encryption->iv = NULL;
- f->frame_encryption->length = 0;
encryption_size = SIGNAL_BYTE_SIZE;
}
} else {
- f->frame_encryption = NULL;
encryption_size = 0;
}
+ if (encryption_size > frame_sizes[i]) {
+ ne_free_frame(f);
+ nestegg_free_packet(pkt);
+ return -1;
+ }
data_size = frame_sizes[i] - encryption_size;
/* Encryption parsed */
f->data = ne_alloc(data_size);
if (!f->data) {
- if (f->frame_encryption)
- free(f->frame_encryption->iv);
- free(f->frame_encryption);
- free(f);
+ ne_free_frame(f);
nestegg_free_packet(pkt);
return -1;
}
f->length = data_size;
r = ne_io_read(ctx->io, f->data, data_size);
if (r != 1) {
- if (f->frame_encryption)
- free(f->frame_encryption->iv);
- free(f->frame_encryption);
- free(f->data);
- free(f);
+ ne_free_frame(f);
nestegg_free_packet(pkt);
return r;
}
@@ -1610,6 +1694,7 @@ ne_read_block_additions(nestegg * ctx, uint64_t block_size, struct block_additio
add_id = 1;
data = NULL;
has_data = 0;
+ data_size = 0;
r = ne_read_element(ctx, &id, &size);
if (r != 1)
return r;
@@ -1864,8 +1949,8 @@ ne_init_cue_points(nestegg * ctx, int64_t max_offset)
}
/* Three functions that implement the nestegg_io interface, operating on a
- * sniff_buffer. */
-struct sniff_buffer {
+ io_buffer. */
+struct io_buffer {
unsigned char const * buffer;
size_t length;
int64_t offset;
@@ -1874,25 +1959,26 @@ struct sniff_buffer {
static int
ne_buffer_read(void * buffer, size_t length, void * userdata)
{
- struct sniff_buffer * sb = userdata;
+ struct io_buffer * iob = userdata;
+ size_t available = iob->length - iob->offset;
- int rv = 1;
- size_t available = sb->length - sb->offset;
+ if (available == 0)
+ return 0;
if (available < length)
- return 0;
+ return -1;
- memcpy(buffer, sb->buffer + sb->offset, length);
- sb->offset += length;
+ memcpy(buffer, iob->buffer + iob->offset, length);
+ iob->offset += length;
- return rv;
+ return 1;
}
static int
ne_buffer_seek(int64_t offset, int whence, void * userdata)
{
- struct sniff_buffer * sb = userdata;
- int64_t o = sb->offset;
+ struct io_buffer * iob = userdata;
+ int64_t o = iob->offset;
switch(whence) {
case NESTEGG_SEEK_SET:
@@ -1902,22 +1988,22 @@ ne_buffer_seek(int64_t offset, int whence, void * userdata)
o += offset;
break;
case NESTEGG_SEEK_END:
- o = sb->length + offset;
+ o = iob->length + offset;
break;
}
- if (o < 0 || o > (int64_t) sb->length)
+ if (o < 0 || o > (int64_t) iob->length)
return -1;
- sb->offset = o;
+ iob->offset = o;
return 0;
}
static int64_t
ne_buffer_tell(void * userdata)
{
- struct sniff_buffer * sb = userdata;
- return sb->offset;
+ struct io_buffer * iob = userdata;
+ return iob->offset;
}
static int
@@ -1994,6 +2080,17 @@ ne_match_webm(nestegg_io io, int64_t max_offset)
return 1;
}
+static void
+ne_free_block_additions(struct block_additional * block_additional)
+{
+ while (block_additional) {
+ struct block_additional * tmp = block_additional;
+ block_additional = block_additional->next;
+ free(tmp->data);
+ free(tmp);
+ }
+}
+
int
nestegg_init(nestegg ** context, nestegg_io io, nestegg_log callback, int64_t max_offset)
{
@@ -2039,7 +2136,7 @@ nestegg_init(nestegg ** context, nestegg_io io, nestegg_log callback, int64_t ma
if (ne_get_string(ctx->ebml.doctype, &doctype) != 0)
doctype = "matroska";
- if (strcmp(doctype, "webm") != 0) {
+ if (!!strcmp(doctype, "webm") && !!strcmp(doctype, "matroska")) {
nestegg_destroy(ctx);
return -1;
}
@@ -2098,7 +2195,7 @@ nestegg_duration(nestegg * ctx, uint64_t * duration)
return -1;
if (unscaled_duration != unscaled_duration ||
- unscaled_duration < 0 || unscaled_duration > (double) UINT64_MAX ||
+ unscaled_duration < 0 || unscaled_duration >= (double) UINT64_MAX ||
(uint64_t) unscaled_duration > UINT64_MAX / tc_scale)
return -1;
@@ -2295,6 +2392,9 @@ nestegg_track_codec_id(nestegg * ctx, unsigned int track)
if (strcmp(codec_id, TRACK_ID_VP9) == 0)
return NESTEGG_CODEC_VP9;
+ if (strcmp(codec_id, TRACK_ID_AV1) == 0)
+ return NESTEGG_CODEC_AV1;
+
if (strcmp(codec_id, TRACK_ID_VORBIS) == 0)
return NESTEGG_CODEC_VORBIS;
@@ -2350,61 +2450,67 @@ nestegg_track_codec_data(nestegg * ctx, unsigned int track, unsigned int item,
{
struct track_entry * entry;
struct ebml_binary codec_private;
- uint64_t sizes[3], size, total, avail;
- unsigned char * p;
- unsigned int count, i;
*data = NULL;
*length = 0;
- count = 1;
entry = ne_find_track_entry(ctx, track);
if (!entry)
return -1;
- if (nestegg_track_codec_id(ctx, track) != NESTEGG_CODEC_VORBIS
- && nestegg_track_codec_id(ctx, track) != NESTEGG_CODEC_OPUS)
+ if (nestegg_track_codec_id(ctx, track) != NESTEGG_CODEC_VORBIS &&
+ nestegg_track_codec_id(ctx, track) != NESTEGG_CODEC_OPUS)
return -1;
if (ne_get_binary(entry->codec_private, &codec_private) != 0)
return -1;
if (nestegg_track_codec_id(ctx, track) == NESTEGG_CODEC_VORBIS) {
- p = codec_private.data;
- avail = codec_private.length;
- if (avail < 1)
- return -1;
+ uint64_t count;
+ uint64_t sizes[3];
+ size_t total;
+ unsigned char * p;
+ unsigned int i;
+ int r;
+
+ nestegg_io io;
+ struct io_buffer userdata;
+ userdata.buffer = codec_private.data;
+ userdata.length = codec_private.length;
+ userdata.offset = 0;
+
+ io.read = ne_buffer_read;
+ io.seek = ne_buffer_seek;
+ io.tell = ne_buffer_tell;
+ io.userdata = &userdata;
+
+ total = 0;
- count = *p++ + 1;
- avail -= 1;
+ r = ne_read_uint(&io, &count, 1);
+ if (r != 1)
+ return r;
+ total += 1;
+ count += 1;
- if (count > 3 || item >= count)
+ if (count > 3)
return -1;
+ r = ne_read_xiph_lacing(&io, codec_private.length, &total, count, sizes);
+ if (r != 1)
+ return r;
- total = 0;
- for (i = 0; i < count - 1; ++i) {
- size = 0;
- do {
- if (avail - total <= size) {
- return -1;
- }
- size += *p;
- avail -= 1;
- } while (*p++ == 255);
- if (avail - total < size)
- return -1;
- sizes[i] = size;
- total += size;
- }
- sizes[i] = avail - total;
+ if (item >= count)
+ return -1;
+ p = codec_private.data + total;
for (i = 0; i < item; ++i) {
p += sizes[i];
}
+ assert((size_t) (p - codec_private.data) <= codec_private.length &&
+ codec_private.length - (p - codec_private.data) >= sizes[item]);
*data = p;
*length = sizes[item];
} else {
- if (item >= count)
+ if (item >= 1)
return -1;
*data = codec_private.data;
@@ -2700,7 +2806,7 @@ nestegg_read_packet(nestegg * ctx, nestegg_packet ** pkt)
while (ne_io_tell(ctx->io) < block_group_end) {
r = ne_read_element(ctx, &id, &size);
if (r != 1) {
- free(block_additional);
+ ne_free_block_additions(block_additional);
if (*pkt) {
nestegg_free_packet(*pkt);
*pkt = NULL;
@@ -2710,9 +2816,14 @@ nestegg_read_packet(nestegg * ctx, nestegg_packet ** pkt)
switch (id) {
case ID_BLOCK: {
+ if (*pkt) {
+ ctx->log(ctx, NESTEGG_LOG_DEBUG,
+ "read_packet: multiple Blocks in BlockGroup, dropping previously read Block");
+ nestegg_free_packet(*pkt);
+ }
r = ne_read_block(ctx, id, size, pkt);
if (r != 1) {
- free(block_additional);
+ ne_free_block_additions(block_additional);
if (*pkt) {
nestegg_free_packet(*pkt);
*pkt = NULL;
@@ -2726,7 +2837,7 @@ nestegg_read_packet(nestegg * ctx, nestegg_packet ** pkt)
case ID_BLOCK_DURATION: {
r = ne_read_uint(ctx->io, &block_duration, size);
if (r != 1) {
- free(block_additional);
+ ne_free_block_additions(block_additional);
if (*pkt) {
nestegg_free_packet(*pkt);
*pkt = NULL;
@@ -2735,7 +2846,7 @@ nestegg_read_packet(nestegg * ctx, nestegg_packet ** pkt)
}
tc_scale = ne_get_timecode_scale(ctx);
if (tc_scale == 0) {
- free(block_additional);
+ ne_free_block_additions(block_additional);
if (*pkt) {
nestegg_free_packet(*pkt);
*pkt = NULL;
@@ -2749,7 +2860,7 @@ nestegg_read_packet(nestegg * ctx, nestegg_packet ** pkt)
case ID_DISCARD_PADDING: {
r = ne_read_int(ctx->io, &discard_padding, size);
if (r != 1) {
- free(block_additional);
+ ne_free_block_additions(block_additional);
if (*pkt) {
nestegg_free_packet(*pkt);
*pkt = NULL;
@@ -2762,7 +2873,7 @@ nestegg_read_packet(nestegg * ctx, nestegg_packet ** pkt)
case ID_BLOCK_ADDITIONS: {
/* There should only be one BlockAdditions; treat multiple as an error. */
if (block_additional) {
- free(block_additional);
+ ne_free_block_additions(block_additional);
if (*pkt) {
nestegg_free_packet(*pkt);
*pkt = NULL;
@@ -2771,7 +2882,7 @@ nestegg_read_packet(nestegg * ctx, nestegg_packet ** pkt)
}
r = ne_read_block_additions(ctx, size, &block_additional);
if (r != 1) {
- free(block_additional);
+ ne_free_block_additions(block_additional);
if (*pkt) {
nestegg_free_packet(*pkt);
*pkt = NULL;
@@ -2783,7 +2894,7 @@ nestegg_read_packet(nestegg * ctx, nestegg_packet ** pkt)
case ID_REFERENCE_BLOCK: {
r = ne_read_int(ctx->io, &reference_block, size);
if (r != 1) {
- free(block_additional);
+ ne_free_block_additions(block_additional);
if (*pkt) {
nestegg_free_packet(*pkt);
*pkt = NULL;
@@ -2800,7 +2911,7 @@ nestegg_read_packet(nestegg * ctx, nestegg_packet ** pkt)
"read_packet: unknown element %llx in BlockGroup", id);
r = ne_io_read_skip(ctx->io, size);
if (r != 1) {
- free(block_additional);
+ ne_free_block_additions(block_additional);
if (*pkt) {
nestegg_free_packet(*pkt);
*pkt = NULL;
@@ -2824,7 +2935,7 @@ nestegg_read_packet(nestegg * ctx, nestegg_packet ** pkt)
predictive frames and no keyframes */
(*pkt)->keyframe = NESTEGG_PACKET_HAS_KEYFRAME_FALSE;
} else {
- free(block_additional);
+ ne_free_block_additions(block_additional);
}
break;
}
@@ -2843,26 +2954,16 @@ void
nestegg_free_packet(nestegg_packet * pkt)
{
struct frame * frame;
- struct block_additional * block_additional;
while (pkt->frame) {
frame = pkt->frame;
pkt->frame = frame->next;
- if (frame->frame_encryption) {
- free(frame->frame_encryption->iv);
- }
- free(frame->frame_encryption);
- free(frame->data);
- free(frame);
- }
- while (pkt->block_additional) {
- block_additional = pkt->block_additional;
- pkt->block_additional = block_additional->next;
- free(block_additional->data);
- free(block_additional);
+ ne_free_frame(frame);
}
+ ne_free_block_additions(pkt->block_additional);
+
free(pkt);
}
@@ -2977,6 +3078,7 @@ nestegg_packet_encryption(nestegg_packet * pkt)
{
struct frame * f = pkt->frame;
unsigned char encrypted_bit;
+ unsigned char partitioned_bit;
if (!f->frame_encryption)
return NESTEGG_PACKET_HAS_SIGNAL_BYTE_FALSE;
@@ -2985,10 +3087,14 @@ nestegg_packet_encryption(nestegg_packet * pkt)
assert(f->next == NULL);
encrypted_bit = f->frame_encryption->signal_byte & ENCRYPTED_BIT_MASK;
+ partitioned_bit = f->frame_encryption->signal_byte & PARTITIONED_BIT_MASK;
if (encrypted_bit != PACKET_ENCRYPTED)
return NESTEGG_PACKET_HAS_SIGNAL_BYTE_UNENCRYPTED;
+ if (partitioned_bit == PACKET_PARTITIONED)
+ return NESTEGG_PACKET_HAS_SIGNAL_BYTE_PARTITIONED;
+
return NESTEGG_PACKET_HAS_SIGNAL_BYTE_ENCRYPTED;
}
@@ -3017,6 +3123,35 @@ nestegg_packet_iv(nestegg_packet * pkt, unsigned char const ** iv, size_t * leng
}
int
+nestegg_packet_offsets(nestegg_packet * pkt,
+ uint32_t const ** partition_offsets,
+ uint8_t * num_partitions)
+{
+ struct frame * f = pkt->frame;
+ unsigned char encrypted_bit;
+ unsigned char partitioned_bit;
+
+ *partition_offsets = NULL;
+ *num_partitions = 0;
+
+ if (!f->frame_encryption)
+ return -1;
+
+ /* Should never have parsed blocks with both encryption and lacing */
+ assert(f->next == NULL);
+
+ encrypted_bit = f->frame_encryption->signal_byte & ENCRYPTED_BIT_MASK;
+ partitioned_bit = f->frame_encryption->signal_byte & PARTITIONED_BIT_MASK;
+
+ if (encrypted_bit != PACKET_ENCRYPTED || partitioned_bit != PACKET_PARTITIONED)
+ return -1;
+
+ *num_partitions = f->frame_encryption->num_partitions;
+ *partition_offsets = f->frame_encryption->partition_offsets;
+ return 0;
+}
+
+int
nestegg_has_cues(nestegg * ctx)
{
return ctx->segment.cues.cue_point.head ||
@@ -3027,7 +3162,7 @@ int
nestegg_sniff(unsigned char const * buffer, size_t length)
{
nestegg_io io;
- struct sniff_buffer userdata;
+ struct io_buffer userdata;
userdata.buffer = buffer;
userdata.length = length;
diff --git a/media/libnestegg/update.sh b/media/libnestegg/update.sh
index 6145ef064..644408e09 100755
--- a/media/libnestegg/update.sh
+++ b/media/libnestegg/update.sh
@@ -15,8 +15,8 @@ if [ -n "$rev" ]; then
version=$version-dirty
echo "WARNING: updating from a dirty git repository."
fi
- sed -i "/The git commit ID used was/ s/[0-9a-f]\+\(-dirty\)\?\./$version./" README_MOZILLA
+ sed -i "/The git commit ID used was/ s/[0-9a-f]\+\(-dirty\)\?\./$version./" README_MCP
else
- echo "Remember to update README_MOZILLA with the version details."
+ echo "Remember to update README_MCP with the version details."
fi
diff --git a/security/manager/ssl/nsSTSPreloadList.errors b/security/manager/ssl/nsSTSPreloadList.errors
index 48a20f39b..ced558e73 100644
--- a/security/manager/ssl/nsSTSPreloadList.errors
+++ b/security/manager/ssl/nsSTSPreloadList.errors
@@ -23,17 +23,18 @@
020wifi.nl: could not connect to host
0222.mg: did not receive HSTS header
0222aa.com: could not connect to host
-023838.com: did not receive HSTS header
+023838.com: could not connect to host
028718.com: did not receive HSTS header
029978.com: did not receive HSTS header
029inno.com: could not connect to host
02dl.net: could not connect to host
03-09-2016.wedding: could not connect to host
+0311buy.cn: did not receive HSTS header
040fit.nl: did not receive HSTS header
040fitvitality.nl: did not receive HSTS header
048.ag: could not connect to host
+04sun.com: could not connect to host
050508.com: could not connect to host
-0513c.com: did not receive HSTS header
055268.com: did not receive HSTS header
066318.com: could not connect to host
066538.com: did not receive HSTS header
@@ -41,12 +42,14 @@
066928.com: could not connect to host
066938.com: could not connect to host
070709.net: could not connect to host
+07733.win: could not connect to host
078805.com: did not receive HSTS header
078810.com: did not receive HSTS header
078820.com: did not receive HSTS header
078860.com: did not receive HSTS header
078890.com: did not receive HSTS header
081638.com: did not receive HSTS header
+083962.com: could not connect to host
086628.com: did not receive HSTS header
0c.eu: did not receive HSTS header
0cdn.ga: could not connect to host
@@ -78,7 +81,6 @@
0xf00.ch: could not connect to host
1.0.0.1: max-age too low: 0
1000hats.com: did not receive HSTS header
-1000serien.com: could not connect to host
1001.best: could not connect to host
1001firms.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
100onrainkajino.com: could not connect to host
@@ -90,9 +92,12 @@
10tacle.io: could not connect to host
10v2.com: did not receive HSTS header
10x.ooo: could not connect to host
+1100.so: could not connect to host
1116pay.com: did not receive HSTS header
+114514ss.com: could not connect to host
11bt.cc: did not receive HSTS header
11recruitment.com.au: did not receive HSTS header
+11scc.com: did not receive HSTS header
120dayweightloss.com: could not connect to host
123110.com: could not connect to host
123movies.fyi: did not receive HSTS header
@@ -113,7 +118,6 @@
1396.cc: could not connect to host
1396.net: did not receive HSTS header
1536.cf: could not connect to host
-160887.com: did not receive HSTS header
16164f.com: could not connect to host
163pwd.com: could not connect to host
1689886.com: did not receive HSTS header
@@ -121,7 +125,7 @@
168esb.com: could not connect to host
16deza.com: did not receive HSTS header
16packets.com: could not connect to host
-173vpn.cn: did not receive HSTS header
+173vpn.cn: could not connect to host
173vpns.com: could not connect to host
173vpnv.com: could not connect to host
174.net.nz: did not receive HSTS header
@@ -135,18 +139,20 @@
1912x.com: could not connect to host
19216811.online: could not connect to host
1921958389.rsc.cdn77.org: could not connect to host
-195gm.com: did not receive HSTS header
+195gm.com: could not connect to host
1a-jva.de: could not connect to host
1atic.com: could not connect to host
+1b1.pl: could not connect to host
1co-jp.net: did not receive HSTS header
1cover.com: could not connect to host
-1day1ac.red: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+1day1ac.red: could not connect to host
1er-secours.ch: could not connect to host
1gsoft.com: could not connect to host
1item.co.il: did not receive HSTS header
1k8b.com: could not connect to host
1nian.vip: could not connect to host
1pw.ca: did not receive HSTS header
+1q2w.nl: could not connect to host
1q365a.com: could not connect to host
1s.tn: could not connect to host
1st4abounce.co.uk: did not receive HSTS header
@@ -157,6 +163,7 @@
1xcess.com: did not receive HSTS header
1years.cc: could not connect to host
2-cpu.de: could not connect to host
+200fcw.com: could not connect to host
2018.wales: could not connect to host
20188088.com: did not receive HSTS header
2048game.co.uk: could not connect to host
@@ -164,13 +171,13 @@
208.es: did not receive HSTS header
20hs.cn: did not receive HSTS header
20zq.com: could not connect to host
+21.co.uk: did not receive HSTS header
21lg.co: could not connect to host
21stnc.com: could not connect to host
22bt.cc: did not receive HSTS header
+22scc.com: did not receive HSTS header
2333.press: could not connect to host
-2333666.xyz: did not receive HSTS header
-233ss.net: did not receive HSTS header
-245meadowvistaway.com: did not receive HSTS header
+233ss.net: could not connect to host
247a.co.uk: could not connect to host
247quickbooks.com: did not receive HSTS header
2488.ch: did not receive HSTS header
@@ -180,32 +187,32 @@
24kbet.com: could not connect to host
24pcr.com: could not connect to host
24sihu.com: could not connect to host
-2566335.xyz: could not connect to host
+2566335.xyz: did not receive HSTS header
256k.me: could not connect to host
25daysof.io: could not connect to host
-260887.com: did not receive HSTS header
27728522.com: could not connect to host
2859cc.com: could not connect to host
+286.com: did not receive HSTS header
29227.com: could not connect to host
2acbi-asso.fr: did not receive HSTS header
2b3b.com: could not connect to host
2bitout.com: could not connect to host
2bizi.ru: could not connect to host
+2bouncy.com: did not receive HSTS header
2brokegirls.org: could not connect to host
2carpros.com: did not receive HSTS header
2fl.me: did not receive HSTS header
2gen.com: could not connect to host
2intermediate.co.uk: did not receive HSTS header
-2mir.com: could not connect to host
2or3.tk: could not connect to host
2smart4food.com: could not connect to host
-2ss.jp: could not connect to host
-300651.ru: did not receive HSTS header
+2ss.jp: did not receive HSTS header
+300651.ru: could not connect to host
300mbmovie24.com: could not connect to host
300mbmovies4u.cc: could not connect to host
301.website: could not connect to host
302.nyc: could not connect to host
-30yearmortgagerates.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+30yearmortgagerates.net: did not receive HSTS header
3133780x.com: did not receive HSTS header
314166.com: could not connect to host
314chan.org: could not connect to host
@@ -214,12 +221,15 @@
330.net: could not connect to host
338da.com: could not connect to host
33drugstore.com: could not connect to host
+33scc.com: did not receive HSTS header
341.mg: could not connect to host
34oztonic.eu: did not receive HSTS header
3555500.com: could not connect to host
3555aa.com: could not connect to host
35792.de: could not connect to host
360gradus.com: did not receive HSTS header
+360live.fr: could not connect to host
+360woodworking.com: could not connect to host
365.or.jp: could not connect to host
365beautyworld.com: could not connect to host
365maya.com: did not receive HSTS header
@@ -230,6 +240,7 @@
38888msc.com: could not connect to host
38blog.com: could not connect to host
38sihu.com: could not connect to host
+3aandl.com: did not receive HSTS header
3candy.com: could not connect to host
3chit.cf: could not connect to host
3click-loan.com: could not connect to host
@@ -240,11 +251,13 @@
3dproteinimaging.com: did not receive HSTS header
3fl.com: did not receive HSTS header
3mbo.de: did not receive HSTS header
+3os.ooo: could not connect to host
3sreporting.com: did not receive HSTS header
3vlnaeet.cz: could not connect to host
3wecommerce.com.br: could not connect to host
+3weekdietworks.com: did not receive HSTS header
3xx.link: could not connect to host
-40-grad.de: did not receive HSTS header
+40-grad.de: max-age too low: 2628000
4036aa.com: did not receive HSTS header
4036bb.com: did not receive HSTS header
4036cc.com: did not receive HSTS header
@@ -261,23 +274,14 @@
42ms.org: could not connect to host
42t.ru: could not connect to host
439191.com: did not receive HSTS header
-440887.com: did not receive HSTS header
440hz-radio.de: did not receive HSTS header
440hz.radio: did not receive HSTS header
-442887.com: did not receive HSTS header
-443887.com: did not receive HSTS header
-444887.com: did not receive HSTS header
4455software.com: could not connect to host
-445887.com: did not receive HSTS header
44957.com: could not connect to host
+44scc.com: did not receive HSTS header
44sec.com: could not connect to host
4500.co.il: did not receive HSTS header
4679.space: did not receive HSTS header
-4706666.com: did not receive HSTS header
-4716666.com: did not receive HSTS header
-4726666.com: did not receive HSTS header
-4756666.com: did not receive HSTS header
-4786666.com: did not receive HSTS header
478933.com: did not receive HSTS header
47tech.com: could not connect to host
4997777.com: could not connect to host
@@ -289,15 +293,18 @@
4hvac.com: did not receive HSTS header
4loc.us: could not connect to host
4miners.net: could not connect to host
+4mm.org: could not connect to host
4mybaby.ch: did not receive HSTS header
4ourty2.org: could not connect to host
4sqsu.eu: could not connect to host
4w-performers.link: could not connect to host
4web-hosting.com: could not connect to host
-4winds.pt: could not connect to host
+4winds.pt: did not receive HSTS header
5000yz.com: could not connect to host
500103.com: could not connect to host
500108.com: could not connect to host
+500fcw.com: could not connect to host
+50ma.xyz: could not connect to host
50millionablaze.org: could not connect to host
513vpn.net: could not connect to host
517vpn.cn: could not connect to host
@@ -314,12 +321,15 @@
555fl.com: max-age too low: 129600
555xl.com: could not connect to host
55bt.cc: did not receive HSTS header
+55scc.com: did not receive HSTS header
56877.com: could not connect to host
56ct.com: could not connect to host
57aromas.com: did not receive HSTS header
5chat.it: could not connect to host
5ece.de: could not connect to host
5piecesofadvice.com: could not connect to host
+5thchichesterscouts.org.uk: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+5w5.la: did not receive HSTS header
605508.cc: could not connect to host
605508.com: could not connect to host
60ych.net: did not receive HSTS header
@@ -329,9 +339,7 @@
645ds.com: did not receive HSTS header
64616e.xyz: could not connect to host
64bitgaming.de: could not connect to host
-64bitservers.net: could not connect to host
660011.com: could not connect to host
-6677.us: did not receive HSTS header
67899876.com: did not receive HSTS header
68277.me: could not connect to host
688da.com: could not connect to host
@@ -339,8 +347,8 @@
69mentor.com: could not connect to host
69square.com: could not connect to host
6ird.com: did not receive HSTS header
+6w6.la: did not receive HSTS header
6z3.net: could not connect to host
-7045h.com: could not connect to host
7183.org: could not connect to host
721av.com: could not connect to host
724go.com: could not connect to host
@@ -348,7 +356,6 @@
72ty.com: could not connect to host
72ty.net: could not connect to host
73223.com: did not receive HSTS header
-73info.com: did not receive HSTS header
771122.tv: did not receive HSTS header
7717a.com: did not receive HSTS header
776573.net: did not receive HSTS header
@@ -361,8 +368,9 @@
7nw.eu: could not connect to host
7thheavenrestaurant.com: could not connect to host
8.net.co: could not connect to host
+80036.com: could not connect to host
8003pay.com: could not connect to host
-808.lv: did not receive HSTS header
+808.lv: could not connect to host
808phone.net: could not connect to host
81818app.com: could not connect to host
81uc.com: could not connect to host
@@ -372,18 +380,20 @@
82ty.com: could not connect to host
83i.net: could not connect to host
8522.am: could not connect to host
+8522.com: did not receive HSTS header
+8522club.com: did not receive HSTS header
8522cn.com: did not receive HSTS header
8522top.com: could not connect to host
8560.be: could not connect to host
+86metro.ru: could not connect to host
8722.com: did not receive HSTS header
87577.com: could not connect to host
88.to: could not connect to host
-887.ag: did not receive HSTS header
-8884553.com: could not connect to host
8887999.com: could not connect to host
8888av.co: could not connect to host
888azino.com: did not receive HSTS header
888lu.co: could not connect to host
+888msc.vip: did not receive HSTS header
88d.com: could not connect to host
88laohu.cc: could not connect to host
88laohu.com: could not connect to host
@@ -396,6 +406,7 @@
8da2018.com: could not connect to host
8mpay.com: did not receive HSTS header
8t88.biz: could not connect to host
+8ung.online: could not connect to host
90smthng.com: could not connect to host
91-freedom.com: could not connect to host
910kj.com: did not receive HSTS header
@@ -435,22 +446,27 @@ a1-autopartsglasgow.com: could not connect to host
a1798.com: could not connect to host
a200k.xyz: did not receive HSTS header
a2c-co.net: could not connect to host
-a2it.gr: did not receive HSTS header
+a2it.gr: max-age too low: 0
a3workshop.swiss: could not connect to host
a8q.org: could not connect to host
a9c.co: could not connect to host
+aa43d.cn: could not connect to host
aa7733.com: could not connect to host
aaeblog.com: did not receive HSTS header
aaeblog.net: did not receive HSTS header
aaeblog.org: did not receive HSTS header
aaoo.net: could not connect to host
aapp.space: could not connect to host
+aardvarksolutions.co.za: did not receive HSTS header
aariefhaafiz.com: could not connect to host
+aarkue.eu: could not connect to host
aaron-gustafson.com: did not receive HSTS header
aaronburt.co.uk: could not connect to host
aaronhorler.com.au: could not connect to host
aaronmcguire.me: did not receive HSTS header
aarvinproperties.com: could not connect to host
+ab-bauservice-berlin.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+abacus-events.co.uk: did not receive HSTS header
abareplace.com: did not receive HSTS header
abasky.net: could not connect to host
abcdef.be: could not connect to host
@@ -463,13 +479,12 @@ abeontech.com: could not connect to host
abi-fvs.de: could not connect to host
abigailstark.com: could not connect to host
abilitylist.org: did not receive HSTS header
-abilma.com: could not connect to host
abioniere.de: could not connect to host
ablogagency.net: could not connect to host
abloop.com: could not connect to host
abmahnhelfer.de: did not receive HSTS header
abnarnro.com: could not connect to host
-abolition.co: could not connect to host
+abolition.co: did not receive HSTS header
abosav.com: did not receive HSTS header
abou.to: could not connect to host
about.ge: did not receive HSTS header
@@ -477,7 +492,7 @@ aboutassistedliving.org: did not receive HSTS header
aboutmyip.info: did not receive HSTS header
aboutmyproperty.ca: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
aboutyou-deals.de: could not connect to host
-abracadabra.co.jp: max-age too low: 0
+absimple.ca: did not receive HSTS header
absinthium.ch: could not connect to host
absolutewaterproofingsolutions.com: did not receive HSTS header
abstractbarista.com: could not connect to host
@@ -486,7 +501,7 @@ abt.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
-abyssgaming.eu: did not receive HSTS header
+abyssgaming.eu: could not connect to host
ac.milan.it: did not receive HSTS header
acabadosboston.com: could not connect to host
academialowcost.com.br: did not receive HSTS header
@@ -504,7 +519,7 @@ accelight.jp: did not receive HSTS header
access-sofia.org: did not receive HSTS header
accolade.com.br: could not connect to host
accoun.technology: could not connect to host
-accounts-p.com: could not connect to host
+accounts-p.com: did not receive HSTS header
accountsuspended.club: could not connect to host
accwing.com: could not connect to host
aceadvisory.biz: did not receive HSTS header
@@ -520,7 +535,6 @@ acheritage.co.uk: did not receive HSTS header
achmadfamily.com: could not connect to host
achow101.com: did not receive HSTS header
achterhoekseveiligheidsbeurs.nl: could not connect to host
-achterstieg.dedyn.io: could not connect to host
acisonline.net: did not receive HSTS header
acksoft.fr: did not receive HSTS header
acksoftdemo.fr: did not receive HSTS header
@@ -544,23 +558,22 @@ actu-film.com: max-age too low: 0
actu-medias.com: could not connect to host
actualite-videos.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
acuve.jp: could not connect to host
-acy.com: could not connect to host
+acyume.com: did not receive HSTS header
ad-disruptio.fr: could not connect to host
ada.is: max-age too low: 2592000
adajwells.me: could not connect to host
adambryant.ca: could not connect to host
adamcoffee.net: could not connect to host
adamdixon.co.uk: could not connect to host
+adamfontenot.com: could not connect to host
adamricheimer.com: could not connect to host
adamsfoundationrepair.com: did not receive HSTS header
-adamwallington.co.uk: could not connect to host
adamwk.com: did not receive HSTS header
adastra.re: could not connect to host
adblock.ovh: could not connect to host
adboos.com: could not connect to host
addaxpetroleum.com: could not connect to host
addcrazy.com: did not receive HSTS header
-addiko.net: could not connect to host
addvocate.com: could not connect to host
adec-emsa.ae: could not connect to host
adelaides.com: did not receive HSTS header
@@ -569,7 +582,6 @@ adelinlydia-coach.com: did not receive HSTS header
adequatetechnology.com: could not connect to host
aderal.io: could not connect to host
adesa-asesoria.com: did not receive HSTS header
-adevel.eu: could not connect to host
adfa-1.com: could not connect to host
adhigamindia.com: could not connect to host
adhosting.nl: did not receive HSTS header
@@ -578,6 +590,7 @@ adigitali.biz: did not receive HSTS header
adindexr.com: could not connect to host
adint.net: could not connect to host
adlerweb.info: did not receive HSTS header
+adme.co.il: could not connect to host
admin-forms.co.uk: did not receive HSTS header
admin-numerique.com: did not receive HSTS header
admin.google.com: did not receive HSTS header (error ignored - included regardless)
@@ -634,10 +647,12 @@ aes256.ru: could not connect to host
aesthetics-blog.com: did not receive HSTS header
aesym.de: could not connect to host
aether.pw: could not connect to host
+aethonan.pro: could not connect to host
aevpn.net: could not connect to host
aevpn.org: could not connect to host
aeyoun.com: did not receive HSTS header
af-fotografie.net: did not receive HSTS header
+afb24.de: did not receive HSTS header
afdkompakt.de: max-age too low: 86400
afeefzarapackages.com: did not receive HSTS header
affily.io: could not connect to host
@@ -664,6 +679,7 @@ agenciagriff.com: did not receive HSTS header
agencymanager.be: could not connect to host
agentseeker.ca: could not connect to host
agevio.com: could not connect to host
+agilebits.net: could not connect to host
agileecommerce.com.br: could not connect to host
agingstop.net: could not connect to host
agonswim.com: did not receive HSTS header
@@ -673,6 +689,7 @@ agowa338.de: did not receive HSTS header
agrafix.design: did not receive HSTS header
agrarking.com: could not connect to host
agrias.com.br: did not receive HSTS header
+agrichamber.com.ua: could not connect to host
agrikulturchic.com: could not connect to host
agrimap.com: did not receive HSTS header
agro-id.gov.ua: did not receive HSTS header
@@ -682,7 +699,7 @@ agroyard.com.ua: could not connect to host
agtv.com.br: did not receive HSTS header
ahabingo.com: did not receive HSTS header
ahelos.tk: could not connect to host
-ahlz.sk: could not connect to host
+ahiru3.com: could not connect to host
aholic.co: did not receive HSTS header
ahoynetwork.com: could not connect to host
ahri.ovh: could not connect to host
@@ -692,17 +709,18 @@ ahwatukeefoothillsmontessori.com: did not receive HSTS header
ai1989.com: could not connect to host
aibaoyou.com: could not connect to host
aibsoftware.mx: could not connect to host
-aicial.com: did not receive HSTS header
+aicial.com: could not connect to host
aicial.com.au: could not connect to host
aid-web.ch: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
aidanwoods.com: did not receive HSTS header
aide-admin.com: did not receive HSTS header
aidikofflaw.com: did not receive HSTS header
aiesecarad.ro: could not connect to host
+aiforsocialmedia.com: could not connect to host
aifreeze.ru: could not connect to host
aify.eu: could not connect to host
aikenorganics.com: could not connect to host
-aim-consultants.com: could not connect to host
+aim-consultants.com: did not receive HSTS header
aimerworld.com: did not receive HSTS header
aimrom.org: could not connect to host
ainrb.com: could not connect to host
@@ -710,16 +728,15 @@ aioboot.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERRO
aip-marine.com: could not connect to host
aiphyron.com: could not connect to host
aiponne.com: could not connect to host
-airconsalberton.co.za: did not receive HSTS header
airconsboksburg.co.za: did not receive HSTS header
airconsfourways.co.za: did not receive HSTS header
airconsmidrand.co.za: did not receive HSTS header
-airconssandton.co.za: did not receive HSTS header
airedaleterrier.com.br: could not connect to host
airfax.io: could not connect to host
airlea.com: could not connect to host
airlinecheckins.com: did not receive HSTS header
airmazinginflatables.com: could not connect to host
+airportlimototoronto.com: did not receive HSTS header
airproto.com: did not receive HSTS header
airsick.guide: did not receive HSTS header
airtimefranchise.com: did not receive HSTS header
@@ -728,6 +745,7 @@ aisle3.space: could not connect to host
aiticon.de: did not receive HSTS header
aivene.com: could not connect to host
aiw-thkoeln.online: could not connect to host
+aixxe.net: did not receive HSTS header
ajetaci.cz: could not connect to host
ajibot.com: did not receive HSTS header
ajmahal.com: could not connect to host
@@ -744,7 +762,6 @@ akhras.at: did not receive HSTS header
akiba-server.info: could not connect to host
akihiro.xyz: could not connect to host
akita-stream.com: could not connect to host
-akj.io: did not receive HSTS header
akkadia.cc: could not connect to host
akoch.net: could not connect to host
akombakom.net: could not connect to host
@@ -754,7 +771,6 @@ akselimedia.fi: could not connect to host
akstudentsfirst.org: could not connect to host
aktan.com.br: could not connect to host
aktivist.in: did not receive HSTS header
-akul.co.in: could not connect to host
al-f.net: could not connect to host
al-shami.net: could not connect to host
alanhuang.name: did not receive HSTS header
@@ -786,11 +802,12 @@ alenan.org: could not connect to host
aleph.land: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
alertaenlinea.gov: did not receive HSTS header
alessandro.pw: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+alessandroz.ddns.net: could not connect to host
alessandroz.pro: could not connect to host
alethearose.com: did not receive HSTS header
+alexander-beck.eu: could not connect to host
alexandernorth.ch: could not connect to host
-alexandre.sh: did not receive HSTS header
-alexandros.io: could not connect to host
+alexandre.sh: could not connect to host
alexdodge.ca: did not receive HSTS header
alexei.su: could not connect to host
alexfisherhealth.com.au: did not receive HSTS header
@@ -815,15 +832,15 @@ alghaib.com: could not connect to host
alibababee.com: did not receive HSTS header
alicialab.org: could not connect to host
alien.bz: did not receive HSTS header
-alignrs.com: could not connect to host
-alikulov.me: did not receive HSTS header
alilialili.ga: could not connect to host
alinemaciel.adm.br: could not connect to host
+alistairholland.me: did not receive HSTS header
alistairpialek.com: max-age too low: 86400
alittlebitcheeky.com: did not receive HSTS header
aliwebstore.com: could not connect to host
aljammaz.holdings: could not connect to host
aljmz.com: did not receive HSTS header
+aljweb.com: could not connect to host
alkami.com: max-age too low: 0
alkamitech.com: max-age too low: 0
alkel.info: did not receive HSTS header
@@ -834,10 +851,11 @@ allaboutbelgaum.com: did not receive HSTS header
alldaymonitoring.com: could not connect to host
alldm.ru: could not connect to host
allegro-inc.com: did not receive HSTS header
-allerbestefreunde.de: did not receive HSTS header
+allerbestefreunde.de: could not connect to host
allfreelancers.su: did not receive HSTS header
allgrass.es: did not receive HSTS header
allgrass.net: did not receive HSTS header
+allhard.org: could not connect to host
alliance-compacts.com: did not receive HSTS header
allinnote.com: could not connect to host
allinonecyprus.com: did not receive HSTS header
@@ -865,7 +883,10 @@ almagalla.com: could not connect to host
almatinki.com: could not connect to host
aloalabs.com: did not receive HSTS header
alocato.com: could not connect to host
+alorenzi.eu: did not receive HSTS header
+alp.net.cn: could not connect to host
alparque.com: did not receive HSTS header
+alpe-d-or.dyn-o-saur.com: could not connect to host
alpha.irccloud.com: could not connect to host
alphabit-secure.com: could not connect to host
alphabuild.io: could not connect to host
@@ -891,7 +912,7 @@ altoneum.com: could not connect to host
altporn.xyz: could not connect to host
altruistgroup.net: max-age too low: 300
aluminium-scaffolding.co.uk: could not connect to host
-alunjam.es: could not connect to host
+alunjam.es: did not receive HSTS header
alunonaescola.com.br: could not connect to host
aluoblog.pw: could not connect to host
aluoblog.top: could not connect to host
@@ -907,13 +928,12 @@ amandaonishi.com: could not connect to host
amaranthus.com.ph: could not connect to host
amartinz.at: could not connect to host
amateri.com: could not connect to host
-amateurvoicetalent.com: could not connect to host
amatzen.dk: did not receive HSTS header
amavis.org: did not receive HSTS header
amazing-gaming.fr: could not connect to host
amazingbouncycastles.co.uk: did not receive HSTS header
amazingfloridagulfhomes.com: did not receive HSTS header
-ambiancestudio.ro: could not connect to host
+ambiancestudio.ro: did not receive HSTS header
ambrosius.io: could not connect to host
amcvega.com: did not receive HSTS header
amdouglas.uk: could not connect to host
@@ -927,6 +947,7 @@ americanoutlawjeepparts.com: did not receive HSTS header
americansforcommunitydevelopment.org: did not receive HSTS header
americansportsinstitute.org: did not receive HSTS header
americanworkwear.nl: did not receive HSTS header
+ameschristian.net: did not receive HSTS header
amethystcards.co.uk: could not connect to host
ameza.co.uk: could not connect to host
ameza.com.mx: could not connect to host
@@ -944,7 +965,7 @@ amin.ga: did not receive HSTS header
amin.one: could not connect to host
amishsecurity.com: could not connect to host
amitse.com: did not receive HSTS header
-amitube.com: did not receive HSTS header
+amitube.com: could not connect to host
amleeds.co.uk: could not connect to host
amlvfs.net: could not connect to host
ammoulianiapartments.com: did not receive HSTS header
@@ -956,7 +977,7 @@ ampledesigners.com: could not connect to host
ampleinfographics.com: could not connect to host
amri.nl: did not receive HSTS header
amtentertainments.co.uk: could not connect to host
-amua.fr: could not connect to host
+amua.fr: did not receive HSTS header
amunoz.org: could not connect to host
amv-crm.ru: could not connect to host
anabol.nl: could not connect to host
@@ -983,7 +1004,6 @@ ancientkarma.com: could not connect to host
andbraiz.com: did not receive HSTS header
andere-gedanken.net: max-age too low: 10
anderslind.dk: could not connect to host
-andoms.fi: did not receive HSTS header
andreagobetti.com: did not receive HSTS header
andreas-kluge.eu: could not connect to host
andreasanti.net: did not receive HSTS header
@@ -994,8 +1014,9 @@ andreaskluge.eu: could not connect to host
andreastoneman.com: could not connect to host
andrei-coman.com: could not connect to host
andreigec.net: did not receive HSTS header
+andrejbenz.com: could not connect to host
+andrepicard.de: could not connect to host
andrerose.ca: did not receive HSTS header
-andrew.fi: could not connect to host
andrewbroekman.com: did not receive HSTS header
andrewdavidwong.com: did not receive HSTS header
andrewdaws.co: could not connect to host
@@ -1014,10 +1035,7 @@ android: could not connect to host
androidprosmart.com: could not connect to host
androidsphone.com: did not receive HSTS header
androled.fr: max-age too low: 5184000
-andronika.net: could not connect to host
androoz.se: could not connect to host
-anduril.de: did not receive HSTS header
-anduril.eu: did not receive HSTS header
andyclark.io: could not connect to host
andycraftz.eu: did not receive HSTS header
andymartin.cc: could not connect to host
@@ -1034,14 +1052,18 @@ angeloroberto.ch: did not receive HSTS header
angeloventuri.com: did not receive HSTS header
angervillelorcher.fr: did not receive HSTS header
anghami.com: did not receive HSTS header
+anglertanke.de: could not connect to host
anglictinatabor.cz: could not connect to host
angrut.com: did not receive HSTS header
angry-monk.com: could not connect to host
angrydragonproductions.com: could not connect to host
+angrylab.com: did not receive HSTS header
angryroute.com: could not connect to host
+anim.ee: could not connect to host
animal-nature-human.com: could not connect to host
animalnet.de: max-age too low: 7776000
animalstropic.com: could not connect to host
+animatelluris.nl: could not connect to host
anime1.top: could not connect to host
anime1video.tk: could not connect to host
animeday.ml: could not connect to host
@@ -1065,6 +1087,7 @@ annarbor.group: did not receive HSTS header
annetaan.fi: could not connect to host
annevankesteren.com: could not connect to host
annevankesteren.org: could not connect to host
+annicascakes.nl: could not connect to host
annsbouncycastles.com: could not connect to host
anomaly.ws: did not receive HSTS header
anonboards.com: could not connect to host
@@ -1085,6 +1108,7 @@ antecim.fr: could not connect to host
antenasmundosat.com.br: did not receive HSTS header
anthenor.co.uk: could not connect to host
anthony-rouanet.com: could not connect to host
+anthonyaires.com: did not receive HSTS header
anthonyavon.com: could not connect to host
anthonyloop.com: did not receive HSTS header
anthro.id: did not receive HSTS header
@@ -1119,7 +1143,6 @@ aooobo.com: could not connect to host
aov.io: could not connect to host
aovcentrum.nl: did not receive HSTS header
aozora.moe: could not connect to host
-apachelounge.com: did not receive HSTS header
apadrinaunolivo.org: did not receive HSTS header
apaginastore.com.br: could not connect to host
apeasternpower.com: could not connect to host
@@ -1139,6 +1162,7 @@ apl2bits.net: did not receive HSTS header
apm.com.tw: did not receive HSTS header
apmg-certified.com: did not receive HSTS header
apmg-cyber.com: did not receive HSTS header
+apmpproject.org: did not receive HSTS header
apnakliyat.com: did not receive HSTS header
apolloyl.com: could not connect to host
aponkral.site: could not connect to host
@@ -1171,9 +1195,9 @@ apps-for-fishing.com: could not connect to host
apps4all.sytes.net: could not connect to host
appsbystudio.co.uk: did not receive HSTS header
appsdash.io: could not connect to host
+appson.co.uk: did not receive HSTS header
apptoutou.com: could not connect to host
appuro.com: did not receive HSTS header
-appxcrypto.com: did not receive HSTS header
aprpullmanportermuseum.org: did not receive HSTS header
aptitude9.com: could not connect to host
aqqrate.com: could not connect to host
@@ -1181,6 +1205,7 @@ aquariumaccessories.shop: could not connect to host
aquilaguild.com: could not connect to host
aquilalab.com: could not connect to host
aquireceitas.com: did not receive HSTS header
+aquitroc.com: could not connect to host
ar.al: did not receive HSTS header
arabdigitalexpression.org: did not receive HSTS header
arabsexi.info: could not connect to host
@@ -1188,7 +1213,7 @@ aradulconteaza.ro: could not connect to host
aran.me.uk: could not connect to host
aranel.me: could not connect to host
arboineuropa.nl: did not receive HSTS header
-arbu.eu: max-age too low: 2419200
+arboleda-hurtado.com: could not connect to host
arcadiaeng.com: did not receive HSTS header
arcbit.io: could not connect to host
archii.ca: did not receive HSTS header
@@ -1199,24 +1224,24 @@ archsec.info: could not connect to host
arckr.com: could not connect to host
arctica.io: did not receive HSTS header
ardao.me: could not connect to host
-ardor.noip.me: could not connect to host
ardorlabs.se: could not connect to host
area3.org: could not connect to host
areallyneatwebsite.com: could not connect to host
-arent.kz: could not connect to host
+arent.kz: did not receive HSTS header
arenzanaphotography.com: could not connect to host
arethsu.se: could not connect to host
arewedubstepyet.com: did not receive HSTS header
areyouever.me: could not connect to host
+argama-nature.com: did not receive HSTS header
argennon.xyz: could not connect to host
argh.io: could not connect to host
arguggi.co.uk: could not connect to host
ariacreations.net: did not receive HSTS header
-ariege-pyrenees.net: did not receive HSTS header
arifburhan.online: could not connect to host
arifp.me: could not connect to host
arinflatablefun.co.uk: could not connect to host
arislight.com: could not connect to host
+aristilabs.com: did not receive HSTS header
aristocrates.co: could not connect to host
aristocratps.com: did not receive HSTS header
arithxu.com: did not receive HSTS header
@@ -1225,7 +1250,9 @@ arknodejs.com: could not connect to host
arlen.io: could not connect to host
arlen.se: could not connect to host
arlingtonwine.net: could not connect to host
+arm-host.com: did not receive HSTS header
armazemdaminiatura.com.br: could not connect to host
+armeni-jewellery.gr: could not connect to host
armenians.online: could not connect to host
armingrodon.de: did not receive HSTS header
armodec.com: did not receive HSTS header
@@ -1251,24 +1278,17 @@ arrowgrove.com: could not connect to host
ars-design.net: could not connect to host
arsenal.ru: could not connect to host
arsk1.com: could not connect to host
-arswb.men: could not connect to host
art2web.net: could not connect to host
+artansoft.com: could not connect to host
artaronquieres.com: did not receive HSTS header
artartefatos.com.br: could not connect to host
artbytik.ru: did not receive HSTS header
-artea.ga: could not connect to host
-arteaga.co.uk: could not connect to host
-arteaga.eu: could not connect to host
-arteaga.me: could not connect to host
-arteaga.tech: could not connect to host
-arteaga.uk: could not connect to host
-arteaga.xyz: could not connect to host
artegusto.ru: did not receive HSTS header
artemicroway.com.br: could not connect to host
+artemis.re: could not connect to host
arteseideias.com.pt: did not receive HSTS header
artesupra.com: did not receive HSTS header
arthan.me: could not connect to host
-arthur.cn: could not connect to host
arti-group.ml: max-age too low: 2592000
articaexports.com: could not connect to host
artifex21.com: did not receive HSTS header
@@ -1289,6 +1309,7 @@ artyland.ru: could not connect to host
arvamus.eu: could not connect to host
arxell.com: did not receive HSTS header
arzaroth.com: did not receive HSTS header
+arzinfo.pw: could not connect to host
as.se: could not connect to host
as9178.net: could not connect to host
asafomba.com: could not connect to host
@@ -1297,9 +1318,9 @@ asana.studio: did not receive HSTS header
asasuou.pw: could not connect to host
asc16.com: could not connect to host
aschaefer.net: could not connect to host
-asciitable.tips: could not connect to host
asdpress.cn: could not connect to host
asepms.com: max-age too low: 7776000
+asge-handel.de: did not receive HSTS header
ashlane-cottages.com: could not connect to host
ashleakunowski.com: could not connect to host
ashleyadum.com: could not connect to host
@@ -1308,7 +1329,6 @@ ashleymedway.com: could not connect to host
asian-archi.com.tw: did not receive HSTS header
asianbet77.co: did not receive HSTS header
asianbet77.net: did not receive HSTS header
-asianodor.com: could not connect to host
asiesvenezuela.com: did not receive HSTS header
asisee.co.il: could not connect to host
ask.pe: could not connect to host
@@ -1346,10 +1366,8 @@ astutr.co: could not connect to host
asuhe.cc: could not connect to host
asuhe.win: did not receive HSTS header
asuhe.xyz: could not connect to host
-async.be: could not connect to host
+async.be: max-age too low: 0
at1.co: could not connect to host
-ataber.pw: could not connect to host
-atacadodesandalias.com.br: could not connect to host
atacadooptico.com.br: could not connect to host
atavio.at: could not connect to host
atavio.ch: could not connect to host
@@ -1360,10 +1378,12 @@ atelier-rk.com: did not receive HSTS header
atelier-viennois-cannes.fr: could not connect to host
ateliernihongo.ch: did not receive HSTS header
ateliersantgervasi.com: did not receive HSTS header
+atg.soy: could not connect to host
ath0.org: max-age too low: 600
athaliasoft.com: could not connect to host
athenelive.com: could not connect to host
athensbusinessresources.us: could not connect to host
+atheoryofchange.com: could not connect to host
athi.pl: did not receive HSTS header
athul.xyz: could not connect to host
atk.me: could not connect to host
@@ -1388,12 +1408,12 @@ au-pair24.de: did not receive HSTS header
au.search.yahoo.com: max-age too low: 172800
aubiosales.com: could not connect to host
aucubin.moe: could not connect to host
-audiense.com: did not receive HSTS header
+audioonly.stream: could not connect to host
audiovisualdevices.com.au: did not receive HSTS header
audividi.shop: did not receive HSTS header
aufmerksamkeitsstudie.com: could not connect to host
aufprise.de: did not receive HSTS header
-augaware.org: could not connect to host
+augaware.org: did not receive HSTS header
augenblicke-blog.de: could not connect to host
augias.org: could not connect to host
augix.net: could not connect to host
@@ -1412,7 +1432,6 @@ ausec.ch: could not connect to host
auskunftsbegehren.at: did not receive HSTS header
auslandsjahr-usa.de: did not receive HSTS header
ausnah.me: could not connect to host
-ausschreibungen-suedtirol.it: did not receive HSTS header
aussiecable.org: could not connect to host
aussiehq.com.au: did not receive HSTS header
aussiewebmarketing.com.au: did not receive HSTS header
@@ -1469,11 +1488,10 @@ avg.club: did not receive HSTS header
aviacao.pt: did not receive HSTS header
avidcruiser.com: did not receive HSTS header
aviodeals.com: could not connect to host
-avitres.com: could not connect to host
+avitres.com: did not receive HSTS header
avmemo.com: could not connect to host
avmo.pw: could not connect to host
avmoo.com: could not connect to host
-avnet.ws: could not connect to host
avonlearningcampus.com: could not connect to host
avso.pw: could not connect to host
avspot.net: could not connect to host
@@ -1485,6 +1503,7 @@ awccanadianpharmacy.com: could not connect to host
awei.pub: could not connect to host
awf0.xyz: could not connect to host
awg-mode.de: did not receive HSTS header
+awin.la: did not receive HSTS header
aww.moe: did not receive HSTS header
awxg.eu.org: could not connect to host
awxg.org: could not connect to host
@@ -1499,12 +1518,13 @@ axfr.it: could not connect to host
axg.io: did not receive HSTS header
axialsports.com: did not receive HSTS header
axiumacademy.com: did not receive HSTS header
+axka.com: could not connect to host
axolotlfarm.org: could not connect to host
axolsoft.com: max-age too low: 10540800
+axtudo.com: did not receive HSTS header
axtux.tk: could not connect to host
axxial.tk: could not connect to host
ayahuascaadvisor.com: could not connect to host
-ayamchikchik.com: could not connect to host
ayatk.com: did not receive HSTS header
aymericlagier.com: could not connect to host
ayon.group: could not connect to host
@@ -1530,6 +1550,7 @@ b2b-nestle.com.br: could not connect to host
b2bpromoteit.com: did not receive HSTS header
b3orion.com: could not connect to host
b422edu.com: could not connect to host
+b4r7.de: could not connect to host
b61688.com: could not connect to host
b8a.me: could not connect to host
b9520.com: could not connect to host
@@ -1539,12 +1560,13 @@ b9886.com: could not connect to host
b98886.com: could not connect to host
b9930.com: could not connect to host
b99520.com: could not connect to host
-b9970.com: could not connect to host
+b9970.com: did not receive HSTS header
b9980.com: could not connect to host
b99881.com: could not connect to host
b99882.com: could not connect to host
b99883.com: could not connect to host
b99885.com: could not connect to host
+b99886.com: could not connect to host
b9winner.com: could not connect to host
babelfisch.eu: could not connect to host
babursahvizeofisi.com: could not connect to host
@@ -1555,6 +1577,7 @@ babycs.house: could not connect to host
babyhouse.xyz: could not connect to host
babyliss-pro.com: could not connect to host
babyliss-pro.net: did not receive HSTS header
+babyphototime.com: did not receive HSTS header
babysaying.me: could not connect to host
babystep.tv: did not receive HSTS header
bacchanallia.com: could not connect to host
@@ -1567,6 +1590,7 @@ backintomotionphysiotherapy.com: did not receive HSTS header
backlogapp.io: could not connect to host
backpacken.org: could not connect to host
backscattering.de: did not receive HSTS header
+backupcloud.ru: could not connect to host
backupsinop.com.br: did not receive HSTS header
backyardbbqbash.com: did not receive HSTS header
baconate.com: did not receive HSTS header
@@ -1580,7 +1604,6 @@ badkamergigant.com: could not connect to host
badlink.org: could not connect to host
baff.lu: could not connect to host
bagiobella.com: max-age too low: 0
-baglu.com: did not receive HSTS header
baiduaccount.com: could not connect to host
baildonhottubs.co.uk: could not connect to host
bair.io: could not connect to host
@@ -1596,19 +1619,17 @@ bakkerdesignandbuild.com: did not receive HSTS header
bakxnet.com: could not connect to host
balatoni-nyar.hu: did not receive HSTS header
balcan-underground.net: could not connect to host
-baldur.cc: could not connect to host
baldwinkoo.com: could not connect to host
baleares.party: could not connect to host
balenciaspa.com: did not receive HSTS header
balihai.com: did not receive HSTS header
balilingo.ooo: could not connect to host
-ballarin.cc: could not connect to host
ballbusting-cbt.com: could not connect to host
+ballitolocksmith.com: could not connect to host
balloonphp.com: could not connect to host
balnearionaturaspa.com: did not receive HSTS header
balonmano.co: could not connect to host
bals.org: did not receive HSTS header
-balticer.de: did not receive HSTS header
bambambaby.com.br: could not connect to host
bamtoki.com: could not connect to host
bamtoki.se: could not connect to host
@@ -1616,26 +1637,24 @@ bananabandy.com: could not connect to host
bananensap.nl: did not receive HSTS header
bananium.fr: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
banbanchs.com: could not connect to host
-banburybid.com: could not connect to host
banchethai.com: could not connect to host
bandally.net: could not connect to host
bandar303.cc: did not receive HSTS header
bandar303.id: did not receive HSTS header
bandar303.win: did not receive HSTS header
bandarifamily.com: could not connect to host
-bandb.xyz: did not receive HSTS header
-bandrcrafts.com: could not connect to host
+bandb.xyz: could not connect to host
+bandrcrafts.com: did not receive HSTS header
banduhn.com: did not receive HSTS header
-bangdream.ga: could not connect to host
bangzafran.com: did not receive HSTS header
bank: could not connect to host
bankcircle.co.in: could not connect to host
-bankersonline.com: did not receive HSTS header
bankitt.network: could not connect to host
bankmilhas.com.br: did not receive HSTS header
bankofrealty.review: could not connect to host
banksaround.com: did not receive HSTS header
bannisbierblog.de: could not connect to host
+banoviny.sk: did not receive HSTS header
banqingdiao.com: could not connect to host
banri.me: could not connect to host
banxehoi.com: did not receive HSTS header
@@ -1646,7 +1665,7 @@ baraxolka.ru: could not connect to host
barcouniforms.com: did not receive HSTS header
bardiel.de: max-age too low: 0
barely.sexy: could not connect to host
-bargainmovingcompany.com: could not connect to host
+bargainmovingcompany.com: did not receive HSTS header
bariller.fr: did not receive HSTS header
barisi.me: could not connect to host
barnrats.com: could not connect to host
@@ -1655,7 +1674,7 @@ barprive.com: could not connect to host
barqo.co: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
barracuda.blog: could not connect to host
barrelhead.org: could not connect to host
-barrett.ag: could not connect to host
+barrett.ag: did not receive HSTS header
barrut.me: did not receive HSTS header
barshout.co.uk: could not connect to host
barss.io: could not connect to host
@@ -1664,6 +1683,7 @@ bartelldrugs.com: did not receive HSTS header
barunisystems.com: could not connect to host
bascht.com: did not receive HSTS header
basculasconfiables.com: could not connect to host
+basercap.co.ke: could not connect to host
bashc.at: could not connect to host
bashcode.ninja: could not connect to host
basicsolutionsus.com: could not connect to host
@@ -1674,8 +1694,9 @@ basketsbymaurice.com: did not receive HSTS header
baskettemple.com: did not receive HSTS header
basnieuwenhuizen.nl: did not receive HSTS header
bassh.net: did not receive HSTS header
+bastadigital.com: did not receive HSTS header
batfoundry.com: could not connect to host
-batonger.com: did not receive HSTS header
+batonger.com: could not connect to host
batten.eu.org: could not connect to host
batteryservice.ru: did not receive HSTS header
baud.ninja: could not connect to host
@@ -1685,6 +1706,7 @@ baumstark.ca: could not connect to host
bayinstruments.com: could not connect to host
bayrisch-fuer-anfaenger.de: did not receive HSTS header
baysse.eu: did not receive HSTS header
+bazaarcompass.com: did not receive HSTS header
bazarstupava.sk: could not connect to host
bazisszoftver.hu: could not connect to host
bb-shiokaze.jp: did not receive HSTS header
@@ -1701,6 +1723,7 @@ bbwfacesitting.us: could not connect to host
bbwfacesitting.xyz: could not connect to host
bbwfight.xyz: could not connect to host
bbwteens.org: could not connect to host
+bc-personal.ch: did not receive HSTS header
bc416.com: did not receive HSTS header
bc418.com: did not receive HSTS header
bc419.com: did not receive HSTS header
@@ -1716,7 +1739,7 @@ bcodeur.com: did not receive HSTS header
bcradio.org: could not connect to host
bcsytv.com: could not connect to host
bcweightlifting.ca: could not connect to host
-bdata.cl: could not connect to host
+bdata.cl: did not receive HSTS header
bddemir.com: could not connect to host
bde-epitech.fr: could not connect to host
bdenzer.com: did not receive HSTS header
@@ -1742,13 +1765,14 @@ bebeefy.uk: could not connect to host
bebesurdoue.com: could not connect to host
beccajoshwedding.com: could not connect to host
becklove.cn: could not connect to host
+becoast.fr: could not connect to host
becubed.co: could not connect to host
bedabox.com: did not receive HSTS header
bedeta.de: could not connect to host
bedouille.com: could not connect to host
bedreid.dk: did not receive HSTS header
bedrijvenadministratie.nl: could not connect to host
-beelen.fr: could not connect to host
+bee.supply: could not connect to host
beerboutique.com.br: could not connect to host
beermedlar.com: could not connect to host
beersandco.ch: could not connect to host
@@ -1774,6 +1798,7 @@ belwederczykow.eu: could not connect to host
bemcorp.de: did not receive HSTS header
bemvindoaolar.com.br: did not receive HSTS header
bemyvictim.com: max-age too low: 2678400
+benchcast.com: could not connect to host
bendechrai.com: did not receive HSTS header
benedikt-tuchen.de: did not receive HSTS header
benediktdichgans.de: did not receive HSTS header
@@ -1793,6 +1818,7 @@ benny003.de: could not connect to host
benohead.com: did not receive HSTS header
bentphotos.se: could not connect to host
benwattie.com: did not receive HSTS header
+benzi.io: could not connect to host
benzkosmetik.de: did not receive HSTS header
benzou-space.com: could not connect to host
beourvictim.com: max-age too low: 2678400
@@ -1806,7 +1832,6 @@ beretech.fr: could not connect to host
berger.work: could not connect to host
bergfex.at: did not receive HSTS header
bergland-seefeld.at: did not receive HSTS header
-bergstoneware.com: could not connect to host
berhampore-gateway.tk: could not connect to host
berlatih.com: did not receive HSTS header
berlin-kohlefrei.de: could not connect to host
@@ -1827,6 +1852,7 @@ besixdouze.world: could not connect to host
beslider.com: could not connect to host
besnik.de: could not connect to host
besola.de: could not connect to host
+bespaarnu.click: could not connect to host
best-wedding-quotes.com: could not connect to host
bestattorney.com: did not receive HSTS header
bestbeards.ca: could not connect to host
@@ -1841,13 +1867,15 @@ bestmodels.su: did not receive HSTS header
bestof1001.de: could not connect to host
bestorangeseo.com: could not connect to host
bestpaintings.nl: did not receive HSTS header
+bestparking.xyz: could not connect to host
+bestpig.fr: could not connect to host
bestschools.top: did not receive HSTS header
bestwarezone.com: could not connect to host
bet990.com: could not connect to host
betaclean.fr: did not receive HSTS header
betafive.net: could not connect to host
betakah.net: could not connect to host
-betamint.org: did not receive HSTS header
+betamint.org: could not connect to host
betcafearena.ro: did not receive HSTS header
betformular.com: could not connect to host
bethditto.com: did not receive HSTS header
@@ -1870,7 +1898,7 @@ bexit-security.eu: could not connect to host
bexit-security.nl: could not connect to host
bexithosting.nl: could not connect to host
bey.io: could not connect to host
-beylikduzum.com: did not receive HSTS header
+beylikduzum.com: could not connect to host
beyond-edge.com: could not connect to host
beyuna.co.uk: did not receive HSTS header
beyuna.eu: did not receive HSTS header
@@ -1925,6 +1953,7 @@ bigshinylock.minazo.net: could not connect to host
bigshort.org: could not connect to host
biguixhe.net: could not connect to host
bijoux.com.br: could not connect to host
+bijouxbrasil.com.br: could not connect to host
bijouxdegriffe.com.br: could not connect to host
bijugeral.com.br: could not connect to host
bikelifetvkidsquads.co.uk: could not connect to host
@@ -1935,17 +1964,20 @@ biletua.de: could not connect to host
biletyplus.com: could not connect to host
biletyplus.ru: did not receive HSTS header
bill-nye-the.science: did not receive HSTS header
+billaud.eu.org: could not connect to host
billdestler.com: did not receive HSTS header
billigssl.dk: did not receive HSTS header
billkiss.com: could not connect to host
billninja.com: did not receive HSTS header
+billpro.com.au: could not connect to host
billrobinson.io: could not connect to host
billrusling.com: could not connect to host
binam.center: could not connect to host
binarization.net: could not connect to host
binarization.org: did not receive HSTS header
binaryabstraction.com: could not connect to host
-binaryfigments.com: max-age too low: 86400
+binaryevolved.com: could not connect to host
+binaryfigments.com: max-age too low: 7776000
binderapp.net: could not connect to host
bingcheung.com: could not connect to host
bingcheung.org: could not connect to host
@@ -1954,24 +1986,19 @@ bingo9.net: could not connect to host
bingofriends.com: could not connect to host
bingostars.com: did not receive HSTS header
binimo.com: could not connect to host
-binsp.net: could not connect to host
biocrafting.net: could not connect to host
bioespuna.eu: did not receive HSTS header
biofam.ru: did not receive HSTS header
-bioknowme.com: did not receive HSTS header
-biologis.ch: could not connect to host
biomax-mep.com.br: did not receive HSTS header
bionicspirit.com: did not receive HSTS header
biophysik-ssl.de: did not receive HSTS header
biopreferred.gov: could not connect to host
-biospeak.solutions: could not connect to host
biou.me: could not connect to host
biovalue.eu: could not connect to host
bip.gov.sa: could not connect to host
birdandbranchnyc.com: max-age too low: 43200
birkengarten.ch: could not connect to host
birkman.com: did not receive HSTS header
-bischoff-mathey.family: could not connect to host
biscuits-rec.com: could not connect to host
biscuits-shop.com: could not connect to host
bismarck.moe: did not receive HSTS header
@@ -1982,6 +2009,7 @@ bitbit.org: did not receive HSTS header
bitbr.net: could not connect to host
bitcantor.com: did not receive HSTS header
bitchan.it: could not connect to host
+bitclubfun.com: did not receive HSTS header
bitcoin-casino-no-deposit-bonus.com: max-age too low: 0
bitcoin-class.com: could not connect to host
bitcoin-daijin.com: could not connect to host
@@ -2014,8 +2042,6 @@ bitmexin.com: could not connect to host
bitnet.io: did not receive HSTS header
bitplay.space: could not connect to host
bitpod.de: could not connect to host
-bitpoll.de: could not connect to host
-bitpoll.org: could not connect to host
bitrage.de: could not connect to host
bitraum.io: could not connect to host
bitroll.com: could not connect to host
@@ -2035,7 +2061,7 @@ bizon.sk: did not receive HSTS header
bizpare.com: did not receive HSTS header
bizzartech.com: did not receive HSTS header
bizzybeebouncers.co.uk: could not connect to host
-bjgongyi.com: could not connect to host
+bjgongyi.com: did not receive HSTS header
bjrn.io: could not connect to host
bjtxl.cn: could not connect to host
bk-wife.com: could not connect to host
@@ -2055,7 +2081,7 @@ blacklightparty.be: could not connect to host
blackly.uk: max-age too low: 0
blackmagic.sk: could not connect to host
blackmirror.com.au: did not receive HSTS header
-blackpayment.ru: did not receive HSTS header
+blackpayment.ru: could not connect to host
blackphantom.de: could not connect to host
blackscreen.me: could not connect to host
blackunicorn.wtf: could not connect to host
@@ -2068,14 +2094,17 @@ blazeit.io: could not connect to host
bleep.zone: could not connect to host
blendlecdn.com: could not connect to host
blenheimchalcot.com: did not receive HSTS header
+blessedearth.com.au: max-age too low: 7889238
blessnet.jp: did not receive HSTS header
blha303.com.au: could not connect to host
+bliker.ga: could not connect to host
blikund.swedbank.se: did not receive HSTS header
blindaryproduction.tk: could not connect to host
blindsexdate.nl: did not receive HSTS header
blinkenlight.co.uk: could not connect to host
blinkenlight.com.au: could not connect to host
blmiller.com: did not receive HSTS header
+blockchainced.com: could not connect to host
blocksatz-medien.de: could not connect to host
blockshopauto.com: could not connect to host
blog-ritaline.com: could not connect to host
@@ -2106,18 +2135,20 @@ blucas.org: did not receive HSTS header
blue17.co.uk: did not receive HSTS header
bluebill.net: did not receive HSTS header
bluecon.eu: did not receive HSTS header
-bluedata.ltd: could not connect to host
bluefinger.nl: did not receive HSTS header
blueglobalmedia.com: could not connect to host
-bluehawk.cloud: did not receive HSTS header
+bluehawk.cloud: could not connect to host
+bluehelixmusic.com: could not connect to host
blueliv.com: did not receive HSTS header
bluemoonroleplaying.com: could not connect to host
bluepoint.foundation: could not connect to host
bluepoint.institute: could not connect to host
+blueprintloans.co.uk: did not receive HSTS header
blueridgesecuritycameras.com: did not receive HSTS header
bluescloud.xyz: could not connect to host
bluesecure.com.br: did not receive HSTS header
bluetenmeer.com: did not receive HSTS header
+blueyed.eu: could not connect to host
bluezonehealth.co.uk: did not receive HSTS header
blui.cf: max-age too low: 1209600
bluketing.com: did not receive HSTS header
@@ -2132,7 +2163,6 @@ blutopia.xyz: did not receive HSTS header
blutroyal.de: could not connect to host
blvdmb.com: did not receive HSTS header
bm-i.ch: could not connect to host
-bm-immo.ch: could not connect to host
bm-trading.nl: did not receive HSTS header
bmet.de: did not receive HSTS header
bmoattachments.org: did not receive HSTS header
@@ -2141,7 +2171,6 @@ bnboy.cn: could not connect to host
bngsecure.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
bnhlibrary.com: did not receive HSTS header
board-buy.ru: could not connect to host
-bobaobei.net: could not connect to host
bobaobei.org: could not connect to host
bobep.ru: could not connect to host
boboates.com: did not receive HSTS header
@@ -2154,14 +2183,13 @@ bodyweightsolution.com: could not connect to host
boel073.nl: did not receive HSTS header
boensou.com: did not receive HSTS header
bohaishibei.com: did not receive HSTS header
-bohan.co: could not connect to host
+bohan.co: did not receive HSTS header
bohan.life: could not connect to host
bohyn.cz: could not connect to host
boiadeirodeberna.com: could not connect to host
boilesen.com: did not receive HSTS header
bokeyy.com: could not connect to host
bolainfoasia.com: did not receive HSTS header
-bolivarfm.com.ve: did not receive HSTS header
boltdata.io: could not connect to host
boltn.uk: did not receive HSTS header
bolwerk.com.br: did not receive HSTS header
@@ -2172,6 +2200,7 @@ bonapp.restaurant: could not connect to host
bondagefetishstore.com: could not connect to host
bondtofte.dk: did not receive HSTS header
boneko.de: did not receive HSTS header
+bonesserver.com: could not connect to host
bonigo.de: did not receive HSTS header
bonitabrazilian.co.nz: did not receive HSTS header
bonnin.fr: did not receive HSTS header
@@ -2186,12 +2215,15 @@ booked.holiday: could not connect to host
bookingentertainment.com: did not receive HSTS header
bookmakersfreebets.com.au: could not connect to host
bookofraonlinecasinos.com: could not connect to host
+bookourdjs.com: could not connect to host
bookreport.ga: could not connect to host
bookwitty.social: could not connect to host
boomerang.com: did not receive HSTS header
boomsaki.com: did not receive HSTS header
boomsakis.com: did not receive HSTS header
+boonehenry.co.uk: did not receive HSTS header
boosterlearnpro.com: did not receive HSTS header
+boostgame.win: could not connect to host
boote.wien: did not receive HSTS header
booter.es: could not connect to host
booth.in.th: could not connect to host
@@ -2223,14 +2255,15 @@ bouncecoffee.com: did not receive HSTS header
bouncehighpeak.co.uk: could not connect to host
bouncelanduk.co.uk: did not receive HSTS header
bouncemasters.co.uk: could not connect to host
+bouncewithbovells.com: could not connect to host
bouncing4joy.co.uk: could not connect to host
bouncingbuzzybees.co.uk: could not connect to host
bouncycastleandparty.co.uk: could not connect to host
-bouncycastlehireauckland.co.nz: could not connect to host
bouncycastlehiremedway.com: did not receive HSTS header
+bouncycastles.me: could not connect to host
bouwbedrijfpurmerend.nl: did not receive HSTS header
bowlsheet.com: did not receive HSTS header
-bownty.pt: could not connect to host
+bownty.pt: max-age too low: 0
boxcryptor.com: did not receive HSTS header
boxdevigneron.fr: could not connect to host
boxing-austria.eu: did not receive HSTS header
@@ -2268,6 +2301,7 @@ brand-foo.com: did not receive HSTS header
brand-foo.jp: did not receive HSTS header
brand-foo.net: did not receive HSTS header
brandnewdays.nl: could not connect to host
+brando753.xyz: could not connect to host
brandon.so: could not connect to host
brandons.site: could not connect to host
brandontaylor-black.com: could not connect to host
@@ -2281,10 +2315,10 @@ breatheav.com: did not receive HSTS header
breatheproduction.com: did not receive HSTS header
breeswish.org: did not receive HSTS header
bremensaki.com: max-age too low: 2592000
-brenden.net.au: could not connect to host
bress.cloud: could not connect to host
brettcornwall.com: did not receive HSTS header
brettpemberton.xyz: did not receive HSTS header
+brettw.xyz: did not receive HSTS header
brfvh24.se: could not connect to host
brianpcurran.com: did not receive HSTS header
brickoo.com: could not connect to host
@@ -2292,7 +2326,6 @@ brickwerks.io: could not connect to host
brickyardbuffalo.com: did not receive HSTS header
bridgeout.com: could not connect to host
bridholm.se: could not connect to host
-briggsleroux.com: did not receive HSTS header
brightfuturemadebyme.com: could not connect to host
brightstarkids.co.uk: did not receive HSTS header
brightstarkids.com.au: did not receive HSTS header
@@ -2312,6 +2345,7 @@ brivadois.ovh: did not receive HSTS header
brix.ninja: did not receive HSTS header
brks.xyz: could not connect to host
brmascots.com: could not connect to host
+broersma.com: could not connect to host
broerweb.nl: could not connect to host
broken-oak.com: could not connect to host
brookechase.com: did not receive HSTS header
@@ -2327,13 +2361,13 @@ brunix.net: could not connect to host
brunoonline.co.uk: could not connect to host
brunoramos.com: could not connect to host
brunoramos.org: could not connect to host
-brunosouza.org: could not connect to host
bryancastillo.site: could not connect to host
bryanshearer.accountant: did not receive HSTS header
bryn.xyz: could not connect to host
brynnan.nl: could not connect to host
brztec.com: did not receive HSTS header
-bsagan.fr: did not receive HSTS header
+bs.sb: could not connect to host
+bsagan.fr: could not connect to host
bsalyzer.com: could not connect to host
bsc01.dyndns.org: could not connect to host
bsdtips.com: could not connect to host
@@ -2354,6 +2388,8 @@ btcgo.nl: did not receive HSTS header
btcp.space: could not connect to host
btcpot.ltd: did not receive HSTS header
btku.org: could not connect to host
+btserv.de: did not receive HSTS header
+btth.live: could not connect to host
btxiaobai.com: did not receive HSTS header
bubba.cc: could not connect to host
buben.tech: did not receive HSTS header
@@ -2361,15 +2397,18 @@ bubulazi.com: did not receive HSTS header
bubulazy.com: did not receive HSTS header
buchheld.at: could not connect to host
buchverlag-scholz.de: did not receive HSTS header
+buck.com: could not connect to host
bucket.tk: could not connect to host
buckmulligans.com: did not receive HSTS header
+budaev-shop.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
buddhistische-weisheiten.org: could not connect to host
budgetenergievriendenvoordeel.nl: could not connect to host
budgetthostels.nl: did not receive HSTS header
budskap.eu: could not connect to host
buenosairesestetica.com.ar: could not connect to host
buenotour.ru: did not receive HSTS header
-buettgens.net: max-age too low: 2592000
+buergerdialog.net: could not connect to host
+buergerhaushalt.com: did not receive HSTS header
buffalodrinkinggame.beer: did not receive HSTS header
bugtrack.co.uk: did not receive HSTS header
bugtrack.io: could not connect to host
@@ -2397,6 +2436,7 @@ bullbits.com: max-age too low: 0
bulldoghire.co.uk: did not receive HSTS header
bulletbabu.com: could not connect to host
bulletpoint.cz: could not connect to host
+bullpay.com: did not receive HSTS header
bullterrier.me: could not connect to host
bulmafox.com: could not connect to host
bulmastife.com.br: could not connect to host
@@ -2438,15 +2478,15 @@ butchersworkshop.com: did not receive HSTS header
butian518.com: did not receive HSTS header
butt.repair: could not connect to host
buttercoin.com: could not connect to host
+buttercupstraining.co.uk: did not receive HSTS header
butterfieldstraining.com: could not connect to host
-buttermilk.cf: could not connect to host
buturyu.org: did not receive HSTS header
buvinghausen.com: max-age too low: 86400
buybaby.eu: could not connect to host
-buybike.shop: could not connect to host
buydesired.com: did not receive HSTS header
buyessay.org: could not connect to host
buyessays.net: could not connect to host
+buyessayscheap.com: max-age too low: 604800
buyfox.de: could not connect to host
buyharpoon.com: could not connect to host
buyingsellingflorida.com: could not connect to host
@@ -2467,18 +2507,17 @@ bwin8603.com: did not receive HSTS header
bwin8604.com: did not receive HSTS header
bwin8605.com: did not receive HSTS header
bwin8606.com: did not receive HSTS header
-bwwb.nu: could not connect to host
bx-web.com: did not receive HSTS header
bxdev.me: could not connect to host
by1896.com: could not connect to host
by1898.com: could not connect to host
by1899.com: could not connect to host
by4cqb.cn: could not connect to host
-by77.com: did not receive HSTS header
+by77.com: could not connect to host
by777.com: did not receive HSTS header
+bydisk.com: could not connect to host
byji.com: could not connect to host
byken.cn: did not receive HSTS header
-bynet.cz: could not connect to host
bypass.kr: could not connect to host
bypassed.bid: could not connect to host
bypassed.cc: could not connect to host
@@ -2499,18 +2538,18 @@ bypassed.today: could not connect to host
bypassed.works: could not connect to host
bypassed.world: could not connect to host
bypro.xyz: could not connect to host
-byronwade.com: max-age too low: 7889238
+byronwade.com: did not receive HSTS header
byte.chat: did not receive HSTS header
byte.wtf: did not receive HSTS header
-bytelog.org: could not connect to host
+bytelog.org: did not receive HSTS header
bytesatwork.eu: could not connect to host
byteshift.ca: could not connect to host
bytesofcode.de: could not connect to host
bytesund.biz: could not connect to host
byteturtle.eu: did not receive HSTS header
byurudraw.pics: could not connect to host
-bzhub.bid: did not receive HSTS header
c-rickroll-v.pw: could not connect to host
+c0rn3j.com: could not connect to host
c12discountonline.com: did not receive HSTS header
c16t.uk: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
c1yd3i.me: could not connect to host
@@ -2520,20 +2559,22 @@ c3-compose.com: could not connect to host
c3.pm: could not connect to host
c3b.info: could not connect to host
c3bbs.com: could not connect to host
+c3hv.cn: could not connect to host
c3ie.com: did not receive HSTS header
c4.hk: could not connect to host
cabsites.com: could not connect to host
cabusar.fr: could not connect to host
+cachethome.com: could not connect to host
cachethq.io: did not receive HSTS header
+cackette.com: could not connect to host
caconnect.org: could not connect to host
cadao.me: did not receive HSTS header
-cadburymovies.in.net: could not connect to host
+cadburymovies.in.net: did not receive HSTS header
cadenadg.gr: did not receive HSTS header
caerostris.com: could not connect to host
caesreon.com: could not connect to host
cafe-murr.de: did not receive HSTS header
cafe-scientifique.org.ec: could not connect to host
-cafe-service.ru: could not connect to host
cafechesscourt.com: could not connect to host
cafefresco.pe: did not receive HSTS header
caferagazzi.de: did not receive HSTS header
@@ -2543,13 +2584,14 @@ caim.cz: did not receive HSTS header
caipai.fm: could not connect to host
cairnterrier.com.br: could not connect to host
cais.de: did not receive HSTS header
-cajapopcorn.com: could not connect to host
-cake-time.co.uk: could not connect to host
+caizx.com: did not receive HSTS header
+cajapopcorn.com: max-age too low: 0
cake.care: could not connect to host
cal.goip.de: could not connect to host
calcularpagerank.com.br: could not connect to host
calculatoaresecondhand.xyz: could not connect to host
-calebmorris.com: did not receive HSTS header
+caleb.host: did not receive HSTS header
+calebmorris.com: max-age too low: 60
calgaryconstructionjobs.com: did not receive HSTS header
callabs.net: could not connect to host
callanbryant.co.uk: did not receive HSTS header
@@ -2572,15 +2614,17 @@ cambridgeanalytica.org: did not receive HSTS header
camda.online: could not connect to host
camisadotorcedor.com.br: could not connect to host
camjackson.net: did not receive HSTS header
+camjobs.net: did not receive HSTS header
cammarkets.com: could not connect to host
-camomile.desi: could not connect to host
campaignelves.com: did not receive HSTS header
campbellsoftware.co.uk: could not connect to host
+campeoesdofutebol.com.br: did not receive HSTS header
campfire.co.il: did not receive HSTS header
campfourpaws.com: did not receive HSTS header
campingcarlovers.com: could not connect to host
campingdreams.com: did not receive HSTS header
campus-cybersecurity.team: did not receive HSTS header
+campusportalng.com: did not receive HSTS header
camsanalytics.com: could not connect to host
camshowhub.com: could not connect to host
canadiangamblingchoice.com: did not receive HSTS header
@@ -2597,16 +2641,16 @@ canterbury.ws: could not connect to host
canyonshoa.com: did not receive HSTS header
caodecristachines.com.br: could not connect to host
caoyu.info: did not receive HSTS header
+capacent.is: did not receive HSTS header
capacitacionyautoempleo.com: did not receive HSTS header
capecycles.co.za: did not receive HSTS header
+capellidipremoli.com: did not receive HSTS header
capeyorkfire.com.au: did not receive HSTS header
-capitalonecardservice.com: could not connect to host
-captainark.net: could not connect to host
+capitalonecardservice.com: did not receive HSTS header
captchatheprize.com: could not connect to host
captianseb.de: could not connect to host
captivatedbytabrett.com: could not connect to host
captivationscience.com: could not connect to host
-captivationtheory.com: could not connect to host
capturethepen.co.uk: could not connect to host
car-navi.ph: did not receive HSTS header
car-rental24.com: did not receive HSTS header
@@ -2615,19 +2659,20 @@ carano-service.de: did not receive HSTS header
caraudio69.cz: could not connect to host
card-cashing.com: max-age too low: 0
card-toka.jp: could not connect to host
+cardelmar.de: did not receive HSTS header
+cardexchangesolutions.com: did not receive HSTS header
cardloan-manual.net: could not connect to host
cardoni.net: did not receive HSTS header
cardstream.com: did not receive HSTS header
cardurl.com: did not receive HSTS header
cardwars.hu: could not connect to host
careeraid.in: could not connect to host
-careerstuds.com: could not connect to host
+careerstuds.com: did not receive HSTS header
careplasticsurgery.com: did not receive HSTS header
carey.bio: did not receive HSTS header
carif-idf.net: did not receive HSTS header
carif-idf.org: did not receive HSTS header
carlgo11.com: did not receive HSTS header
-carlo.mx: did not receive HSTS header
carlolly.co.uk: could not connect to host
carlosalves.info: could not connect to host
carloshmm.com: could not connect to host
@@ -2635,18 +2680,16 @@ carloshmm.stream: could not connect to host
carlovanwyk.com: could not connect to host
carlsbouncycastlesandhottubs.co.uk: did not receive HSTS header
carlscatering.com: did not receive HSTS header
-carol-lambert.com: could not connect to host
caroli.biz: could not connect to host
carpliyz.com: did not receive HSTS header
carrando.de: could not connect to host
carredejardin.com: could not connect to host
carroarmato0.be: did not receive HSTS header
carsforbackpackers.com: could not connect to host
-carsten.pw: could not connect to host
+carsten.pw: did not receive HSTS header
carstenfeuls.de: did not receive HSTS header
carterorland.com: could not connect to host
cartesunicef.be: did not receive HSTS header
-carun.us: did not receive HSTS header
carwashvapeur.be: could not connect to host
casadellecose.com: did not receive HSTS header
casajardininsecticidas.com: did not receive HSTS header
@@ -2660,15 +2703,18 @@ cashfortulsahouses.com: could not connect to host
cashless.fr: did not receive HSTS header
cashmyphone.ch: could not connect to host
cashsector.ga: could not connect to host
+casinolegal.pt: did not receive HSTS header
casinolistings.com: could not connect to host
casinoluck.com: could not connect to host
casinoreal.com: could not connect to host
casinostest.com: could not connect to host
casionova.org: did not receive HSTS header
casioshop.eu: did not receive HSTS header
+casjay.com: did not receive HSTS header
casovi.cf: could not connect to host
caspicards.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
castagnonavocats.com: did not receive HSTS header
+castlejackpot.com: did not receive HSTS header
cata.ga: could not connect to host
catalin.pw: did not receive HSTS header
catarsisvr.com: could not connect to host
@@ -2693,21 +2739,20 @@ cavedroid.xyz: could not connect to host
cavern.tv: did not receive HSTS header
cayafashion.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
cayounglab.co.jp: did not receive HSTS header
-cazes.info: did not receive HSTS header
cbamo.org: did not receive HSTS header
cbengineeringinc.com: max-age too low: 86400
-cbhq.net: could not connect to host
cbi-epa.gov: could not connect to host
cc2729.com: did not receive HSTS header
ccayearbook.com: could not connect to host
ccblog.de: did not receive HSTS header
-ccl-sti.ch: could not connect to host
+ccl-sti.ch: did not receive HSTS header
ccretreatandfarm.com: did not receive HSTS header
cctech.ph: could not connect to host
cctld.com: could not connect to host
ccv.eu: did not receive HSTS header
cd0.us: could not connect to host
cdcpartners.gov: could not connect to host
+cdeck.net: could not connect to host
cdkeyworld.de: did not receive HSTS header
cdmhp.org.nz: could not connect to host
cdmon.tech: could not connect to host
@@ -2731,6 +2776,7 @@ celigo.com: did not receive HSTS header
celina-reads.de: could not connect to host
cellartracker.com: could not connect to host
cellsites.nz: could not connect to host
+celtadigital.com: did not receive HSTS header
cencalvia.org: could not connect to host
centennialrewards.com: did not receive HSTS header
centerforpolicy.org: could not connect to host
@@ -2744,9 +2790,10 @@ centralvoice.org: could not connect to host
centralync.com: could not connect to host
centrepoint-community.com: could not connect to host
centricbeats.com: did not receive HSTS header
-centrodoinstalador.com.br: did not receive HSTS header
+centrodoinstalador.com.br: could not connect to host
centrolavoro.org: did not receive HSTS header
centsforchange.net: could not connect to host
+century-group.com: could not connect to host
ceoimon.com: did not receive HSTS header
cercevelet.com: did not receive HSTS header
ceres1.space: did not receive HSTS header
@@ -2757,7 +2804,7 @@ cernega.ro: did not receive HSTS header
cerpa.com.br: did not receive HSTS header
cert.se: max-age too low: 2628001
certcenter.fr: could not connect to host
-certifi.io: could not connect to host
+certifi.io: did not receive HSTS header
certifix.eu: did not receive HSTS header
certly.io: could not connect to host
certmgr.org: could not connect to host
@@ -2782,8 +2829,8 @@ chabaojia.com: did not receive HSTS header
chadklass.com: could not connect to host
chahub.com: could not connect to host
chainmonitor.com: could not connect to host
-chaldeen.pro: did not receive HSTS header
-chalker.io: could not connect to host
+chairinstitute.com: did not receive HSTS header
+chaldeen.pro: could not connect to host
challengeskins.com: could not connect to host
chameleon-ents.co.uk: could not connect to host
chameth.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
@@ -2791,7 +2838,7 @@ chamilo.org: did not receive HSTS header
champ.dog: did not receive HSTS header
championnat-romand-cuisiniers-amateurs.ch: could not connect to host
championsofregnum.com: did not receive HSTS header
-chancat.blog: could not connect to host
+chancat.blog: did not receive HSTS header
chandlerredding.com: could not connect to host
changelab.cc: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
changetip.com: did not receive HSTS header
@@ -2800,7 +2847,6 @@ channellife.asia: did not receive HSTS header
channellife.co.nz: did not receive HSTS header
channellife.com.au: did not receive HSTS header
channyc.com: did not receive HSTS header
-chanoyu-gakkai.jp: could not connect to host
chanshiyu.com: did not receive HSTS header
chaos.fail: could not connect to host
chaospott.de: did not receive HSTS header
@@ -2811,6 +2857,7 @@ charge.co: could not connect to host
chargejuice.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
charityclear.com: could not connect to host
charitystreet.co.uk: could not connect to host
+charlesbwise.com: did not receive HSTS header
charlestonsecuritysystems.net: did not receive HSTS header
charliemcneive.com: could not connect to host
charlimarie.com: did not receive HSTS header
@@ -2825,11 +2872,11 @@ chaska.co.za: did not receive HSTS header
chasse-et-plaisir.com: did not receive HSTS header
chat-porc.eu: did not receive HSTS header
chatbot.me: did not receive HSTS header
+chatbot.one: could not connect to host
chatbots.email: could not connect to host
-chateau-belvoir.com: did not receive HSTS header
+chateau-belvoir.com: could not connect to host
chateauconstellation.ch: did not receive HSTS header
chateaudevaugrigneuse.com: did not receive HSTS header
-chatint.com: did not receive HSTS header
chatnbook.com: could not connect to host
chatup.cf: could not connect to host
chatxp.com: could not connect to host
@@ -2848,7 +2895,8 @@ chebwebb.com: could not connect to host
checkhost.org: could not connect to host
checkmatewebsolutions.com: max-age too low: 0
checkout.google.com: could not connect to host (error ignored - included regardless)
-checkyourmeds.com: could not connect to host
+checkras.tk: could not connect to host
+checkyourmeds.com: did not receive HSTS header
cheekylittlerascals.co.uk: did not receive HSTS header
cheerflow.com: could not connect to host
cheesefusion.com: could not connect to host
@@ -2856,7 +2904,6 @@ cheesetart.my: could not connect to host
cheesypicsbooths.co.uk: could not connect to host
cheetah85.de: could not connect to host
chefgalles.com.br: could not connect to host
-chehalemgroup.com: did not receive HSTS header
chejianer.cn: could not connect to host
chellame.com: could not connect to host
chellame.fr: could not connect to host
@@ -2865,6 +2912,7 @@ chemicalguys-ruhrpott.de: could not connect to host
chenfengyi.com: could not connect to host
chengtongled.com: did not receive HSTS header
chensir.net: could not connect to host
+cheolguso.com: could not connect to host
chepaofen.com: did not receive HSTS header
cherekerry.com: could not connect to host
cherrydropscandycarts.co.uk: did not receive HSTS header
@@ -2881,8 +2929,7 @@ chikan-beacon.net: could not connect to host
chikatomo-ryugaku.com: did not receive HSTS header
chikory.com: could not connect to host
childcaresolutionscny.org: did not receive HSTS header
-childrendeservebetter.org: did not receive HSTS header
-childrens-room.com: did not receive HSTS header
+childrendeservebetter.org: could not connect to host
chilli943.info: did not receive HSTS header
chimparoo.ca: did not receive HSTS header
china-dhl.org: could not connect to host
@@ -2896,13 +2943,13 @@ chloeallison.co.uk: could not connect to host
chloehorler.com: could not connect to host
chlouis.net: could not connect to host
chm.vn: did not receive HSTS header
-chmielarz.it: could not connect to host
chocolat-suisse.ch: could not connect to host
+chocotough.nl: did not receive HSTS header
chodobien.com: could not connect to host
chodocu.com: did not receive HSTS header
choe.fi: could not connect to host
choiralberta.ca: did not receive HSTS header
-chonghe.org: did not receive HSTS header
+chollima.pro: could not connect to host
chontalpa.pw: could not connect to host
chopperforums.com: could not connect to host
chordso.com: did not receive HSTS header
@@ -2911,8 +2958,6 @@ choruscrowd.com: could not connect to host
chotu.net: could not connect to host
chris-web.info: could not connect to host
chrisandsarahinasia.com: could not connect to host
-chrisb.me: did not receive HSTS header
-chrisb.xyz: did not receive HSTS header
chrisbrakebill.com: did not receive HSTS header
chrisbrown.id.au: could not connect to host
chrisebert.net: could not connect to host
@@ -2922,6 +2967,7 @@ chriskirchner.de: did not receive HSTS header
chriskyrouac.com: could not connect to host
chrisopperwall.com: did not receive HSTS header
chrisself.xyz: could not connect to host
+christec.net: did not receive HSTS header
christiaandruif.nl: could not connect to host
christianbro.gq: could not connect to host
christianhoffmann.info: could not connect to host
@@ -2933,16 +2979,17 @@ christophebarbezat.ch: could not connect to host
christophercolumbusfoundation.gov: could not connect to host
christophersole.com: could not connect to host
christophheich.me: did not receive HSTS header
+christophkreileder.com: could not connect to host
chrisupjohn.com: could not connect to host
chrisupjohn.xyz: could not connect to host
chrisvicmall.com: did not receive HSTS header
-chriswbarry.com: did not receive HSTS header
chromaryu.net: could not connect to host
chromaxa.com: could not connect to host
chrome: 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)
-chronogram.me: did not receive HSTS header
+chronic101.xyz: could not connect to host
+chronogram.me: could not connect to host
chronoproject.com: did not receive HSTS header
chrst.ph: could not connect to host
chs.us: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
@@ -2956,12 +3003,13 @@ churchux.co: did not receive HSTS header
churchwebcanada.ca: did not receive HSTS header
churchwebsupport.com: did not receive HSTS header
churrasqueirafacil.com.br: could not connect to host
+chziyue.com: could not connect to host
ci-labo.com.tw: max-age too low: 7889238
-ci-suite.com: could not connect to host
cianmawhinney.xyz: could not connect to host
cidadedopoker.com.br: did not receive HSTS header
ciderclub.com: could not connect to host
cidr.ml: could not connect to host
+cielly.com: could not connect to host
cienbeaute-lidl.fr: could not connect to host
cigarblogs.net: could not connect to host
cigarterminal.com: could not connect to host
@@ -2970,22 +3018,24 @@ ciicutini.ro: did not receive HSTS header
cim2b.de: could not connect to host
cimalando.eu: could not connect to host
cinartelorgu.com: did not receive HSTS header
+cindey.io: could not connect to host
cinefilia.tk: could not connect to host
cinelite.club: could not connect to host
cinema5.ru: did not receive HSTS header
cinemaclub.co: could not connect to host
+ciner.is: could not connect to host
cinerama.com.br: did not receive HSTS header
cintdirect.com: could not connect to host
-cioconference.co.nz: did not receive HSTS header
+cioconference.co.nz: could not connect to host
cipher.co.th: did not receive HSTS header
cipher.land: could not connect to host
-cipherboy.com: could not connect to host
cipherli.st: did not receive HSTS header
ciplanutrition.com: could not connect to host
cipriano.nl: did not receive HSTS header
cira.email: could not connect to host
circ-logic.com: did not receive HSTS header
circlebox.rocks: could not connect to host
+cirfi.com: could not connect to host
cirrohost.com: did not receive HSTS header
ciscohomeanalytics.com: could not connect to host
ciscommerce.net: could not connect to host
@@ -2997,6 +3047,7 @@ cityofeastpointemi.gov: could not connect to host
cityoflaurel.org: did not receive HSTS header
cityofwadley-ga.gov: could not connect to host
citywalkr.com: could not connect to host
+ciubotaru.tk: could not connect to host
ciuciucadou.ro: could not connect to host
cium.ru: could not connect to host
civicunicorn.com: could not connect to host
@@ -3006,6 +3057,7 @@ cjessett.com: max-age too low: 0
cjtkfan.club: could not connect to host
ckcameron.net: could not connect to host
ckp.io: could not connect to host
+clad.cf: could not connect to host
claimit.ml: could not connect to host
clan-ww.com: did not receive HSTS header
clapping-rhymes.com: could not connect to host
@@ -3024,6 +3076,7 @@ classifiedssa.co.za: could not connect to host
claster.it: did not receive HSTS header
claudearpel.fr: did not receive HSTS header
claudio4.com: did not receive HSTS header
+clauseriksen.net: could not connect to host
claytoncondon.com: could not connect to host
clcleaningco.com: could not connect to host
cleanexperts.co.uk: could not connect to host
@@ -3035,6 +3088,7 @@ clearc.tk: could not connect to host
clearchatsandbox.com: could not connect to host
clearsky.me: did not receive HSTS header
clearviewwealthprojector.com.au: could not connect to host
+clementfevrier.fr: could not connect to host
clemovementlaw.com: could not connect to host
clerkendweller.uk: could not connect to host
clevelandokla.com: could not connect to host
@@ -3050,6 +3104,7 @@ clickforclever.com: did not receive HSTS header
clickgram.biz: could not connect to host
clickomobile.com: did not receive HSTS header
clicks.co.za: max-age too low: 1800
+clicksaveandprint.com: could not connect to host
clicktenisdemesa.com.br: did not receive HSTS header
clicn.bio: could not connect to host
clicnbio.com: could not connect to host
@@ -3058,11 +3113,11 @@ clinia.ca: did not receive HSTS header
clinicaferrusbratos.com: did not receive HSTS header
clinicasilos.com: did not receive HSTS header
cliniko.com: did not receive HSTS header
-cliniquecomplementaire.com: could not connect to host
clintonbloodworth.com: could not connect to host
clintonbloodworth.io: could not connect to host
clintwilson.technology: max-age too low: 2592000
clipped4u.com: could not connect to host
+clnet.com.au: did not receive HSTS header
clod-hacking.com: could not connect to host
cloghercastles.co.uk: did not receive HSTS header
clorik.com: could not connect to host
@@ -3072,6 +3127,7 @@ cloud-crowd.com.au: did not receive HSTS header
cloud-project.com: could not connect to host
cloud.wtf: could not connect to host
cloud2go.de: did not receive HSTS header
+cloud58.org: did not receive HSTS header
cloudapi.vc: could not connect to host
cloudbased.info: did not receive HSTS header
cloudbasedsite.com: did not receive HSTS header
@@ -3099,14 +3155,14 @@ cloudteam.de: did not receive HSTS header
cloudwalk.io: did not receive HSTS header
cloudwarez.xyz: could not connect to host
clounix.online: could not connect to host
-clovissantos.com: could not connect to host
+clovissantos.com: did not receive HSTS header
clowde.in: could not connect to host
clownaroundbouncycastles.co.uk: did not receive HSTS header
clownish.co.il: could not connect to host
+clsfoundationrepairandwaterproofing.com: did not receive HSTS header
clsimplex.com: did not receive HSTS header
clubcall.com: did not receive HSTS header
clubdeslecteurs.net: could not connect to host
-clubmate.rocks: could not connect to host
clubmix.co.kr: could not connect to host
cluefulca.com: could not connect to host
cluefulca.net: could not connect to host
@@ -3125,7 +3181,6 @@ cmdtelecom.net.br: did not receive HSTS header
cmitao.com: could not connect to host
cmpr.es: could not connect to host
cmrss.com: could not connect to host
-cms-weble.jp: could not connect to host
cmsbattle.com: could not connect to host
cmscafe.ru: did not receive HSTS header
cmskh.co.uk: could not connect to host
@@ -3133,9 +3188,11 @@ cmso-cal.com: could not connect to host
cmweller.com: could not connect to host
cnaprograms.online: could not connect to host
cncfraises.fr: did not receive HSTS header
+cncmachinemetal.com: did not receive HSTS header
cncn.us: did not receive HSTS header
cnetw.xyz: could not connect to host
cnitdog.com: could not connect to host
+cnlau.com: did not receive HSTS header
cnlic.com: could not connect to host
cnrd.me: did not receive HSTS header
cnsyear.com: did not receive HSTS header
@@ -3146,6 +3203,8 @@ co-yutaka.com: could not connect to host
coach-sportif.paris: did not receive HSTS header
coachingconsultancy.com: did not receive HSTS header
coam.co: could not connect to host
+coathangastrangla.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+coathangastrangler.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
coathangerstrangla.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
coathangerstrangler.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
cobaltlp.com: could not connect to host
@@ -3189,6 +3248,8 @@ codeproxy.ddns.net: could not connect to host
codepx.com: did not receive HSTS header
codercy.com: could not connect to host
coderhangout.com: could not connect to host
+codersbistro.com: did not receive HSTS header
+codestep.io: could not connect to host
codewiththepros.org: could not connect to host
codewiz.xyz: could not connect to host
codigosddd.com.br: did not receive HSTS header
@@ -3202,16 +3263,18 @@ cohesive.io: did not receive HSTS header
coin-exchange.cz: could not connect to host
coindam.com: could not connect to host
coinessa.com: could not connect to host
+coinjar-sandbox.com: could not connect to host
colarelli.ch: could not connect to host
coldaddy.com: could not connect to host
coldlostsick.net: could not connect to host
coldwatericecream.com: did not receive HSTS header
colearnr.com: could not connect to host
+colincampbell.me: could not connect to host
collablynk.com: could not connect to host
collabra.email: did not receive HSTS header
collard.tk: could not connect to host
collbox.co: did not receive HSTS header
-collectosaurus.com: did not receive HSTS header
+collectosaurus.com: could not connect to host
colleencornez.com: could not connect to host
collegepulse.org: could not connect to host
collies.eu: max-age too low: 3
@@ -3222,19 +3285,21 @@ collinsartworks.com: did not receive HSTS header
collision.fyi: could not connect to host
colmexpro.com: did not receive HSTS header
colognegaming.net: could not connect to host
+cololi.moe: max-age too low: 2592000
coloradocomputernetworking.net: could not connect to host
colorcentertoner.com.br: did not receive HSTS header
coloringnotebook.com: could not connect to host
colorlib.com: did not receive HSTS header
colorunhas.com.br: did not receive HSTS header
+com-news.io: could not connect to host
com.cc: could not connect to host
combatshield.cz: did not receive HSTS header
comchezmeme.com: could not connect to host
comdotgame.com: could not connect to host
-comefollowme2016.com: could not connect to host
+comefollowme2016.com: did not receive HSTS header
comeoncolleen.com: did not receive HSTS header
comercialtrading.eu: could not connect to host
-cometonovascotia.ca: could not connect to host
+cometbot.cf: could not connect to host
cometrueunlimited.com: could not connect to host
comfortdom.ua: did not receive HSTS header
comfortticket.de: did not receive HSTS header
@@ -3252,13 +3317,9 @@ commerciallocker.com: could not connect to host
commercialplanet.eu: could not connect to host
commune-preuilly.fr: did not receive HSTS header
community-cupboard.org: did not receive HSTS header
-comocurarlagastritis24.online: did not receive HSTS header
-comocurarlashemorroides.org: could not connect to host
+comocurarlashemorroides.org: did not receive HSTS header
comocurarlashemorroidesya.com: did not receive HSTS header
-comoimportar.net: did not receive HSTS header
comorecuperaratumujerpdf.com: could not connect to host
-comosecarabarriga.net: did not receive HSTS header
-comoseduzir.net: did not receive HSTS header
comotalk.com: could not connect to host
compalytics.com: could not connect to host
comparamejor.com: did not receive HSTS header
@@ -3276,10 +3337,10 @@ compredietlight.com.br: did not receive HSTS header
comprefitasadere.com.br: could not connect to host
comprehensiveihc.com: could not connect to host
compromised.com: could not connect to host
+compros.me: did not receive HSTS header
compsmag.com: did not receive HSTS header
comptrollerofthecurrency.gov: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
compucorner.com.mx: could not connect to host
-computeremergency.com.au: did not receive HSTS header
computertal.de: could not connect to host
comyuno.com: did not receive HSTS header
concentrade.de: did not receive HSTS header
@@ -3291,8 +3352,8 @@ concord-group.co.jp: did not receive HSTS header
concretehermit.com: did not receive HSTS header
conectalmeria.com: did not receive HSTS header
confirm365.com: could not connect to host
-conflux.tw: could not connect to host
conformal.com: could not connect to host
+confuddledpenguin.com: did not receive HSTS header
congz.me: could not connect to host
conkret.ch: could not connect to host
conkret.co.uk: could not connect to host
@@ -3305,7 +3366,6 @@ connected-verhuurservice.nl: did not receive HSTS header
connectfss.com: could not connect to host
connectingconcepts.com: did not receive HSTS header
conniesacademy.com: could not connect to host
-connorsmith.co: could not connect to host
conrad.am: could not connect to host
consciousandglamorous.com: could not connect to host
consciousbrand.org.au: could not connect to host
@@ -3313,10 +3373,12 @@ consciousbranding.org.au: could not connect to host
consciousbrands.net.au: could not connect to host
conseil-gli.fr: did not receive HSTS header
consejosdehogar.com: did not receive HSTS header
+conservados.com.br: could not connect to host
console.python.org: did not receive HSTS header
console.support: did not receive HSTS header
construct-trust.com: did not receive HSTS header
constructive.men: could not connect to host
+consultation.biz.tr: did not receive HSTS header
consultcelerity.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
consultingroupitaly.com: did not receive HSTS header
consultorcr.net: did not receive HSTS header
@@ -3342,7 +3404,6 @@ coolaj86.com: did not receive HSTS header
coolbutbroken.com: did not receive HSTS header
coolchevy.org.ua: did not receive HSTS header
coole-meister.de: could not connect to host
-coolerssr.space: could not connect to host
cooljs.me: could not connect to host
coolkidsbouncycastles.co.uk: did not receive HSTS header
coolvox.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
@@ -3362,6 +3423,7 @@ cordial-restaurant.com: did not receive HSTS header
core4system.de: could not connect to host
coreapm.com: could not connect to host
corecdn.org: could not connect to host
+corecodec.com: could not connect to host
coreinfrastructure.org: did not receive HSTS header
corenetworking.de: could not connect to host
coresos.com: could not connect to host
@@ -3390,7 +3452,6 @@ cosmeticosnet.com.br: did not receive HSTS header
cosmiatria.pe: could not connect to host
cosmoluziluminacion.com: did not receive HSTS header
cosmoss-departure.com: did not receive HSTS header
-cosplayer.com: could not connect to host
costow.club: did not receive HSTS header
cotonea.de: did not receive HSTS header
cougarsland.com: did not receive HSTS header
@@ -3402,6 +3463,7 @@ coup-dun-soir.ch: could not connect to host
couponcodeq.com: could not connect to host
cour4g3.me: could not connect to host
couragewhispers.ca: could not connect to host
+coursables.com: did not receive HSTS header
coursdeprogrammation.com: could not connect to host
course.pp.ua: did not receive HSTS header
course.rs: could not connect to host
@@ -3413,6 +3475,7 @@ covenantbank.net: could not connect to host
coverdat.com: could not connect to host
coverduck.ru: could not connect to host
coworkingmanifesto.com: did not receive HSTS header
+cozitop.com.br: could not connect to host
cozmaadrian.ro: could not connect to host
cozy.io: did not receive HSTS header
cozycloud.cc: did not receive HSTS header
@@ -3448,17 +3511,20 @@ crazyfamily11.de: did not receive HSTS header
crazyhotseeds.com: did not receive HSTS header
crazyker.com: did not receive HSTS header
crbug.com: did not receive HSTS header (error ignored - included regardless)
+crc-online.nl: did not receive HSTS header
creaescola.com: did not receive HSTS header
creamybuild.com: could not connect to host
create-ls.jp: could not connect to host
create-test-publish.co.uk: could not connect to host
creativeapple.ltd: did not receive HSTS header
creativeartifice.com: did not receive HSTS header
+creativecommons.cl: did not receive HSTS header
creativecommonscatpictures.com: could not connect to host
creativefolks.co.uk: did not receive HSTS header
creativephysics.ml: could not connect to host
creativeplayuk.com: did not receive HSTS header
creato.top: could not connect to host
+creators.co: could not connect to host
crecips.com: could not connect to host
crecket.me: could not connect to host
credia.jp: did not receive HSTS header
@@ -3472,7 +3538,6 @@ crge.eu: max-age too low: 0
crimewatch.net.za: could not connect to host
crisissurvivalspecialists.com: could not connect to host
cristianhares.com: could not connect to host
-critcola.com: could not connect to host
criticalaim.com: could not connect to host
crizk.com: could not connect to host
crl-autos.com: could not connect to host
@@ -3488,7 +3553,6 @@ crop-alert.com: could not connect to host
crosbug.com: did not receive HSTS header (error ignored - included regardless)
crosspeakoms.com: did not receive HSTS header
crosssec.com: did not receive HSTS header
-crowd.supply: did not receive HSTS header
crowdcurity.com: did not receive HSTS header
crowdjuris.com: could not connect to host
crowdwis.com: could not connect to host
@@ -3507,11 +3571,14 @@ cruzr.xyz: could not connect to host
crypalert.com: could not connect to host
crypt.guru: did not receive HSTS header
cryptify.eu: could not connect to host
-crypto-armory.com: could not connect to host
+crypto-navi.org: did not receive HSTS header
cryptobells.com: did not receive HSTS header
cryptobin.org: could not connect to host
cryptocaseproject.com: could not connect to host
cryptodash.net: could not connect to host
+cryptodyno.ninja: could not connect to host
+cryptoegg.ca: could not connect to host
+cryptofrog.co: could not connect to host
cryptoisnotacrime.org: could not connect to host
cryptojar.io: could not connect to host
cryptolab.pro: could not connect to host
@@ -3532,6 +3599,7 @@ cscau.com: did not receive HSTS header
csehnyelv.hu: could not connect to host
cselzer.com: did not receive HSTS header
cser.me: could not connect to host
+csfloors.co.uk: could not connect to host
csfs.org.uk: could not connect to host
csgf.ru: did not receive HSTS header
csgo.help: could not connect to host
@@ -3542,8 +3610,10 @@ csgogamers.com: did not receive HSTS header
csgohandouts.com: did not receive HSTS header
csgokings.eu: could not connect to host
csgoshifter.com: could not connect to host
+csgotwister.com: could not connect to host
csilies.de: could not connect to host
csinfo.us: could not connect to host
+cskdoc.com: did not receive HSTS header
csohack.tk: could not connect to host
cspbuilder.info: did not receive HSTS header
cssps.org: could not connect to host
@@ -3552,10 +3622,10 @@ csvape.com: did not receive HSTS header
cswarzone.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
ct-status.org: could not connect to host
ct-watches.dk: did not receive HSTS header
-ctliu.com: could not connect to host
ctrl.blog: did not receive HSTS header
-ctyi.me: did not receive HSTS header
+ctyi.me: could not connect to host
cuanhua3s.com: did not receive HSTS header
+cubebot.io: could not connect to host
cubecart.net: could not connect to host
cubecraftstore.com: could not connect to host
cubecraftstore.net: could not connect to host
@@ -3570,6 +3640,7 @@ cujba.com: could not connect to host
culinae.nl: could not connect to host
culture-school.top: did not receive HSTS header
cultureelbeleggen.nl: did not receive HSTS header
+cultureroll.com: could not connect to host
cumparama.com: did not receive HSTS header
cumshots-video.ru: could not connect to host
cunha.be: could not connect to host
@@ -3617,17 +3688,19 @@ cyber-konzept.de: did not receive HSTS header
cyber-perikarp.eu: did not receive HSTS header
cybercecurity.com: did not receive HSTS header
cybercloud.cc: did not receive HSTS header
-cyberdos.de: did not receive HSTS header
cyberdyne-industries.net: could not connect to host
-cyberlab.kiev.ua: did not receive HSTS header
+cyberfrancais.ro: did not receive HSTS header
cyberlab.team: did not receive HSTS header
cyberpeace.nl: could not connect to host
+cyberphaze.com: did not receive HSTS header
cyberprey.com: did not receive HSTS header
cyberpunk.ca: could not connect to host
cybersantri.com: could not connect to host
cyberserver.org: could not connect to host
cybershambles.com: could not connect to host
+cybersmart.co.uk: did not receive HSTS header
cyberspace.today: could not connect to host
+cyberxpert.nl: could not connect to host
cyclehackluxembourgcity.lu: could not connect to host
cyclingjunkies.com: could not connect to host
cydia-search.io: could not connect to host
@@ -3651,15 +3724,16 @@ d-toys.com.ua: could not connect to host
d00r.de: did not receive HSTS header
d0xq.net: could not connect to host
d1ves.io: did not receive HSTS header
+d3njjcbhbojbot.cloudfront.net: did not receive HSTS header
d3x.pw: could not connect to host
d4rkdeagle.tk: could not connect to host
-d4wson.com: could not connect to host
d8studio.net: could not connect to host
da8.cc: could not connect to host
dabblegoat.com: could not connect to host
dabbot.org: did not receive HSTS header
dad256.tk: could not connect to host
dadtheimpaler.com: could not connect to host
+daemonslayer.net: could not connect to host
dah5.com: did not receive HSTS header
dahl-pind.dk: did not receive HSTS header
dai-rin.co.jp: could not connect to host
@@ -3668,7 +3742,7 @@ dailystormerpodcasts.com: could not connect to host
dailytopix.com: could not connect to host
daimadi.com: could not connect to host
daisuki.pw: could not connect to host
-daiyuu.jp: could not connect to host
+daiwai.de: did not receive HSTS header
dakerealestate.com: did not receive HSTS header
dakl-shop.de: did not receive HSTS header
dakotasilencer.com: did not receive HSTS header
@@ -3687,19 +3761,18 @@ dancerdates.net: did not receive HSTS header
dandymrsb.com: could not connect to host
dane-bre.net: max-age too low: 172800
dango.in: could not connect to host
+daniel-du.com: could not connect to host
daniel-mosquera.com: could not connect to host
daniel-seifert.com: max-age too low: 600000
daniel-stahl.net: could not connect to host
daniel-steuer.de: could not connect to host
+danielalvarez.net: could not connect to host
danielcowie.me: could not connect to host
danieldk.eu: did not receive HSTS header
danielgraziano.ca: could not connect to host
-danielheal.net: could not connect to host
danieliancu.com: could not connect to host
danielkratz.com: max-age too low: 172800
-danielmarquard.com: could not connect to host
-danielt.co.uk: could not connect to host
-danielthompson.info: could not connect to host
+danielt.co.uk: did not receive HSTS header
danielverlaan.nl: could not connect to host
danielworthy.com: did not receive HSTS header
danielzuzevich.com: could not connect to host
@@ -3708,18 +3781,16 @@ danishenanigans.com: could not connect to host
dankeblog.com: could not connect to host
danmark.guide: did not receive HSTS header
dannycrichton.com: did not receive HSTS header
-danova.de: did not receive HSTS header
+danonsecurity.com: could not connect to host
danrl.de: could not connect to host
-dansage.co: could not connect to host
danskringsporta.be: did not receive HSTS header
danwillenberg.com: did not receive HSTS header
daolerp.xyz: could not connect to host
+dapim.co.il: did not receive HSTS header
dargasia.is: could not connect to host
darinjohnson.ca: did not receive HSTS header
dario.im: did not receive HSTS header
-dariosirangelo.me: did not receive HSTS header
dark-x.cf: could not connect to host
-dark.ninja: could not connect to host
darkanzali.pl: max-age too low: 0
darkdestiny.ch: could not connect to host
darkfriday.ddns.net: could not connect to host
@@ -3737,12 +3808,15 @@ darlastudio66.com: did not receive HSTS header
darlo.co.uk: could not connect to host
darrenellis.xyz: could not connect to host
darrenm.net: could not connect to host
+dart-tanke.com: could not connect to host
+dart-tanke.de: could not connect to host
das-tyrol.at: did not receive HSTS header
dash-board.jp: did not receive HSTS header
dash.rocks: did not receive HSTS header
dashboard.yt: could not connect to host
dashburst.com: did not receive HSTS header
dashnimorad.com: did not receive HSTS header
+dasinternetluegt.at: could not connect to host
data-abundance.com: could not connect to host
data-detox.com: could not connect to host
data.haus: could not connect to host
@@ -3752,8 +3826,8 @@ datacave.is: could not connect to host
datacenternews.asia: did not receive HSTS header
datacenternews.co.nz: did not receive HSTS header
datacentrenews.eu: did not receive HSTS header
+datacool.tk: could not connect to host
datacubed.com: did not receive HSTS header
-datafd.com: could not connect to host
datafd.net: could not connect to host
datahoarder.download: could not connect to host
datahoarderschool.club: did not receive HSTS header
@@ -3778,6 +3852,7 @@ datortipsen.se: did not receive HSTS header
datsound.ru: did not receive HSTS header
datsumou-q.com: did not receive HSTS header
daverandom.com: could not connect to host
+davewut.ca: did not receive HSTS header
davidandkailey.com: could not connect to host
davidbrito.tech: could not connect to host
davidglidden.eu: did not receive HSTS header
@@ -3791,7 +3866,6 @@ davidscherzer.at: could not connect to host
davimun.org: could not connect to host
davros.eu: could not connect to host
davros.ru: could not connect to host
-daw.nz: could not connect to host
dawnofeden.org: did not receive HSTS header
dawnson.is: could not connect to host
dawnsonb.com: could not connect to host
@@ -3799,12 +3873,14 @@ day.vip: did not receive HSTS header
daylightcompany.com: did not receive HSTS header
days.one: could not connect to host
daytonaseaside.com: did not receive HSTS header
+db-sanity.com: could not connect to host
db.gy: could not connect to host
dbjc.duckdns.org: could not connect to host
dblx.io: could not connect to host
+dbmteam.com: could not connect to host
dbox.ga: could not connect to host
dbpmedia.se: did not receive HSTS header
-dbx.ovh: did not receive HSTS header
+dbx.ovh: could not connect to host
dbyz.co.uk: max-age too low: 43200
dcaracing.nl: could not connect to host
dcc.moe: could not connect to host
@@ -3820,7 +3896,7 @@ dden.website: could not connect to host
dden.xyz: could not connect to host
ddmeportal.com: could not connect to host
ddns-anbieter.de: could not connect to host
-ddocu.me: did not receive HSTS header
+ddocu.me: could not connect to host
ddos-mitigation.co.uk: could not connect to host
ddos-mitigation.info: could not connect to host
de-servers.de: could not connect to host
@@ -3852,10 +3928,8 @@ decormiernissanparts.com: could not connect to host
decoyrouting.com: could not connect to host
dedeo.tk: could not connect to host
dedicatutiempo.es: could not connect to host
-dedietrich-asia.com: could not connect to host
-deep.club: could not connect to host
+dedietrich-asia.com: did not receive HSTS header
deep.social: did not receive HSTS header
-deeparamaraj.com: did not receive HSTS header
deepcovelabs.net: could not connect to host
deepcreampie.com: could not connect to host
deepearth.uk: could not connect to host
@@ -3863,7 +3937,7 @@ deeprecce.com: could not connect to host
deeprecce.link: could not connect to host
deeprecce.tech: could not connect to host
deeps.cat: could not connect to host
-deeps.me: did not receive HSTS header
+deeps.me: could not connect to host
deepvalley.tech: could not connect to host
deepvision.com.ua: did not receive HSTS header
deer.team: could not connect to host
@@ -3894,13 +3968,11 @@ deltaconcepts.de: could not connect to host
delvj.org: could not connect to host
demandware.com: did not receive HSTS header
demarche-expresse.com: did not receive HSTS header
-demarle.ch: could not connect to host
demdis.org: could not connect to host
demilitarized.ninja: could not connect to host
demo-server.us: could not connect to host
demo.sb: could not connect to host
demo.swedbank.se: did not receive HSTS header
-demo9.ovh: did not receive HSTS header
democracy.io: did not receive HSTS header
democraticdifference.com: could not connect to host
demomanca.com: did not receive HSTS header
@@ -3923,7 +3995,6 @@ depijl-mz.nl: did not receive HSTS header
depixion.agency: could not connect to host
depo.space: could not connect to host
deprobe.pro: could not connect to host
-depth-co.jp: could not connect to host
dequehablamos.es: could not connect to host
derbyshiredotnet.co.uk: did not receive HSTS header
derchris.me: could not connect to host
@@ -3944,6 +4015,7 @@ designgears.com: did not receive HSTS header
designgraphic.fr: did not receive HSTS header
designsbykerrialee.co.uk: could not connect to host
designthinking.or.jp: did not receive HSTS header
+desmo.gg: could not connect to host
despora.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
despotika.de: could not connect to host
desserteagleselvenar.tk: could not connect to host
@@ -3951,6 +4023,7 @@ destinationbijoux.fr: could not connect to host
destom.be: could not connect to host
desveja.com.br: could not connect to host
detalhecomercio.com.br: could not connect to host
+detalyedesigngroup.com: could not connect to host
detechnologiecooperatie.nl: did not receive HSTS header
detecte-fuite.ch: could not connect to host
detecte.ch: could not connect to host
@@ -3961,8 +4034,7 @@ dethikiemtra.com: did not receive HSTS header
detroitrocs.org: did not receive HSTS header
detteflies.com: max-age too low: 7889238
detutorial.com: max-age too low: 36000
-deusu.de: could not connect to host
-deusu.org: could not connect to host
+deusu.org: did not receive HSTS header
deux.solutions: could not connect to host
deuxsol.co: could not connect to host
deuxsol.com: could not connect to host
@@ -3978,7 +4050,6 @@ devdesco.com: could not connect to host
devdom.io: max-age too low: 172800
develop.cool: did not receive HSTS header
develop.fitness: could not connect to host
-developermail.io: did not receive HSTS header
developersclub.website: could not connect to host
developyourelement.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
devh.de: could not connect to host
@@ -3987,6 +4058,7 @@ devincrow.me: could not connect to host
devinpacker.com: could not connect to host
devisonline.ch: could not connect to host
devistravaux.org: did not receive HSTS header
+devklog.net: could not connect to host
devlux.ch: did not receive HSTS header
devmsg.com: could not connect to host
devnsec.com: could not connect to host
@@ -3997,6 +4069,8 @@ devopsconnected.com: could not connect to host
devtestfan1.gov: could not connect to host
devtub.com: could not connect to host
devuan.org: did not receive HSTS header
+devyn.ca: could not connect to host
+dewebwerf.nl: did not receive HSTS header
dewin.io: could not connect to host
dfixit.com: could not connect to host
dfrance.com.br: did not receive HSTS header
@@ -4018,6 +4092,7 @@ diagonale-deco.fr: did not receive HSTS header
dialoegue.com: did not receive HSTS header
diamondcare.com.br: did not receive HSTS header
diamondpkg.org: could not connect to host
+diamondsleepsolutions.com: could not connect to host
diamondt.us: did not receive HSTS header
dianlujitao.com: did not receive HSTS header
diannaobos.com: did not receive HSTS header
@@ -4029,8 +4104,6 @@ dicgaming.net: could not connect to host
dichgans-besserer.de: did not receive HSTS header
dichvudangkygiayphep.com: could not connect to host
dicio.com.br: did not receive HSTS header
-dicionariofinanceiro.com: did not receive HSTS header
-dicionariopopular.com: did not receive HSTS header
dick.red: could not connect to host
didierlaumen.be: did not receive HSTS header
die-besten-weisheiten.de: could not connect to host
@@ -4053,7 +4126,6 @@ digired.xyz: could not connect to host
digital1world.com: did not receive HSTS header
digitalbank.kz: could not connect to host
digitalcloud.ovh: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-digitalcraftmarketing.co.uk: did not receive HSTS header
digitaldaddy.net: did not receive HSTS header
digitalero.rip: did not receive HSTS header
digitalewelten.de: could not connect to host
@@ -4085,7 +4157,6 @@ dingcc.xyz: could not connect to host
dinge.xyz: could not connect to host
dingelbob-schuhcreme.gq: could not connect to host
dingss.com: could not connect to host
-dinheirolucrar.com: did not receive HSTS header
dinkum.online: could not connect to host
dinotv.at: could not connect to host
dintillat.fr: could not connect to host
@@ -4105,6 +4176,7 @@ dirk-weise.de: could not connect to host
dirkwolf.de: could not connect to host
dirtycat.ru: could not connect to host
disadattamentolavorativo.it: could not connect to host
+discipul.nl: did not receive HSTS header
disclosure.io: did not receive HSTS header
disco-crazy-world.de: could not connect to host
discord-chan.net: could not connect to host
@@ -4113,12 +4185,12 @@ discountmetaux.fr: did not receive HSTS header
discover-mercure.com: could not connect to host
discoveringdocker.com: could not connect to host
discoverrsv.com: did not receive HSTS header
-discoverwellness.center: did not receive HSTS header
+discoverwellness.center: could not connect to host
discovery.lookout.com: did not receive HSTS header
discoveryballoon.org: could not connect to host
disking.co.uk: did not receive HSTS header
dislocated.de: did not receive HSTS header
-disorderboutique.com: did not receive HSTS header
+disorderboutique.com: could not connect to host
disruptivelabs.net: could not connect to host
disruptivelabs.org: could not connect to host
dissieux.com: did not receive HSTS header
@@ -4137,18 +4209,21 @@ divvi.co.nz: did not receive HSTS header
divvyradio.com: did not receive HSTS header
dixiediner.com: did not receive HSTS header
dixmag.com: could not connect to host
-diz.in.ua: did not receive HSTS header
+diz.in.ua: could not connect to host
dizihocasi.com: could not connect to host
dizorg.net: could not connect to host
dj4et.de: could not connect to host
+djsk.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
djul.net: could not connect to host
djxmmx.net: did not receive HSTS header
+dkn.go.id: did not receive HSTS header
dkniss.de: could not connect to host
-dko-steiermark.ml: did not receive HSTS header
+dko-steiermark.ml: could not connect to host
dl.google.com: did not receive HSTS header (error ignored - included regardless)
dlbouncers.co.uk: could not connect to host
dlc.viasinc.com: could not connect to host
dlemper.de: did not receive HSTS header
+dlouwrink.nl: could not connect to host
dlyl888.com: could not connect to host
dmarketer.com: did not receive HSTS header
dmcastles.com: did not receive HSTS header
@@ -4159,10 +4234,12 @@ dmenergy.ru: did not receive HSTS header
dmfd.net: could not connect to host
dmix.ca: could not connect to host
dmlogic.com: could not connect to host
+dmmkenya.co.ke: could not connect to host
dmtry.me: did not receive HSTS header
dmwall.cn: could not connect to host
dmz.ninja: could not connect to host
dnmaze.com: could not connect to host
+dns-manager.info: did not receive HSTS header
dns.google.com: did not receive HSTS header (error ignored - included regardless)
dnsbird.net: could not connect to host
dnsbird.org: could not connect to host
@@ -4182,7 +4259,7 @@ doclot.io: could not connect to host
docplexus.in: did not receive HSTS header
docset.io: could not connect to host
docufiel.com: could not connect to host
-doculus.io: did not receive HSTS header
+doculus.io: could not connect to host
documentations-sociales.com: could not connect to host
docxtemplater.com: did not receive HSTS header
doesmycodehavebugs.today: could not connect to host
@@ -4197,9 +4274,10 @@ dogprograms.net: could not connect to host
dohosting.ru: could not connect to host
dojifish.space: could not connect to host
dojin.nagoya: could not connect to host
-dokan-e.com: could not connect to host
dokan.online: did not receive HSTS header
doked.io: could not connect to host
+dokspot.cf: could not connect to host
+dokspot.ga: could not connect to host
dolarcanadense.com.br: could not connect to host
dolevik.com: could not connect to host
dollarstore24.com: could not connect to host
@@ -4208,7 +4286,6 @@ dolphin-cloud.com: could not connect to host
dolphin-hosting.com: could not connect to host
dolphincorp.co.uk: could not connect to host
dolphinswithlasers.com: could not connect to host
-dolt.xyz: did not receive HSTS header
domaine-aigoual-cevennes.com: did not receive HSTS header
domainelaremejeanne.com: did not receive HSTS header
domaris.de: did not receive HSTS header
@@ -4225,11 +4302,11 @@ dong8.top: could not connect to host
donhoward.org: did not receive HSTS header
donmez.uk: could not connect to host
donmez.ws: could not connect to host
-donner-reuschel.de: did not receive HSTS header
-donotcall.gov: did not receive HSTS header
donotspampls.me: could not connect to host
donotspellitgav.in: did not receive HSTS header
donpaginasweb.com: did not receive HSTS header
+donsbach-edv.de: did not receive HSTS header
+dontcageus.org: could not connect to host
donthedragonwilson.com: could not connect to host
donttrustrobots.nl: could not connect to host
donzelot.co.uk: did not receive HSTS header
@@ -4247,12 +4324,12 @@ dormebebe.com.br: could not connect to host
dosipe.com: could not connect to host
doska.kz: could not connect to host
dostavkakurierom.ru: could not connect to host
+dot.ro: did not receive HSTS header
dotadata.me: could not connect to host
dotb.dn.ua: did not receive HSTS header
dotbrick.co.th: did not receive HSTS header
dotkod.com: could not connect to host
dotnetsandbox.ca: could not connect to host
-dotrox.net: could not connect to host
dotspaperie.com: could not connect to host
doubleaste.com: did not receive HSTS header
doublethink.online: could not connect to host
@@ -4268,6 +4345,7 @@ dovetailnow.com: could not connect to host
dowc.org: did not receive HSTS header
download.jitsi.org: did not receive HSTS header
downsouthweddings.com.au: did not receive HSTS header
+doxcelerate.com: could not connect to host
doyoulyft.com: could not connect to host
dpangerl.de: did not receive HSTS header
dps.srl: did not receive HSTS header
@@ -4278,6 +4356,7 @@ drabbin.com: could not connect to host
draghive.club: did not receive HSTS header
draghive.net: could not connect to host
draghive.photos: did not receive HSTS header
+dragon-aspect.com: could not connect to host
dragoncityhack.tips: could not connect to host
dragonisles.net: could not connect to host
dragons-of-highlands.cz: did not receive HSTS header
@@ -4298,23 +4377,22 @@ dreamaholic.club: could not connect to host
dreamcatcherblog.de: could not connect to host
dreaming.solutions: could not connect to host
dreamlighteyeserum.com: could not connect to host
-dreamof.net: could not connect to host
dreamsforabetterworld.com.au: did not receive HSTS header
dreax.win: could not connect to host
dredgepress.com: did not receive HSTS header
dreischneidiger.de: could not connect to host
-dreizwosechs.de: could not connect to host
drewgle.net: could not connect to host
-drhopeson.com: could not connect to host
+drhopeson.com: did not receive HSTS header
drillnation.com.au: could not connect to host
drinknaturespower.com: could not connect to host
drinkvabeer.com: could not connect to host
+dripdoctors.com: did not receive HSTS header
drishti.guru: could not connect to host
drive.xyz: could not connect to host
+drivercopilot.com: did not receive HSTS header
drivewithstatetransit.com.au: did not receive HSTS header
driving-lessons.co.uk: could not connect to host
drixn.cn: could not connect to host
-drixn.com: could not connect to host
drixn.info: could not connect to host
drixn.net: could not connect to host
drizz.com.br: could not connect to host
@@ -4343,6 +4421,7 @@ drpure.pw: did not receive HSTS header
drtroyhendrickson.com: could not connect to host
drtti.io: could not connect to host
drturner.com.au: did not receive HSTS header
+drubn.de: could not connect to host
drugagodba.si: did not receive HSTS header
drumbandesperanto.nl: could not connect to host
drupal123.com: could not connect to host
@@ -4355,12 +4434,9 @@ ds-christiansen.de: could not connect to host
dshiv.io: could not connect to host
dsne.com.mx: did not receive HSTS header
dsouzamusic.com: could not connect to host
-dstvinstallrandburg.co.za: did not receive HSTS header
dsuinnovation.com: could not connect to host
-dsyunmall.com: could not connect to host
-dtp-mstdn.jp: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+dsyunmall.com: did not receive HSTS header
dtub.co: could not connect to host
-dualascent.com: did not receive HSTS header
duan.li: could not connect to host
dubik.su: did not receive HSTS header
duckyubuntu.tk: could not connect to host
@@ -4389,7 +4465,6 @@ duongpho.com: did not receive HSTS header
durangoenergyllc.com: could not connect to host
dushu.cat: could not connect to host
duskopy.top: could not connect to host
-dutchessuganda.com: could not connect to host
dutchrank.com: did not receive HSTS header
dutyfreeonboard.com: did not receive HSTS header
duuu.ch: could not connect to host
@@ -4406,7 +4481,6 @@ dynamic-networks.be: could not connect to host
dynamize.solutions: did not receive HSTS header
dyncdn.me: could not connect to host
dynts.pro: could not connect to host
-dyz.pw: 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
@@ -4419,10 +4493,10 @@ e-isfa.eu: did not receive HSTS header
e-mak.eu: could not connect to host
e-migration.ch: could not connect to host
e-newshub.com: could not connect to host
+e-planetelec.fr: did not receive HSTS header
e-pokupki.eu: did not receive HSTS header
e-rickroll-r.pw: could not connect to host
e-sa.com: did not receive HSTS header
-e-speak24.pl: could not connect to host
e-vau.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
e-vo-linka.cz: did not receive HSTS header
e-wishlist.net: could not connect to host
@@ -4437,6 +4511,7 @@ e51888.com: did not receive HSTS header
eagle-aluminum.com: did not receive HSTS header
eagle-yard.de: could not connect to host
eagleridgecampground.com: could not connect to host
+eaimty.com: did not receive HSTS header
eam-gmbh.com: did not receive HSTS header
eames-clayton.us: could not connect to host
earga.sm: could not connect to host
@@ -4454,10 +4529,12 @@ easykonto.de: could not connect to host
easyplane.it: did not receive HSTS header
easyreal.ru: could not connect to host
easysimplecrm.com: could not connect to host
+eat-mine.ml: could not connect to host
eat-the-world.ch: could not connect to host
eat4happiness.com: did not receive HSTS header
eatfitoutlet.com.br: could not connect to host
eatlowcarb.de: did not receive HSTS header
+eatmebudapest.hu: could not connect to host
eattherich.us: did not receive HSTS header
eatvisor.co.uk: could not connect to host
eauclairecommerce.com: could not connect to host
@@ -4471,7 +4548,6 @@ ebolsas.com.br: did not receive HSTS header
ebooksgratuits.org: could not connect to host
ebop.ch: could not connect to host
ebp2p.com: did not receive HSTS header
-ebpglobal.com: could not connect to host
ebraph.com: could not connect to host
ebrowz.com: could not connect to host
ecake.in: could not connect to host
@@ -4481,7 +4557,7 @@ ecfs.link: could not connect to host
ecg.fr: could not connect to host
echipstore.com: did not receive HSTS header
echo.cc: could not connect to host
-echoactive.com: could not connect to host
+echoactive.com: max-age too low: 7776000
echomanchester.net: could not connect to host
eckro.com: did not receive HSTS header
ecole-en-danger.fr: could not connect to host
@@ -4492,7 +4568,7 @@ ecology-21.ru: did not receive HSTS header
ecomlane.com: could not connect to host
ecomparemo.com: did not receive HSTS header
econativa.pt: could not connect to host
-economy.st: could not connect to host
+economy.st: did not receive HSTS header
economycarrentalscyprus.com: could not connect to host
ecorus.eu: did not receive HSTS header
ecosoftconsult.com: could not connect to host
@@ -4514,6 +4590,7 @@ edenvalerubbleremovals.co.za: did not receive HSTS header
edgecustomersportal.com: could not connect to host
edgereinvent.com: did not receive HSTS header
edh.email: did not receive HSTS header
+edholm.pub: could not connect to host
edhrealtor.com: did not receive HSTS header
edilservizi.it: did not receive HSTS header
edilservizivco.it: did not receive HSTS header
@@ -4523,11 +4600,13 @@ edition-pommern.com: did not receive HSTS header
editoraacademiacrista.com.br: could not connect to host
edix.ru: could not connect to host
edk.com.tr: did not receive HSTS header
+edoss.co.za: did not receive HSTS header
edsh.de: did not receive HSTS header
eduardnikolenko.com: could not connect to host
eduardnikolenko.ru: could not connect to host
educaid.be: did not receive HSTS header
educatio.tech: could not connect to host
+educator-one.com: did not receive HSTS header
educators.co.nz: did not receive HSTS header
educatoys.com.br: could not connect to host
educatweb.de: did not receive HSTS header
@@ -4535,10 +4614,10 @@ educnum.fr: did not receive HSTS header
educourse.ga: could not connect to host
eduif.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
eduvance.in: did not receive HSTS header
-edvgarbe.de: could not connect to host
ee-terminals.com: could not connect to host
eeb98.com: could not connect to host
eeetrust.org: could not connect to host
+eelzak.nl: could not connect to host
eenekorea.com: could not connect to host
eengezinswoning-in-alphen-aan-den-rijn-kopen.nl: could not connect to host
eengezinswoning-in-de-friese-meren-kopen.nl: could not connect to host
@@ -4552,17 +4631,16 @@ eengezinswoning-in-zuid-holland-kopen.nl: could not connect to host
eengezinswoning-in-zuidplas-kopen.nl: could not connect to host
eengezinswoning-in-zwartewaterland-kopen.nl: could not connect to host
eengezinswoningverkopen.nl: could not connect to host
+eengoedenotaris.nl: did not receive HSTS header
eenhoorn.ga: could not connect to host
eeqj.com: did not receive HSTS header
eesistumine2017.ee: could not connect to host
eez.ee: could not connect to host
effectiveosgi.com: could not connect to host
effectivepapers.com: could not connect to host
-efficienthealth.com: did not receive HSTS header
+efficienthealth.com: could not connect to host
effortlesshr.com: did not receive HSTS header
-efinity.io: did not receive HSTS header
-eftcorp.biz: max-age too low: 0
-egarden.it: did not receive HSTS header
+eftcorp.biz: did not receive HSTS header
egfl.org.uk: did not receive HSTS header
egge.com: max-age too low: 0
egit.co: could not connect to host
@@ -4590,7 +4668,7 @@ einsatzstiefel.info: could not connect to host
einsit.com: could not connect to host
einsitapis.com: could not connect to host
ejgconsultancy.co.uk: did not receive HSTS header
-ejusu.com: did not receive HSTS header
+ejusu.com: could not connect to host
ek.network: could not connect to host
ekbanden.nl: could not connect to host
ekobudisantoso.net: could not connect to host
@@ -4602,11 +4680,11 @@ elan-organics.com: did not receive HSTS header
elanguest.pl: could not connect to host
elanguest.ro: could not connect to host
elanguest.ru: could not connect to host
-elastic7.uk: could not connect to host
elaxy-online.de: could not connect to host
elbaal.gov: did not receive HSTS header
elblein.de: did not receive HSTS header
-elderoost.com: could not connect to host
+elbohlyart.com: did not receive HSTS header
+eldietista.es: could not connect to host
elearningpilot.com: did not receive HSTS header
electicofficial.com: did not receive HSTS header
electricalcontrolpanels.co.uk: could not connect to host
@@ -4631,10 +4709,10 @@ elenagherta.ga: could not connect to host
elenoon.ir: max-age too low: 1
elenorsmadness.org: could not connect to host
eleonorengland.com: did not receive HSTS header
+elestanteliterario.com: did not receive HSTS header
eletesstilus.hu: could not connect to host
elevateandprosper.com: could not connect to host
-elexel.ru: could not connect to host
-elgacien.de: could not connect to host
+elgacien.de: did not receive HSTS header
elguillatun.cl: did not receive HSTS header
elhall.pro: did not receive HSTS header
elhall.ru: did not receive HSTS header
@@ -4649,6 +4727,7 @@ elite-porno.ru: could not connect to host
elitecovering.fr: did not receive HSTS header
elitefishtank.com: could not connect to host
elitesensual.com.br: could not connect to host
+elixi.re: did not receive HSTS header
elizeugomes.com.br: did not receive HSTS header
ellen-skye.de: max-age too low: 604800
elliff.net: did not receive HSTS header
@@ -4660,18 +4739,18 @@ elnutricionista.es: could not connect to host
elo.fyi: could not connect to host
elohna.ch: did not receive HSTS header
elonbase.com: could not connect to host
-elpado.de: could not connect to host
elpay.kz: did not receive HSTS header
-elpo.net: did not receive HSTS header
elpo.xyz: could not connect to host
elsamakhin.com: could not connect to host
elsemanario.com: did not receive HSTS header
elsensohn.ch: did not receive HSTS header
elsitar.com: could not connect to host
+elsvanderlugt.nl: did not receive HSTS header
elsword.moe: could not connect to host
eltransportquevolem.org: could not connect to host
eltrox.me: could not connect to host
-elyisus.info: could not connect to host
+eluft.de: could not connect to host
+elyisus.info: did not receive HSTS header
elytronsecurity.com: did not receive HSTS header
email.lookout.com: could not connect to host
email2rss.net: could not connect to host
@@ -4697,6 +4776,7 @@ eminhuseynov.com: could not connect to host
eminovic.me: could not connect to host
emjainteractive.com: did not receive HSTS header
emjimadhu.com: could not connect to host
+emma-o.com: could not connect to host
emmable.com: could not connect to host
emmaliddell.com: did not receive HSTS header
emmanuelle-et-julien.ch: could not connect to host
@@ -4715,6 +4795,7 @@ employeestore.org: did not receive HSTS header
emporiovinareal.com.br: could not connect to host
empty-r.com: could not connect to host
emptypath.com: did not receive HSTS header
+emupedia.net: did not receive HSTS header
emyself.info: could not connect to host
emyself.org: did not receive HSTS header
en4u.org: could not connect to host
@@ -4755,8 +4836,9 @@ enigmail.net: did not receive HSTS header
enjen.net: did not receive HSTS header
enjoymayfield.com: max-age too low: 0
enjoystudio.ro: did not receive HSTS header
-enlatte.com: did not receive HSTS header
-enlightened.si: could not connect to host
+enlatte.com: could not connect to host
+enlazaresbueno.cl: did not receive HSTS header
+enlightened.si: did not receive HSTS header
enoou.com: could not connect to host
enpalmademallorca.info: could not connect to host
ensemble-vos-idees.fr: could not connect to host
@@ -4771,7 +4853,6 @@ enterdev.co: did not receive HSTS header
enterprisecarclub.co.uk: did not receive HSTS header
enterprisechannel.asia: did not receive HSTS header
enterprivacy.com: did not receive HSTS header
-entersynapse.com: could not connect to host
entheorie.net: did not receive HSTS header
entourneebeetle.com: could not connect to host
entrepreneur.or.id: could not connect to host
@@ -4780,7 +4861,6 @@ enumify.com: could not connect to host
envelope.co.nz: could not connect to host
enviam.de: did not receive HSTS header
enviapresentes.com.br: could not connect to host
-enviatufoto.com: max-age too low: 604800
environment.ai: could not connect to host
envoyglobal.com: did not receive HSTS header
envoyworld.com: did not receive HSTS header
@@ -4788,7 +4868,9 @@ envygeeks.com: could not connect to host
eol34.com: could not connect to host
eoldb.org: could not connect to host
eolme.ml: could not connect to host
+eosol.zone: could not connect to host
epanurse.com: could not connect to host
+epave.paris: could not connect to host
epaygateway.net: could not connect to host
ephe.be: could not connect to host
ephry.com: could not connect to host
@@ -4805,6 +4887,7 @@ epossussex.co.uk: could not connect to host
eposwales.co.uk: could not connect to host
epoxate.com: could not connect to host
eprofitacademy.com: did not receive HSTS header
+epulsar.ru: did not receive HSTS header
eq8.net.au: could not connect to host
eqib.nl: did not receive HSTS header
eqim.me: could not connect to host
@@ -4814,10 +4897,12 @@ equate.net.au: did not receive HSTS header
equatetechnologies.com.au: did not receive HSTS header
equilibre-yoga-jennifer-will.com: could not connect to host
equippers.de: did not receive HSTS header
+equipsupply.com: did not receive HSTS header
equitee.co: did not receive HSTS header
equityflows.com: did not receive HSTS header
er-music.com: could not connect to host
erad.fr: could not connect to host
+erawanarifnugroho.com: did not receive HSTS header
erclab.kr: could not connect to host
erepublik-deutschland.de: did not receive HSTS header
eressea.xyz: could not connect to host
@@ -4827,6 +4912,7 @@ ericloud.tk: could not connect to host
ericorporation.com: did not receive HSTS header
ericyl.com: did not receive HSTS header
eriel.com.br: could not connect to host
+eriix.org: could not connect to host
erikwagner.de: did not receive HSTS header
erinlin.com: did not receive HSTS header
eriser.fr: did not receive HSTS header
@@ -4834,6 +4920,7 @@ ernaehrungsberatung-zurich.ch: could not connect to host
ernesto.at: could not connect to host
eroimatome.com: could not connect to host
eromixx.com: could not connect to host
+eromon.net: could not connect to host
erotalia.es: could not connect to host
erotic4me.ch: did not receive HSTS header
erotische-aanbiedingen.nl: could not connect to host
@@ -4842,6 +4929,7 @@ errolz.com: did not receive HSTS header
errors.zenpayroll.com: could not connect to host
erspro.net: could not connect to host
eru.me: did not receive HSTS header
+ervaarjapan.nl: did not receive HSTS header
erverydown.ml: could not connect to host
erwinvanlonden.net: did not receive HSTS header
es8888.net: could not connect to host
@@ -4891,6 +4979,7 @@ esec.rs: did not receive HSTS header
eseth.de: did not receive HSTS header
esh.ink: could not connect to host
eshepperd.com: did not receive HSTS header
+eshobe.com: did not receive HSTS header
eshtapay.com: could not connect to host
esko.bar: could not connect to host
esln.org: did not receive HSTS header
@@ -4899,7 +4988,7 @@ esocweb.com: could not connect to host
esoterik.link: could not connect to host
esp-berlin.de: could not connect to host
esp-desarrolladores.com: could not connect to host
-esp.community: did not receive HSTS header
+esp.community: could not connect to host
esp8285.store: could not connect to host
espacemontmorency.com: did not receive HSTS header
especificosba.com.mx: could not connect to host
@@ -4914,6 +5003,7 @@ essayhave.com: could not connect to host
essaylib.com: could not connect to host
essayscam.org: could not connect to host
essayshark.com: could not connect to host
+essaywebsite.com: did not receive HSTS header
essenceofvitalitydetox.com: could not connect to host
essential12.com: could not connect to host
essentialoilsimports.com: could not connect to host
@@ -4941,7 +5031,7 @@ etenendrinken.nu: could not connect to host
eternalsymbols.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
eternitylove.us: could not connect to host
eth9.net: could not connect to host
-etha.nz: max-age too low: 0
+ethandelany.me: did not receive HSTS header
ethanfaust.com: did not receive HSTS header
ethanlew.is: could not connect to host
ethantskinner.com: did not receive HSTS header
@@ -4953,6 +5043,7 @@ ethicaltek.com: could not connect to host
ethil-faer.fr: could not connect to host
ethiobaba.com: could not connect to host
etidni.help: did not receive HSTS header
+etincelle.ml: could not connect to host
etk2000.com: did not receive HSTS header
etmirror.top: could not connect to host
etmirror.xyz: could not connect to host
@@ -4964,8 +5055,8 @@ ettebiz.com: max-age too low: 0
etula.ga: could not connect to host
etula.me: could not connect to host
etys.no: did not receive HSTS header
+etzi.myds.me: did not receive HSTS header
euanbaines.com: did not receive HSTS header
-euanbarrett.com: could not connect to host
euclideanpostulates.xyz: could not connect to host
eucollegetours.com: could not connect to host
euexia.fr: could not connect to host
@@ -4981,15 +5072,15 @@ eupresidency2018.com: could not connect to host
euren.se: could not connect to host
eurocamping.se: could not connect to host
euroescortguide.com: could not connect to host
+euroservice.com.gr: did not receive HSTS header
euroshop24.net: could not connect to host
-euroskano.nl: did not receive HSTS header
eurospecautowerks.com: did not receive HSTS header
eurostrategy.vn.ua: could not connect to host
euteamo.cn: did not receive HSTS header
evanhandgraaf.nl: did not receive HSTS header
evankurniawan.com: did not receive HSTS header
+evantage.org: could not connect to host
evasion-energie.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-evasioncreole.com: could not connect to host
evdenevenakliyatankara.pw: could not connect to host
evecalm.com: did not receive HSTS header
evedanjailbreak.com: could not connect to host
@@ -4999,11 +5090,11 @@ event64.ru: did not receive HSTS header
eventmake.es: could not connect to host
eventplace.me: did not receive HSTS header
events12.com: did not receive HSTS header
-eventsafrica.net: could not connect to host
+eventsafrica.net: did not receive HSTS header
+everitoken.io: did not receive HSTS header
everyarti.st: could not connect to host
everybooks.com: could not connect to host
everydaytherich.com: max-age too low: 7776000
-everydaywot.com: could not connect to host
everygayporn.xyz: could not connect to host
everylab.org: could not connect to host
everymove.org: could not connect to host
@@ -5014,7 +5105,9 @@ eveshaiwu.com: could not connect to host
evi.be: did not receive HSTS header
evileden.com: could not connect to host
evilnerd.de: did not receive HSTS header
+evilness.nl: could not connect to host
evilsay.com: could not connect to host
+evilvolcanolairs.com: did not receive HSTS header
evin.ml: could not connect to host
evio.com: did not receive HSTS header
evites.me: could not connect to host
@@ -5030,7 +5123,6 @@ exampleessays.com: could not connect to host
excelgum.ca: did not receive HSTS header
exceptionalbits.com: could not connect to host
exceptionalservices.us: could not connect to host
-excessamerica.com: could not connect to host
exchangecoordinator.com: could not connect to host
exchangeworks.co: did not receive HSTS header
exembit.com: did not receive HSTS header
@@ -5038,7 +5130,7 @@ exfiles.cz: did not receive HSTS header
exgaywatch.com: could not connect to host
exgravitus.com: could not connect to host
exno.co: could not connect to host
-exo.do: could not connect to host
+exo.do: max-age too low: 0
exoticads.com: could not connect to host
exousiakaidunamis.xyz: could not connect to host
expanddigital.media: did not receive HSTS header
@@ -5055,20 +5147,22 @@ expokohler.com: could not connect to host
expoort.com.br: could not connect to host
expoundite.net: did not receive HSTS header
expowerhps.com: did not receive HSTS header
-expressemotion.net: could not connect to host
expressfinance.co.za: did not receive HSTS header
exteriorservices.io: could not connect to host
extramoney.cash: did not receive HSTS header
extrathemeshowcase.net: could not connect to host
extratorrent.cool: did not receive HSTS header
-extratorrent.fyi: could not connect to host
-extratorrent.red: could not connect to host
+extratorrent.fyi: max-age too low: 0
+extratorrent.red: max-age too low: 0
extratorrent.world: could not connect to host
extratorrentlive.xyz: could not connect to host
extratorrents.tech: could not connect to host
extreemhost.nl: did not receive HSTS header
+extreme-players.com: could not connect to host
extremenetworking.net: could not connect to host
+exultcosmetics.co.uk: did not receive HSTS header
exy.pw: could not connect to host
+eyasc.nl: did not receive HSTS header
eyedarts.com: did not receive HSTS header
eyeglassuniverse.com: did not receive HSTS header
eyenote.gov: did not receive HSTS header
@@ -5079,7 +5173,6 @@ ez.fi: could not connect to host
ezgamble.com: could not connect to host
ezimoeko.net: could not connect to host
ezmod.org: could not connect to host
-eznfe.com: could not connect to host
ezorgportaal.nl: could not connect to host
ezrefurb.co.uk: did not receive HSTS header
eztv.ch: did not receive HSTS header
@@ -5087,7 +5180,7 @@ f-rickroll-g.pw: could not connect to host
f-s-u.co.uk: could not connect to host
f00.ca: did not receive HSTS header
f1bigpicture.com: could not connect to host
-f2e.io: did not receive HSTS header
+f2e.io: could not connect to host
f2f.cash: could not connect to host
f42.net: could not connect to host
f5movies.top: could not connect to host
@@ -5102,9 +5195,11 @@ fabianmunoz.com: did not receive HSTS header
fabienbaker.com: could not connect to host
fabled.com: did not receive HSTS header
fabriko.fr: did not receive HSTS header
+fabriziorocca.com: could not connect to host
fabrysociety.org: could not connect to host
fabulouslyyouthfulskin.com: could not connect to host
fabulouslyyouthfulskineyeserum.com: could not connect to host
+faccess.it: could not connect to host
facebattle.com: could not connect to host
facebook.ax: could not connect to host
facebooktsukaikata.net: did not receive HSTS header
@@ -5116,6 +5211,7 @@ factor.cc: did not receive HSTS header
factorable.net: did not receive HSTS header
factorygw.com: did not receive HSTS header
factorypartsdirect.com: could not connect to host
+factureenlinea.com: could not connect to host
fadednet.com: could not connect to host
fadilus.com: did not receive HSTS header
fads-center.online: could not connect to host
@@ -5124,7 +5220,6 @@ faesser.com: did not receive HSTS header
fafatiger.com: could not connect to host
fag.wtf: could not connect to host
fahmed.de: did not receive HSTS header
-faidanoi.it: did not receive HSTS header
failproof.be: max-age too low: 604800
faircom.co.za: did not receive HSTS header
fairkey.dk: did not receive HSTS header
@@ -5133,7 +5228,6 @@ faisalshuvo.com: did not receive HSTS header
faizan.net: did not receive HSTS header
faizan.xyz: did not receive HSTS header
fakeletters.org: could not connect to host
-fakerli.com: could not connect to host
faktura.pl: did not receive HSTS header
falcibiosystems.org: did not receive HSTS header
falconwiz.com: did not receive HSTS header
@@ -5143,9 +5237,9 @@ falldennismarketing.com: max-age too low: 2592000
fallenangeldrinks.eu: could not connect to host
fallenangelspirits.uk: could not connect to host
fallingapart.de: could not connect to host
-fallofthecitadel.com: did not receive HSTS header
false.in.net: could not connect to host
faluninfo.ba: did not receive HSTS header
+famdouma.nl: could not connect to host
fame-agency.net: could not connect to host
famep.gov: could not connect to host
famer.me: could not connect to host
@@ -5153,9 +5247,8 @@ fameuxhosting.co.uk: could not connect to host
familie-sander.rocks: max-age too low: 600
familie-sprink.de: could not connect to host
familie-zimmermann.at: could not connect to host
+familletouret.fr: did not receive HSTS header
famio.cn: did not receive HSTS header
-fan.gov: could not connect to host
-fancy-bridge.com: could not connect to host
fanflow.com: did not receive HSTS header
fansmade.art: could not connect to host
fant.dk: did not receive HSTS header
@@ -5175,7 +5268,6 @@ farm24.co.uk: could not connect to host
farmacia.pt: did not receive HSTS header
farmaciaformula.com.br: could not connect to host
farmaciamedicom.com.br: could not connect to host
-fascia.fit: could not connect to host
fashion.net: did not receive HSTS header
fashioncare.cz: did not receive HSTS header
fashiondays.bg: max-age too low: 0
@@ -5194,10 +5286,10 @@ fastopen.ml: could not connect to host
fastworx.com: did not receive HSTS header
fatdoge.cn: did not receive HSTS header
fatgeekflix.net: could not connect to host
-fatherhood.gov: did not receive HSTS header
fatlossguide.xyz: could not connect to host
fator25.com.br: could not connect to host
fatox.de: could not connect to host
+fattorino.it: did not receive HSTS header
fatwin.pw: could not connect to host
fatzebra.com.au: max-age too low: 0
favorit.club: did not receive HSTS header
@@ -5208,11 +5300,14 @@ fbi.pw: did not receive HSTS header
fbook.top: could not connect to host
fbox.li: could not connect to host
fcapartsdb.com: could not connect to host
+fcitasc.com: could not connect to host
fcp.cn: could not connect to host
fdj.im: could not connect to host
+fdm.ro: did not receive HSTS header
fdt.name: did not receive HSTS header
+feac.us: could not connect to host
feard.space: could not connect to host
-fed51.com: could not connect to host
+fed51.com: did not receive HSTS header
fedbizopps.gov: could not connect to host
fedemo.top: did not receive HSTS header
federalregister.gov: did not receive HSTS header
@@ -5221,7 +5316,6 @@ fedo.moe: could not connect to host
feedstringer.com: could not connect to host
feedthebot.com: did not receive HSTS header
feegg.com.br: could not connect to host
-feelgood-workouts.de: did not receive HSTS header
fefore.com: did not receive HSTS header
fegans.org.uk: did not receive HSTS header
feirlane.org: could not connect to host
@@ -5231,6 +5325,7 @@ feitobrasilcosmeticos.com.br: did not receive HSTS header
felger-times.fr: could not connect to host
feliwyn.fr: did not receive HSTS header
felixhefner.de: did not receive HSTS header
+felixqu.com: did not receive HSTS header
felixrr.pro: could not connect to host
femaledom.xyz: could not connect to host
femdombbw.com: could not connect to host
@@ -5259,7 +5354,7 @@ fetlife.com: could not connect to host
fettbrot.tk: did not receive HSTS header
feudaltactics.com: could not connect to host
feuerwehr-dachaufsetzer.de: could not connect to host
-fexmen.com: could not connect to host
+fexmen.com: did not receive HSTS header
ff-bg.xyz: could not connect to host
ffh.me: could not connect to host
ffl123.com: did not receive HSTS header
@@ -5336,28 +5431,29 @@ firefall.rocks: could not connect to host
firehost.com: could not connect to host
fireinthedeep.com: could not connect to host
firemail.io: could not connect to host
-firenza.org: did not receive HSTS header
fireorbit.de: did not receive HSTS header
firepeak.ru: could not connect to host
fireworkcoaching.com: did not receive HSTS header
firexarxa.de: could not connect to host
+firmale.com: could not connect to host
firmament.space: could not connect to host
-firmenverzeichnis.nu: did not receive HSTS header
+firmenverzeichnis.nu: could not connect to host
first-time-offender.com: could not connect to host
firstchoicepool.com: did not receive HSTS header
firstdogonthemoon.com.au: did not receive HSTS header
firstforex.co.uk: did not receive HSTS header
firstlook.org: did not receive HSTS header
-fischers.cc: could not connect to host
fiscoeconti.it: did not receive HSTS header
fishfinders.info: did not receive HSTS header
fiskestang.com: did not receive HSTS header
fit4medien.de: did not receive HSTS header
fitbylo.com: could not connect to host
fitea.cz: could not connect to host
+fitfitup.com: did not receive HSTS header
fitiapp.com: could not connect to host
fitnesswerk.de: could not connect to host
fitqbe.com: did not receive HSTS header
+fitseven.ru: did not receive HSTS header
fitshop.com.br: could not connect to host
fitsw.com: did not receive HSTS header
fiuxy.org: could not connect to host
@@ -5405,12 +5501,7 @@ flatbellyreview.com: max-age too low: 2592000
flawcheck.com: could not connect to host
flc111.com: did not receive HSTS header
flc999.com: max-age too low: 129600
-fleetcor.at: could not connect to host
-fleetcor.de: could not connect to host
-fleetcor.fr: could not connect to host
-fleetcor.hu: could not connect to host
-fleetcor.nl: could not connect to host
-fleetcor.pl: could not connect to host
+fleamarketgoods.com: did not receive HSTS header
flemingtonaudiparts.com: could not connect to host
fleurette.me: could not connect to host
fleursdesoleil.fr: did not receive HSTS header
@@ -5418,6 +5509,7 @@ flexdrukker.nl: could not connect to host
flexinvesting.fi: could not connect to host
fliexer.com: could not connect to host
flightschoolusa.com: did not receive HSTS header
+flikmsg.co: could not connect to host
fling.dating: could not connect to host
flipagram.com: did not receive HSTS header
flipbell.com: did not receive HSTS header
@@ -5425,13 +5517,13 @@ flipkey.com: did not receive HSTS header
flirchi.com: did not receive HSTS header
flixtor.net: could not connect to host
flkrpxl.com: max-age too low: 86400
-floless.co.uk: could not connect to host
floorball-haunwoehr.de: did not receive HSTS header
flopy.club: could not connect to host
florafiora.com.br: did not receive HSTS header
florian-lillpopp.de: max-age too low: 10
florian-schlachter.de: did not receive HSTS header
florianlillpopp.de: max-age too low: 10
+floriantanner.ch: could not connect to host
floridaderi.ru: did not receive HSTS header
floridaescapes.co.uk: did not receive HSTS header
florinapp.com: could not connect to host
@@ -5446,7 +5538,7 @@ flowersandclouds.com: could not connect to host
floweslawncare.com: could not connect to host
flowlo.me: could not connect to host
flox.io: could not connect to host
-floydm.com: did not receive HSTS header
+floydm.com: could not connect to host
flugplatz-edvc.de: could not connect to host
flugsportvereinigungcelle.de: did not receive HSTS header
flugstadplasticsurgery.com: did not receive HSTS header
@@ -5462,13 +5554,15 @@ flyingdoggy.net: could not connect to host
flyingspaghettimonsterdonationsfund.nl: could not connect to host
flyp.me: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
flyspace.ga: did not receive HSTS header
+flyspace.ml: did not receive HSTS header
flyss.net: could not connect to host
fm83.nl: could not connect to host
fm992.com: could not connect to host
-fmovies.life: could not connect to host
+fmovies.fyi: did not receive HSTS header
+fmovies.life: max-age too low: 0
fnfpt.co.uk: could not connect to host
fniephaus.com: did not receive HSTS header
-fnncat.com: could not connect to host
+fnncat.com: did not receive HSTS header
fnvsecurity.com: could not connect to host
fobc-usa.org: did not receive HSTS header
focalforest.com: could not connect to host
@@ -5477,7 +5571,8 @@ fognini-depablo.eu: could not connect to host
fohome.ca: could not connect to host
fokan.ch: did not receive HSTS header
foliekonsulenten.dk: did not receive HSTS header
-folioapp.io: did not receive HSTS header
+folioapp.io: could not connect to host
+folkfests.org: did not receive HSTS header
fondanastasia.ru: did not receive HSTS header
fondy.ru: did not receive HSTS header
foneo.com: could not connect to host
@@ -5507,18 +5602,22 @@ fordshop.by: [Exception... "Component returned failure code: 0x80004005 (NS_ERRO
foreignexchangeresource.com: did not receive HSTS header
forestfinance.fr: did not receive HSTS header
foreveralone.io: could not connect to host
+foreverssl.com: could not connect to host
foreveryoung.pt: did not receive HSTS header
forex-dan.com: did not receive HSTS header
forex-plus.com: did not receive HSTS header
+forexsignals7.com: could not connect to host
forgix.com: could not connect to host
forlagetmarx.dk: did not receive HSTS header
formadmin.com: did not receive HSTS header
formaliteo.com: did not receive HSTS header
+formasdemaquillarse.com: did not receive HSTS header
formazioneopen.it: could not connect to host
formersessalaries.com: did not receive HSTS header
formula.cf: could not connect to host
forplanetsake.com: could not connect to host
forplayers.pl: could not connect to host
+forquilhinhanoticias.com.br: did not receive HSTS header
forsyththeatre.com: could not connect to host
fortricks.in: did not receive HSTS header
fortuna-loessnitz.de: could not connect to host
@@ -5533,13 +5632,13 @@ fossewayflowers.co.uk: could not connect to host
fossewayflowers.com: could not connect to host
fossewaygardencentre.co.uk: did not receive HSTS header
fossgruppen.se: could not connect to host
+fossguard.com: could not connect to host
fotiu.com: could not connect to host
fotoallerlei.com: did not receive HSTS header
fotocerita.net: could not connect to host
fotofaerie.net: could not connect to host
fotogiraffe.ru: did not receive HSTS header
fotografosexpertos.com: did not receive HSTS header
-fotonjan.com: could not connect to host
fotopasja.info: could not connect to host
fotostravestisbr.com: could not connect to host
fourchin.net: could not connect to host
@@ -5553,16 +5652,13 @@ foxleyseeds.co.uk: could not connect to host
foxmay.co.uk: could not connect to host
foxtrot.pw: could not connect to host
foxyslut.com: could not connect to host
-foyale.io: could not connect to host
fpki.sh: could not connect to host
-fptravelling.com: could not connect to host
fr0zenbits.io: could not connect to host
fr33d0m.link: could not connect to host
fragilesolar.cf: could not connect to host
fragnic.com: could not connect to host
fralef.me: did not receive HSTS header
francesca-and-lucas.com: did not receive HSTS header
-francescoservida.ch: could not connect to host
francevpn.xyz: could not connect to host
francois-vidit.com: did not receive HSTS header
frangor.info: did not receive HSTS header
@@ -5579,7 +5675,6 @@ frasys.cloud: max-age too low: 2592000
frasys.io: could not connect to host
fraudempire.com: could not connect to host
freakyamazing.com: could not connect to host
-freakyaweso.me: could not connect to host
freakyawesome.band: could not connect to host
freakyawesome.blog: could not connect to host
freakyawesome.ca: could not connect to host
@@ -5645,9 +5740,7 @@ freakyawesometheme.com: could not connect to host
freakyawesomethemes.com: could not connect to host
freakyawesomewp.com: could not connect to host
freddythechick.uk: could not connect to host
-fredericcote.com: could not connect to host
fredliang.cn: could not connect to host
-fredtec.ru: could not connect to host
free8.xyz: could not connect to host
freeasinlliure.org: did not receive HSTS header
freeassangenow.org: did not receive HSTS header
@@ -5655,7 +5748,6 @@ freeben666.fr: could not connect to host
freeblog.me: could not connect to host
freebookmakerbets.com.au: did not receive HSTS header
freebus.org: could not connect to host
-freecam2cam.site: could not connect to host
freecookies.nl: did not receive HSTS header
freedomrealtyoftexas.com: did not receive HSTS header
freedomvote.nl: could not connect to host
@@ -5668,7 +5760,7 @@ freelanced.co.za: could not connect to host
freelandinnovation.com: did not receive HSTS header
freelansir.com: could not connect to host
freemanning.de: could not connect to host
-freematthale.net: did not receive HSTS header
+freematthale.net: could not connect to host
freeslots.guru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
freesoftwaredriver.com: could not connect to host
freesounding.com: did not receive HSTS header
@@ -5681,6 +5773,7 @@ frenzel.dk: could not connect to host
freqlabs.com: did not receive HSTS header
freshfind.xyz: could not connect to host
freshlymind.com: did not receive HSTS header
+frettboard.com: did not receive HSTS header
frezbo.com: could not connect to host
frforms.com: did not receive HSTS header
frickelboxx.de: could not connect to host
@@ -5695,14 +5788,12 @@ frodriguez.xyz: could not connect to host
froehlich.it: did not receive HSTS header
froggstack.de: could not connect to host
frolov.net: could not connect to host
-from-the-net.com: could not connect to host
fromix.de: could not connect to host
fromlemaytoz.com: could not connect to host
front-end.dog: could not connect to host
frontisme.nl: did not receive HSTS header
frontline.cloud: did not receive HSTS header
frontline6.com: did not receive HSTS header
-frontlinemessenger.com: did not receive HSTS header
frontmin.com: did not receive HSTS header
frost-ci.xyz: could not connect to host
frostbytes.net: could not connect to host
@@ -5716,10 +5807,9 @@ fruitusers.com: could not connect to host
frumious.fyi: could not connect to host
frusky.net: could not connect to host
fs-gamenet.de: could not connect to host
-fsf.moe: did not receive HSTS header
+fsf.moe: could not connect to host
fsfi.is: could not connect to host
fsinf.at: did not receive HSTS header
-fsk.fo: did not receive HSTS header
fspphoto.com: could not connect to host
fsradio.eu: did not receive HSTS header
fsrs.gov: could not connect to host
@@ -5771,17 +5861,15 @@ funnyang.com: could not connect to host
funrun.com: did not receive HSTS header
funtastic-event-hire.co.uk: did not receive HSTS header
funtastic.ie: could not connect to host
-funtimebourne.co.uk: could not connect to host
+funtimebourne.co.uk: did not receive HSTS header
fuorifuocogenova.it: did not receive HSTS header
furi.ga: could not connect to host
furiffic.com: did not receive HSTS header
-furikake.xyz: did not receive HSTS header
furnation.com: could not connect to host
furnishedproperty.com.au: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-furry.agency: could not connect to host
furry.be: did not receive HSTS header
+fursuitbutts.com: could not connect to host
furtivelook.com: did not receive HSTS header
-fusa-miyamoto.jp: could not connect to host
fusedrops.com: did not receive HSTS header
fusionmate.com: could not connect to host
fuskator.com: could not connect to host
@@ -5801,16 +5889,18 @@ fuzoku-sodan.com: could not connect to host
fuzoku.jp: could not connect to host
fwei.tk: did not receive HSTS header
fws.gov: did not receive HSTS header
-fwww7.com: did not receive HSTS header
+fwww7.com: could not connect to host
fxgame.online: could not connect to host
fxpig-ib.com: could not connect to host
+fxtalk.cn: could not connect to host
fxwebstudio.com.au: max-age too low: 0
fyodorpi.com: did not receive HSTS header
fyol.pw: could not connect to host
fysiohaenraets.nl: did not receive HSTS header
fzn.io: did not receive HSTS header
-fzslm.me: could not connect to host
+fzslm.me: did not receive HSTS header
g-i-s.vn: did not receive HSTS header
+g-marketing.ro: did not receive HSTS header
g-rickroll-o.pw: could not connect to host
g01.in.ua: could not connect to host
g1jeu.com: could not connect to host
@@ -5832,14 +5922,16 @@ gablaxian.com: max-age too low: 2592000
gabriele-kluge.de: could not connect to host
gaelleetarnaud.com: did not receive HSTS header
gafachi.com: could not connect to host
-gagor.pl: could not connect to host
+gaff-rig.co.uk: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
gaichanh.com: did not receive HSTS header
gailfellowsphotography.com: could not connect to host
gainesvillegoneaustin.org: did not receive HSTS header
gaiserik.com: did not receive HSTS header
gaite.me: did not receive HSTS header
gajas18.com: could not connect to host
+gakkainavi-epsilon.net: could not connect to host
gakkainavi4.com: could not connect to host
+gakkainavi4.net: could not connect to host
galardi.org: could not connect to host
galena.io: could not connect to host
galenskap.eu: could not connect to host
@@ -5876,7 +5968,6 @@ gamers-life.fr: could not connect to host
gamerslair.org: did not receive HSTS header
gamerz-point.de: could not connect to host
gamerz-stream.com: did not receive HSTS header
-gamesdepartment.co.uk: could not connect to host
gameserver-sponsor.de: did not receive HSTS header
gamesurferapp.com: could not connect to host
gameswitchers.uk: could not connect to host
@@ -5887,13 +5978,14 @@ gamingmedia.eu: did not receive HSTS header
gamingreinvented.com: did not receive HSTS header
gamoice.com: did not receive HSTS header
gampenhof.de: could not connect to host
+gan.wtf: could not connect to host
gangnam-club.com: could not connect to host
gangnam-karaoke.com: could not connect to host
ganhonet.com.br: did not receive HSTS header
+ganyouxuan.com: could not connect to host
ganzgraph.de: did not receive HSTS header
gaon.network: could not connect to host
gaphag.ddns.net: could not connect to host
-gar-nich.net: could not connect to host
garage-abri-chalet.fr: did not receive HSTS header
garage-door.pro: could not connect to host
garageon.net: did not receive HSTS header
@@ -5905,13 +5997,15 @@ gardencarezone.com: did not receive HSTS header
garfieldairlines.net: did not receive HSTS header
garten-bau.ch: did not receive HSTS header
garten-diy.de: could not connect to host
+gartenhauszentrum.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
gasbarkenora.com: could not connect to host
gasnews.net: could not connect to host
gasser-daniel.ch: did not receive HSTS header
gastauftritt.net: did not receive HSTS header
gastritisolucion.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+gastromedicalcenter.com.br: did not receive HSTS header
gatapro.net: could not connect to host
-gatemotorsumhlanga.co.za: could not connect to host
+gatemotorsumhlanga.co.za: did not receive HSTS header
gatemoves.com: could not connect to host
gateworld.fr: did not receive HSTS header
gatilagata.com.br: could not connect to host
@@ -5921,14 +6015,17 @@ gaussorgues.me: could not connect to host
gautham.pro: could not connect to host
gavick.com: did not receive HSTS header
gay-sissies.com: could not connect to host
+gaya-sa.org: could not connect to host
gaycc.cc: could not connect to host
gaygeeks.de: could not connect to host
gaysfisting.com: could not connect to host
gaytorrent.ru: could not connect to host
gayxsite.com: could not connect to host
+gazee.net: did not receive HSTS header
gazflynn.com: did not receive HSTS header
gbit.xyz: could not connect to host
gc.net: could not connect to host
+gccm-events.com: did not receive HSTS header
gchoic.com: max-age too low: 7889238
gchp.ie: did not receive HSTS header
gdegem.org: did not receive HSTS header
@@ -5936,7 +6033,6 @@ gdevpenze.ru: could not connect to host
gdprhallofshame.com: could not connect to host
gdutnic.com: could not connect to host
gdz-otvety.com: could not connect to host
-gdz.tv: could not connect to host
gear-acquisition-syndrome.community: could not connect to host
geaskb.nl: could not connect to host
geblitzt.de: did not receive HSTS header
@@ -5944,13 +6040,15 @@ gedankenbude.info: could not connect to host
geekbaba.com: could not connect to host
geekcast.co.uk: did not receive HSTS header
geekchimp.com: did not receive HSTS header
-geekdt.com: could not connect to host
+geekdt.com: did not receive HSTS header
geekmind.org: max-age too low: 172800
geeks.berlin: could not connect to host
geeks.lgbt: could not connect to host
+geeks.one: did not receive HSTS header
geektimes.com: did not receive HSTS header
geeky.software: could not connect to host
geemo.top: could not connect to host
+geh.li: did not receive HSTS header
gehrke.nrw: could not connect to host
geigr.de: could not connect to host
geiser.io: did not receive HSTS header
@@ -5980,14 +6078,12 @@ geoffdev.com: could not connect to host
geoffmyers.com: did not receive HSTS header
geoffreyrichard.com: could not connect to host
geopals.net: did not receive HSTS header
-georgeperez.me: could not connect to host
+georgeperez.me: did not receive HSTS header
georgesonarthurs.com.au: did not receive HSTS header
-gerardobsd.com: could not connect to host
gereja.ga: max-age too low: 1209600
gerencianet.com.br: did not receive HSTS header
gereon.ch: could not connect to host
geri.be: could not connect to host
-germanticz.de: could not connect to host
gers-authentique.com: could not connect to host
gerum.dynv6.net: did not receive HSTS header
geschenkly.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
@@ -5997,6 +6093,7 @@ gesunde-smoothies.de: did not receive HSTS header
gesundes-im-napf.de: did not receive HSTS header
get-asterisk.ru: could not connect to host
get-cctv.com: could not connect to host
+get-link.info: could not connect to host
get.zenpayroll.com: did not receive HSTS header
getable.com: did not receive HSTS header
getblys.com.au: did not receive HSTS header
@@ -6028,12 +6125,13 @@ getlittleapps.com: could not connect to host
getlolaccount.com: did not receive HSTS header
getmassage.com.ng: could not connect to host
getmondo.co.uk: could not connect to host
-geto.ml: could not connect to host
+geto.ml: did not receive HSTS header
getpake.com: could not connect to host
getpop.org: did not receive HSTS header
-getpost.online: did not receive HSTS header
+getpost.online: could not connect to host
getremembrall.com: could not connect to host
getronics.care: could not connect to host
+getsecure.nl: could not connect to host
getsello.com: could not connect to host
getserum.xyz: could not connect to host
getsetupfile.com: did not receive HSTS header
@@ -6042,6 +6140,7 @@ getspeaker.com: did not receive HSTS header
getspire.com: could not connect to host
getwarden.net: could not connect to host
getwashdaddy.com: could not connect to host
+getweloop.io: did not receive HSTS header
getyourphix.tk: could not connect to host
gevaulug.fr: could not connect to host
gfbouncycastles.co.uk: did not receive HSTS header
@@ -6049,6 +6148,7 @@ gfhgiro.nl: did not receive HSTS header
gfm.tech: could not connect to host
gfoss.gr: could not connect to host
gfw.moe: could not connect to host
+gfwno.win: did not receive HSTS header
gfwsb.ml: could not connect to host
gglks.com: could not connect to host
ggobbo.com: could not connect to host
@@ -6061,10 +6161,10 @@ gheorghe-sarcov.ga: could not connect to host
gheorghesarcov.ga: could not connect to host
gheorghesarcov.tk: could not connect to host
ghi.gov: could not connect to host
-ghibli.studio: did not receive HSTS header
+ghibli.studio: could not connect to host
+ghid-pitesti.ro: did not receive HSTS header
ghkim.net: could not connect to host
ghuntley.com: max-age too low: 0
-giakki.eu: could not connect to host
gianlucapartengo.photography: did not receive HSTS header
giant-powerfit.co.uk: did not receive HSTS header
gibraltar-firma.com: did not receive HSTS header
@@ -6095,6 +6195,7 @@ gip-carif-idf.net: could not connect to host
gip-carif-idf.org: could not connect to host
gipsamsfashion.com: could not connect to host
gipsic.com: did not receive HSTS header
+girlsgonesporty.com: could not connect to host
gis3m.org: did not receive HSTS header
gisac.org: did not receive HSTS header
gistfy.com: could not connect to host
@@ -6117,7 +6218,6 @@ glbg.eu: did not receive HSTS header
gle: could not connect to host
glenavy.tk: could not connect to host
glentakahashi.com: could not connect to host
-glicerina.online: did not receive HSTS header
glittersjabloon.nl: did not receive HSTS header
glitzmirror.com: could not connect to host
glnpo.gov: could not connect to host
@@ -6132,10 +6232,12 @@ globalmusic.ga: could not connect to host
globalnewsdaily.cf: could not connect to host
globalnomadvintage.com: could not connect to host
globalperspectivescanada.com: could not connect to host
+globalresistancecorporation.com: could not connect to host
globalsites.nl: did not receive HSTS header
globaltennis.ca: could not connect to host
globalvisions-events.ch: could not connect to host
globalvisions-events.com: could not connect to host
+globeinform.com: did not receive HSTS header
globuli-info.de: could not connect to host
gloomyspark.com: could not connect to host
glotter.com: did not receive HSTS header
@@ -6143,16 +6245,15 @@ gloucesterphotographer.com: did not receive HSTS header
glubbforum.de: did not receive HSTS header
glutenfreiheit.at: did not receive HSTS header
glws.org: did not receive HSTS header
-glyph.ws: could not connect to host
gm-assicurazioni.it: could not connect to host
gmail.com: did not receive HSTS header (error ignored - included regardless)
gmanukyan.com: could not connect to host
gmat.ovh: could not connect to host
gmoes.at: did not receive HSTS header
-gmslparking.co.uk: did not receive HSTS header
gnaptracker.tk: could not connect to host
gnom.me: could not connect to host
gnosticjade.net: did not receive HSTS header
+gnwp.eu: could not connect to host
go.ax: did not receive HSTS header
go2sh.de: did not receive HSTS header
go4it.solutions: did not receive HSTS header
@@ -6170,6 +6271,7 @@ gocardless.com: did not receive HSTS header
godrealms.com: could not connect to host
goedeke.ml: could not connect to host
goerner.me: did not receive HSTS header
+goesta-hallenbau.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
goge.site: could not connect to host
gogenenglish.com: could not connect to host
gogetssl.com: did not receive HSTS header
@@ -6190,11 +6292,13 @@ goldwaterscholarship.gov: could not connect to host
golearn.gov: could not connect to host
golfburn.com: could not connect to host
golocal-media.de: could not connect to host
+gomiblog.com: did not receive HSTS header
gong8.win: could not connect to host
gongjianwei.com: could not connect to host
gonkar.com: did not receive HSTS header
gonzalosanchez.mx: did not receive HSTS header
goodeats.nyc: did not receive HSTS header
+goodfeels.net: could not connect to host
goodfurday.ca: could not connect to host
goodmengroup.de: did not receive HSTS header
goods-memo.net: did not receive HSTS header
@@ -6213,6 +6317,7 @@ goozz.nl: did not receive HSTS header
gopay.cz: did not receive HSTS header
gopokego.cz: could not connect to host
goranrango.ch: could not connect to host
+gordonobrecht.com: did not receive HSTS header
gorgiaxx.com: could not connect to host
gorilla-gym.site: could not connect to host
gorillow.com: could not connect to host
@@ -6246,6 +6351,7 @@ gpga.cf: could not connect to host
gplintegratedit.com: could not connect to host
gpo.gov: did not receive HSTS header
gpstuner.com: did not receive HSTS header
+gra2.com: could not connect to host
graavaapi.elasticbeanstalk.com: could not connect to host
grabi.ga: could not connect to host
gracechurchpc.net: could not connect to host
@@ -6260,7 +6366,6 @@ gradsm-ci.net: could not connect to host
grafitec.ru: did not receive HSTS header
graftworld.pw: could not connect to host
grandchamproofing.com: did not receive HSTS header
-grande.coffee: could not connect to host
grandlinecsk.ru: did not receive HSTS header
grandmascookieblog.com: did not receive HSTS header
grandmasfridge.org: did not receive HSTS header
@@ -6268,6 +6373,8 @@ grandwailea.com: did not receive HSTS header
grantedby.me: max-age too low: 0
granth.io: could not connect to host
graph.no: did not receive HSTS header
+graphcommons.com: did not receive HSTS header
+graphified.nl: did not receive HSTS header
graphite.org.uk: could not connect to host
graphsearchengine.com: could not connect to host
gratis-app.com: did not receive HSTS header
@@ -6299,6 +6406,8 @@ greenvpn.ltd: could not connect to host
greenvpn.pro: did not receive HSTS header
greggsfoundation.org.uk: could not connect to host
gregmartyn.com: could not connect to host
+gregmarziomedia.co.za: did not receive HSTS header
+gregmilton.org: could not connect to host
gregorytlee.me: could not connect to host
grekland.guide: could not connect to host
gremots.com: could not connect to host
@@ -6309,6 +6418,7 @@ grettogeek.com: did not receive HSTS header
greuel.online: could not connect to host
greve.xyz: could not connect to host
grevesgarten.de: could not connect to host
+greyhash.se: could not connect to host
greyline.se: could not connect to host
grian-bam.at: did not receive HSTS header
gribani.com: could not connect to host
@@ -6322,7 +6432,6 @@ gritte.net: could not connect to host
griyo.online: could not connect to host
groben-itsolutions.de: could not connect to host
groenewoud.run: could not connect to host
-groenteclub.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
groentefruitzeep.com: could not connect to host
groentefruitzeep.nl: could not connect to host
groetzner.net: did not receive HSTS header
@@ -6337,21 +6446,20 @@ grow-shop.lt: could not connect to host
grow-shop.lv: could not connect to host
growingmetrics.com: could not connect to host
grozip.com: did not receive HSTS header
-grozter.se: did not receive HSTS header
gruelang.org: could not connect to host
gruenderwoche-dresden.de: did not receive HSTS header
grumples.biz: did not receive HSTS header
grunex.com: did not receive HSTS header
grupopgn.com.br: could not connect to host
-grusig-geil.ch: could not connect to host
+gruppoipl.it: could not connect to host
gryffin.ga: could not connect to host
gryffin.ml: could not connect to host
gryffin.tk: could not connect to host
gs-net.at: could not connect to host
+gsdb.net: max-age too low: 0
gsm-map.com: could not connect to host
gsmkungen.com: could not connect to host
gsnort.com: did not receive HSTS header
-gsoc.se: could not connect to host
gtamodshop.org: could not connect to host
gtanda.tk: could not connect to host
gtech.work: did not receive HSTS header
@@ -6377,8 +6485,8 @@ guidesetc.com: did not receive HSTS header
guilde-vindicta.fr: could not connect to host
guildgearscore.cf: could not connect to host
guillaume-leduc.fr: did not receive HSTS header
+guillaumecote.me: could not connect to host
guillaumematheron.fr: did not receive HSTS header
-guillaumeperrin.io: could not connect to host
guiltypleasuresroleplaying.com: did not receive HSTS header
guinea-pig.co: could not connect to host
guineafruitcorp.com: could not connect to host
@@ -6395,8 +6503,8 @@ guniram.com: did not receive HSTS header
gunnarhafdal.com: did not receive HSTS header
gunnaro.com: could not connect to host
guntbert.net: could not connect to host
+guochang.xyz: could not connect to host
guoqiang.info: did not receive HSTS header
-gurochan.ch: could not connect to host
gurom.lv: could not connect to host
gurubetng.com: did not receive HSTS header
gurusupe.com: could not connect to host
@@ -6409,6 +6517,7 @@ gussi.is: did not receive HSTS header
guthabenkarten-billiger.de: could not connect to host
guts.me: did not receive HSTS header
guts.moe: did not receive HSTS header
+guvernalternativa.ro: could not connect to host
guyot-tech.com: did not receive HSTS header
gvchannel.xyz: could not connect to host
gvi.be: did not receive HSTS header
@@ -6425,8 +6534,8 @@ gxgx.org: 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: did not receive HSTS header
gylauto.fr: could not connect to host
-gymjp.com: did not receive HSTS header
gypsycatdreams.com: could not connect to host
gypthecat.com: did not receive HSTS header
gyz.io: did not receive HSTS header
@@ -6436,7 +6545,6 @@ h-rickroll-n.pw: could not connect to host
h2cdn.cloud: could not connect to host
h2check.org: could not connect to host
h3x.jp: could not connect to host
-ha6.ru: could not connect to host
haarkliniek.com: did not receive HSTS header
habbixed.tk: could not connect to host
habbo.life: could not connect to host
@@ -6444,15 +6552,15 @@ habbotalk.nl: could not connect to host
habeo.si: could not connect to host
hablemosdetecnologia.com.ve: could not connect to host
hac30.com: could not connect to host
-hack.club: could not connect to host
+hack.cz: could not connect to host
hack.li: could not connect to host
+hackattack.com: did not receive HSTS header
hackbubble.me: could not connect to host
-hacker.club: could not connect to host
hacker.deals: could not connect to host
hacker8.cn: could not connect to host
hackercat.ninja: max-age too low: 2592000
-hackerforever.com: could not connect to host
-hackerlite.xyz: did not receive HSTS header
+hackerco.com: could not connect to host
+hackerforever.com: did not receive HSTS header
hackerone-ext-adroll.com: could not connect to host
hackerspace-ntnu.no: did not receive HSTS header
hackest.org: did not receive HSTS header
@@ -6461,7 +6569,6 @@ hackit.im: could not connect to host
hackmeplz.com: could not connect to host
hackroyale.xyz: could not connect to host
hacksnack.io: could not connect to host
-hackthissite.org: could not connect to host
hackyourfaceoff.com: could not connect to host
hackzogtum-coburg.de: did not receive HSTS header
hadaf.pro: could not connect to host
@@ -6475,12 +6582,14 @@ hafoda.com: did not receive HSTS header
haggeluring.su: could not connect to host
hahayidu.org: could not connect to host
hail2u.net: did not receive HSTS header
+haimablog.ooo: could not connect to host
hainoni.com: did not receive HSTS header
hairlossstop.net: did not receive HSTS header
haitschi.com: could not connect to host
haitschi.de: did not receive HSTS header
haitschi.net: could not connect to host
haitschi.org: could not connect to host
+haizum.pro: could not connect to host
haktec.de: did not receive HSTS header
haku.moe: could not connect to host
hakugin.me: could not connect to host
@@ -6499,7 +6608,6 @@ hamking.tk: could not connect to host
hammamsayad.com: could not connect to host
hamon.cc: did not receive HSTS header
hamu.blue: could not connect to host
-hanakaraku.com: could not connect to host
hancatemc.com: did not receive HSTS header
hancc.net: could not connect to host
handenafvanhetmedischdossier.nl: could not connect to host
@@ -6529,13 +6637,12 @@ haobo5555.com: could not connect to host
haobo6666.com: could not connect to host
haobo7777.com: could not connect to host
haomwei.com: could not connect to host
-haoqi.men: could not connect to host
haoyugao.com: could not connect to host
happist.com: did not receive HSTS header
happix.nl: did not receive HSTS header
happyfabric.me: did not receive HSTS header
happygastro.com: could not connect to host
-happyheartsabode.com: did not receive HSTS header
+happyheartsabode.com: could not connect to host
happytiger.eu: could not connect to host
hapsfordmill.co.uk: could not connect to host
hapvm.com: could not connect to host
@@ -6553,6 +6660,7 @@ harlentimberproducts.co.uk: did not receive HSTS header
harmonycosmetic.com: max-age too low: 300
harrisonsdirect.co.uk: did not receive HSTS header
harristony.com: could not connect to host
+harry-baker.com: could not connect to host
harryharrison.co: did not receive HSTS header
harrypottereditor.com: could not connect to host
harrypottereditor.net: could not connect to host
@@ -6560,7 +6668,6 @@ harschnitz.nl: did not receive HSTS header
hartlep.eu: could not connect to host
hartmancpa.com: did not receive HSTS header
harvestrenewal.org: did not receive HSTS header
-harveymilton.com: did not receive HSTS header
harz.cloud: could not connect to host
has.vision: could not connect to host
hasabig.wang: could not connect to host
@@ -6569,7 +6676,6 @@ haschrebellen.de: could not connect to host
hash-list.com: could not connect to host
hashiconf.com: did not receive HSTS header
hashidays.com: did not receive HSTS header
-hashimah.ca: could not connect to host
hashplex.com: could not connect to host
hasinase.de: could not connect to host
haste.ch: could not connect to host
@@ -6583,7 +6689,6 @@ hausarzt-stader-str.de: did not receive HSTS header
hauswarteam.com: could not connect to host
hav.com: could not connect to host
haveeruexaminer.com: could not connect to host
-haven-moon.com: could not connect to host
haven-staging.cloud: could not connect to host
haven.cloud: did not receive HSTS header
havenmoon.com: could not connect to host
@@ -6592,7 +6697,7 @@ hawk-la.com: could not connect to host
hawthornharpist.com: could not connect to host
haxoff.com: did not receive HSTS header
haxon.me: could not connect to host
-haxx.hu: did not receive HSTS header
+haxx.hu: could not connect to host
haydenhill.us: could not connect to host
hayleishop.fr: did not receive HSTS header
hazcod.com: could not connect to host
@@ -6603,6 +6708,7 @@ hazyrom.net: could not connect to host
hb1111.com: could not connect to host
hb3333.com: could not connect to host
hb4444.com: could not connect to host
+hb8522.com: did not receive HSTS header
hbbet.com: could not connect to host
hbdesign.work: could not connect to host
hbvip.com: could not connect to host
@@ -6622,7 +6728,6 @@ hcs-company.com: did not receive HSTS header
hcs-company.nl: did not receive HSTS header
hcstr.com: did not receive HSTS header
hd1tj.org: did not receive HSTS header
-hda.me: 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 :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
hdrboundless.com: could not connect to host
hdritalyphotos.com: did not receive HSTS header
@@ -6638,9 +6743,9 @@ healthcare6.com: did not receive HSTS header
healthjoy.com: did not receive HSTS header
healthyandnaturalliving.com: could not connect to host
healthycod.in: could not connect to host
-healtious.com: could not connect to host
+healtious.com: did not receive HSTS header
hearingshofar.com: could not connect to host
-heart.ge: did not receive HSTS header
+heart.ge: could not connect to host
heartlandrentals.com: did not receive HSTS header
hearty.cf: did not receive HSTS header
hearty.ink: could not connect to host
@@ -6653,8 +6758,8 @@ heathmanners.com: could not connect to host
heavenlyseals.com: could not connect to host
heavenlysmokenc.com: could not connect to host
heavystresser.com: could not connect to host
-heayao.com: could not connect to host
hebaus.com: could not connect to host
+hebriff.com: could not connect to host
hectorj.net: could not connect to host
hedweb.com: could not connect to host
heidilein.info: did not receive HSTS header
@@ -6728,8 +6833,8 @@ hexe.net: did not receive HSTS header
hexhu.com: could not connect to host
hexo.io: did not receive HSTS header
hexobind.com: could not connect to host
-hexstream.net: did not receive HSTS header
heyguevara.com: did not receive HSTS header
+heyjournal.com: could not connect to host
heywoodtown.co.uk: did not receive HSTS header
hfbg.nl: did not receive HSTS header
hfcbank.com.gh: could not connect to host
@@ -6749,6 +6854,7 @@ hiddenprocess.com: did not receive HSTS header
hiddenrefuge.eu.org: could not connect to host
hidedd.com: could not connect to host
hideftv.deals: could not connect to host
+hideouswebsite.com: could not connect to host
hideout.agency: could not connect to host
hidrofire.com: did not receive HSTS header
hiexmerida-mailing.com: did not receive HSTS header
@@ -6784,11 +6890,14 @@ hinkel-sohn.de: did not receive HSTS header
hinrich.de: did not receive HSTS header
hintergedanken.com: could not connect to host
hintermeier-rae.at: did not receive HSTS header
+hiojbk.com: could not connect to host
hipercultura.com: did not receive HSTS header
hiphop.ren: could not connect to host
hiphopconvention.nl: could not connect to host
+hipi.jp: could not connect to host
hipnos.net: did not receive HSTS header
hipnoseinstitute.org: did not receive HSTS header
+hirakatakoyou.org: did not receive HSTS header
hiraku.me: did not receive HSTS header
hireprofs.com: could not connect to host
hiresuccessstaffing.com: did not receive HSTS header
@@ -6796,18 +6905,19 @@ hiretech.com: did not receive HSTS header
hirevets.gov: did not receive HSTS header
hirokilog.com: could not connect to host
hisingenrunt.se: did not receive HSTS header
+hisnet.de: could not connect to host
histoire-theatre.com: did not receive HSTS header
history.pe: could not connect to host
hitchunion.org: could not connect to host
hitoy.org: did not receive HSTS header
hittipps.com: could not connect to host
hivatal-info.hu: could not connect to host
-hiyuki2578.net: could not connect to host
hjes.com.ve: could not connect to host
hjf-immobilien.de: did not receive HSTS header
hjkhs.cn: did not receive HSTS header
hknet.at: did not receive HSTS header
hlacosedora.com: max-age too low: 7889238
+hloe0xff.ru: could not connect to host
hlpublicidad.com: could not connect to host
hlyue.com: did not receive HSTS header
hm1ch.com: could not connect to host
@@ -6819,6 +6929,7 @@ hobaugh.social: could not connect to host
hobby-gamerz-community.de: did not receive HSTS header
hocassian.cn: did not receive HSTS header
hochzeitshelferlein.de: did not receive HSTS header
+hockey.academy: did not receive HSTS header
hodamakade.com: could not connect to host
hodne.io: could not connect to host
hoekwoningverkopen.nl: could not connect to host
@@ -6855,6 +6966,7 @@ homeclouding.de: could not connect to host
homecoming.city: could not connect to host
homedna.com: did not receive HSTS header
homeexx.com: did not receive HSTS header
+homeoesp.org: did not receive HSTS header
homeownersassociationmanagementla.com: did not receive HSTS header
homeremodelingcontractorsca.com: did not receive HSTS header
homesandal.com: did not receive HSTS header
@@ -6871,7 +6983,7 @@ hongzu.cc: could not connect to host
hongzuwang.com: could not connect to host
hongzuzhibo.com: could not connect to host
honkhonk.net: could not connect to host
-honkion.net: could not connect to host
+honoka.tech: could not connect to host
honoo.com: could not connect to host
hoodiecrow.com: could not connect to host
hoodoo.io: could not connect to host
@@ -6879,13 +6991,11 @@ hoodoo.tech: could not connect to host
hookandloom.com: did not receive HSTS header
hookbin.com: could not connect to host
hoopsacademyusa.com: could not connect to host
-hooray.beer: could not connect to host
hoovism.com: did not receive HSTS header
hopesb.org: did not receive HSTS header
hopewellproperties.co.uk: did not receive HSTS header
hopglass.eu: could not connect to host
hopglass.net: could not connect to host
-hoponmedia.de: could not connect to host
hopzone.net: could not connect to host
horace.li: did not receive HSTS header
horisonttimedia.fi: did not receive HSTS header
@@ -6911,7 +7021,6 @@ hostinaus.com.au: did not receive HSTS header
hostingfirst.nl: could not connect to host
hostingfj.com: could not connect to host
hostisan.com: could not connect to host
-hostworkz.com: could not connect to host
hosyaku.gr.jp: did not receive HSTS header
hot-spa.ch: did not receive HSTS header
hotartup.com: could not connect to host
@@ -6935,13 +7044,15 @@ housingstudents.org.uk: could not connect to host
how2fsbo.com: could not connect to host
howardwatts.co.uk: did not receive HSTS header
howfargames.com: could not connect to host
+howmanymilesfrom.com: could not connect to host
howrandom.org: could not connect to host
howtocuremysciatica.com: could not connect to host
howtofreelance.com: did not receive HSTS header
hozinga.de: could not connect to host
hpctecnologias.com: did not receive HSTS header
hpeditor.tk: could not connect to host
-hpepub.asia: did not receive HSTS header
+hpepub.asia: could not connect to host
+hpepub.com: did not receive HSTS header
hpepub.org: could not connect to host
hppub.info: could not connect to host
hppub.org: could not connect to host
@@ -6954,10 +7065,11 @@ hr-tech.store: could not connect to host
hr98.tk: could not connect to host
hrackydomino.cz: did not receive HSTS header
hrfhomelottery.com: did not receive HSTS header
+hrobert.hu: could not connect to host
hrtech.store: could not connect to host
hrtraining.com.au: did not receive HSTS header
+hru.gov: could not connect to host
hschen.top: could not connect to host
-hserver.top: could not connect to host
hsir.me: could not connect to host
hsts-preload-test.xyz: could not connect to host
hsts.com.br: could not connect to host
@@ -6968,19 +7080,19 @@ htlball.at: could not connect to host
html-lab.tk: could not connect to host
http418.xyz: could not connect to host
httphacker.com: could not connect to host
+https.jetzt: did not receive HSTS header
https.ps: could not connect to host
https.ren: could not connect to host
httpstatuscode418.xyz: could not connect to host
httptest.net: could not connect to host
-hu8hu8.com: could not connect to host
-huang-haitao.com: did not receive HSTS header
huang.nu: could not connect to host
huangguancq.com: could not connect to host
huangh.com: could not connect to host
+huangting.me: did not receive HSTS header
huangzenghao.com: could not connect to host
huarongdao.com: did not receive HSTS header
hubert.systems: did not receive HSTS header
-hubertmoszka.pl: could not connect to host
+hubertmoszka.pl: max-age too low: 0
hubrick.com: could not connect to host
hudhaifahgoga.co.za: could not connect to host
hudingyuan.cn: could not connect to host
@@ -6988,16 +7100,16 @@ hugocollignon.fr: could not connect to host
huiser.nl: could not connect to host
hukaloh.com: could not connect to host
hukkatavara.com: could not connect to host
+hulsoft.co.uk: could not connect to host
humanexperiments.com: could not connect to host
humblefinances.com: could not connect to host
humeurs.net: could not connect to host
-humorce.com: did not receive HSTS header
humortuga.pt: did not receive HSTS header
hump.dk: could not connect to host
humpi.at: could not connect to host
humpteedumptee.in: did not receive HSTS header
-hunger.im: could not connect to host
hunqz.com: could not connect to host
+hunstoncanoeclub.co.uk: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
huntshomeinspections.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
huodongweb.com: could not connect to host
huoduan.com: did not receive HSTS header
@@ -7028,7 +7140,7 @@ hydronium.ga: could not connect to host
hydronium.me: could not connect to host
hydronium.ml: could not connect to host
hydronium.tk: could not connect to host
-hydronyx.me: could not connect to host
+hydronyx.me: did not receive HSTS header
hydrosight.com: did not receive HSTS header
hyeok.org: did not receive HSTS header
hymerscollege.co.uk: max-age too low: 43200
@@ -7047,6 +7159,7 @@ hzh.pub: did not receive HSTS header
hztgzz.com: could not connect to host
i--b.com: did not receive HSTS header
i-jp.net: could not connect to host
+i-meto.com: did not receive HSTS header
i-partners.sk: could not connect to host
i-rickroll-n.pw: could not connect to host
i-stats.net: could not connect to host
@@ -7054,7 +7167,6 @@ i10z.com: could not connect to host
i28s.com: did not receive HSTS header
i496.eu: could not connect to host
i4m1k0su.com: could not connect to host
-i95.me: could not connect to host
i9multiequipamentos.com.br: did not receive HSTS header
ia1000.com: could not connect to host
iacono.com.br: did not receive HSTS header
@@ -7064,6 +7176,7 @@ iamokay.nl: did not receive HSTS header
iamreubin.co.uk: did not receive HSTS header
iamsoareyou.se: could not connect to host
iamveto.com: did not receive HSTS header
+ian.sh: did not receive HSTS header
iapws.com: did not receive HSTS header
iban.is: could not connect to host
ibarf.nl: did not receive HSTS header
@@ -7080,6 +7193,7 @@ ibpsrecruitment.co.in: could not connect to host
ibron.co: could not connect to host
ibsafrica.co.za: could not connect to host
ibsglobal.co.za: could not connect to host
+icabanken.se: did not receive HSTS header
icaforsakring.se: did not receive HSTS header
icasnetwork.com: did not receive HSTS header
ice.yt: could not connect to host
@@ -7097,13 +7211,14 @@ ichnichtskaufmann.de: could not connect to host
ichoosebtec.com: did not receive HSTS header
ichronos.net: did not receive HSTS header
icity.ly: did not receive HSTS header
+ickerseashop.com: could not connect to host
icloud.net: could not connect to host
-icmshoptrend.com: did not receive HSTS header
icnsoft.ga: did not receive HSTS header
+icnsoft.me: did not receive HSTS header
+icnsoft.org: could not connect to host
icntorrent.download: could not connect to host
ico500.com: did not receive HSTS header
-icondoom.nl: did not receive HSTS header
-icowhitepapers.co: did not receive HSTS header
+icondoom.nl: could not connect to host
icpc2016.in.th: could not connect to host
icreative.nl: did not receive HSTS header
ictinforensics.org: could not connect to host
@@ -7124,7 +7239,6 @@ idealmykonos.com: did not receive HSTS header
idealvenir.com: did not receive HSTS header
ideapaisajistas.es: did not receive HSTS header
ideaplus.me: could not connect to host
-ideasenfoto.com: max-age too low: 604800
ideasmeetingpoint.com: could not connect to host
ideation-inc.co.jp: could not connect to host
idedr.com: could not connect to host
@@ -7132,7 +7246,6 @@ idemo.in: could not connect to host
identity-hash.online: could not connect to host
identitylabs.uk: could not connect to host
identitysandbox.gov: could not connect to host
-identitytheft.gov: did not receive HSTS header
idgsupply.com: did not receive HSTS header
idid.tk: could not connect to host
idinby.dk: did not receive HSTS header
@@ -7144,6 +7257,7 @@ idontexist.me: could not connect to host
idsafe.co.za: could not connect to host
idsoccer.com: did not receive HSTS header
iec.pe: could not connect to host
+iemas.azurewebsites.net: did not receive HSTS header
iemb.cf: could not connect to host
ierna.com: did not receive HSTS header
ies.id.lv: could not connect to host
@@ -7156,12 +7270,13 @@ ifan.ch: could not connect to host
ifastuniversity.com: did not receive HSTS header
ifcfg.me: could not connect to host
ifconfig.co: did not receive HSTS header
+ifengge.cn: did not receive HSTS header
+ifengge.me: did not receive HSTS header
ifleurs.com: could not connect to host
-ifreetion.cn: did not receive HSTS header
+ifreetion.cn: could not connect to host
ifx.ee: could not connect to host
ifxnet.com: could not connect to host
ifxor.com: could not connect to host
-iga-semi.jp: could not connect to host
igamingforums.com: could not connect to host
igd.chat: did not receive HSTS header
igforums.com: could not connect to host
@@ -7170,8 +7285,8 @@ igiftcards.nl: did not receive HSTS header
ignatisd.gr: did not receive HSTS header
igule.net: could not connect to host
iha6.com: could not connect to host
+ihls.xyz: could not connect to host
ihongzu.com: could not connect to host
-ihotel.io: did not receive HSTS header
ihrlotto.de: could not connect to host
ihrnationalrat.ch: could not connect to host
ihsbsd.me: could not connect to host
@@ -7189,7 +7304,6 @@ ikenmeyer.com: could not connect to host
ikenmeyer.eu: could not connect to host
ikocik.sk: could not connect to host
ikon.name: could not connect to host
-ikraenglish.com: could not connect to host
ikwilguidobellen.nl: could not connect to host
ikzoekeengoedkopeauto.nl: could not connect to host
ikzoekjeugdhulp.nl: did not receive HSTS header
@@ -7204,8 +7318,6 @@ ilikfreshweedstores.com: did not receive HSTS header
ilmconpm.de: could not connect to host
iloilofit.org: did not receive HSTS header
ilona.graphics: did not receive HSTS header
-iltec-prom.ru: could not connect to host
-iltec.ru: could not connect to host
iluvscotland.co.uk: did not receive HSTS header
im-design.com.ua: did not receive HSTS header
image.tf: could not connect to host
@@ -7214,7 +7326,6 @@ imagecurl.org: could not connect to host
imaginarymakings.me: could not connect to host
imakepoems.net: could not connect to host
imanhearts.com: did not receive HSTS header
-imanolbarba.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
imanudin.net: did not receive HSTS header
imbrian.org: could not connect to host
ime.moe: could not connect to host
@@ -7225,7 +7336,6 @@ imfromthefuture.com: did not receive HSTS header
img.ovh: could not connect to host
imgencrypt.com: could not connect to host
imgul.net: could not connect to host
-imguoguo.com: could not connect to host
imim.pw: could not connect to host
imjiangtao.com: did not receive HSTS header
imlinan.cn: could not connect to host
@@ -7236,6 +7346,7 @@ immanuel60.hu: did not receive HSTS header
immaternity.com: could not connect to host
immersionwealth.com: could not connect to host
immo-vk.de: did not receive HSTS header
+immobiliarecapitani.com: did not receive HSTS header
immobilien-wallat.de: could not connect to host
immoprotect.ca: did not receive HSTS header
immortals-co.com: did not receive HSTS header
@@ -7255,7 +7366,6 @@ immunicity.top: could not connect to host
immunicity.win: could not connect to host
immunicity.works: could not connect to host
immunicity.world: could not connect to host
-imoe.ac.cn: did not receive HSTS header
imolug.org: did not receive HSTS header
imoner.com: could not connect to host
imoner.ga: could not connect to host
@@ -7264,7 +7374,7 @@ imoto.me: could not connect to host
imperdintechnologies.com: could not connect to host
imperialonlinestore.com: did not receive HSTS header
imperialwebsolutions.com: did not receive HSTS header
-implicitdenial.com: could not connect to host
+implicitdenial.com: did not receive HSTS header
imprenta-es.com: did not receive HSTS header
improvingwp.com: could not connect to host
impulse-clan.de: could not connect to host
@@ -7282,11 +7392,13 @@ inchomatic.com: did not receive HSTS header
increasetestosteronelevels.org: could not connect to host
inderagamono.net: could not connect to host
indesit-training.com: did not receive HSTS header
+indexyz.me: could not connect to host
indiecert.net: did not receive HSTS header
indieethos.com: did not receive HSTS header
indiemods.com: could not connect to host
indien.guide: could not connect to host
indilens.com: did not receive HSTS header
+indiraactive.com: could not connect to host
indiroyunu.com: did not receive HSTS header
indoorskiassen.nl: did not receive HSTS header
indostar303.com: did not receive HSTS header
@@ -7296,6 +7408,7 @@ industreiler.com.br: could not connect to host
industriasrenova.com: could not connect to host
industrybazar.com: max-age too low: 2592000
ineed.com.mt: could not connect to host
+inetpub.cn: could not connect to host
inexlog.fr: could not connect to host
inexpensivecomputers.net: could not connect to host
infcof.com: did not receive HSTS header
@@ -7323,6 +7436,7 @@ informaticapremium.com: did not receive HSTS header
informatik.zone: could not connect to host
infos-generation.com: did not receive HSTS header
infosec.rip: could not connect to host
+infosimmo.com: could not connect to host
infosoph.org: could not connect to host
infotics.es: did not receive HSTS header
infovae-idf.com: did not receive HSTS header
@@ -7335,6 +7449,7 @@ infura.co.th: could not connect to host
ingalabs.hu: could not connect to host
ingalls.run: could not connect to host
ingesol.fr: did not receive HSTS header
+ingredientdaddy.ro: could not connect to host
ingresscode.cn: did not receive HSTS header
inhelix.com: could not connect to host
inhive.group: did not receive HSTS header
@@ -7351,7 +7466,6 @@ injust.tk: could not connect to host
inkbunny.net: could not connect to host
inked-guy.de: could not connect to host
inkedguy.de: could not connect to host
-inkhor.se: could not connect to host
inkstory.gr: did not receive HSTS header
inksupply.com: did not receive HSTS header
inku.ovh: did not receive HSTS header
@@ -7364,10 +7478,10 @@ innophate-security.nl: could not connect to host
innovamag.ca: did not receive HSTS header
innovativebuildingsolutions.co.za: could not connect to host
innovativeideaz.org: could not connect to host
-innoventure.de: did not receive HSTS header
-inobun.jp: could not connect to host
+innoventure.de: could not connect to host
inondation.ch: could not connect to host
inorder.website: could not connect to host
+inovatec.com: did not receive HSTS header
inox.io: did not receive HSTS header
inoxio.com: did not receive HSTS header
inoxio.de: did not receive HSTS header
@@ -7377,7 +7491,6 @@ insane-bullets.com: could not connect to host
insane.zone: could not connect to host
inschrijfformulier.com: could not connect to host
inscript.pl: did not receive HSTS header
-insho.fashion: did not receive HSTS header
insideofgaming.de: could not connect to host
insite-feedback.com: could not connect to host
insouciant.org: could not connect to host
@@ -7392,23 +7505,27 @@ instantdev.io: could not connect to host
instantsubs.de: did not receive HSTS header
instaquiz.ru: could not connect to host
instasex.ch: could not connect to host
+instawi.com: could not connect to host
institutoflordelavida.com: could not connect to host
institutulcultural.ro: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
instruktor.io: could not connect to host
insurance: could not connect to host
insurethebox.tk: could not connect to host
int-ext-design.fr: could not connect to host
+int-ma.in: did not receive HSTS header
+integraelchen.de: could not connect to host
integrationinc.com: did not receive HSTS header
+integraxor.com.tw: did not receive HSTS header
integrityingovernmentidaho.com: could not connect to host
intel.gov: did not receive HSTS header
intel.li: could not connect to host
intelbet.es: did not receive HSTS header
intelbet.ro: did not receive HSTS header
intelldynamics.com: could not connect to host
-intensifyrsvp.com.au: could not connect to host
+intelliance.eu: could not connect to host
interboursegeneva.ch: did not receive HSTS header
+interchanges.io: max-age too low: 0
interference.io: did not receive HSTS header
-interfug.de: did not receive HSTS header
intergenx.co.uk: could not connect to host
intergenx.com: could not connect to host
intergenx.org: could not connect to host
@@ -7416,7 +7533,6 @@ intergenx.org.uk: could not connect to host
interhosts.co.za: could not connect to host
interim-cto.de: could not connect to host
interiorcheapo.com: could not connect to host
-interiorprofesional.com.ar: max-age too low: 604800
interiortradingco.com.au: could not connect to host
interleucina.org: did not receive HSTS header
interlocal.co.uk: could not connect to host
@@ -7425,12 +7541,14 @@ intermezzo-emmerich.de: did not receive HSTS header
intermezzo-emmerich.nl: did not receive HSTS header
internacao.com: did not receive HSTS header
internaldh.com: could not connect to host
+internationalschoolnewyork.com: could not connect to host
internaut.co.za: did not receive HSTS header
internet-pornografie.de: did not receive HSTS header
internetbugbounty.org: did not receive HSTS header
internetcasinos.de: could not connect to host
internetcensus.org: could not connect to host
internetdentalalliance.com: did not receive HSTS header
+internetmarkets.net: could not connect to host
internetradiocharts.de: did not receive HSTS header
internshipandwork.com: did not receive HSTS header
internshipandwork.ru: did not receive HSTS header
@@ -7467,9 +7585,9 @@ ioiart.eu: could not connect to host
iolife.dk: could not connect to host
ionas-law.ro: did not receive HSTS header
ionc.ca: could not connect to host
+ionote.me: did not receive HSTS header
iop.intuit.com: max-age too low: 86400
iora.fr: could not connect to host
-iosmods.com: did not receive HSTS header
iostips.ru: could not connect to host
iotfen.com: could not connect to host
iotsms.io: could not connect to host
@@ -7480,14 +7598,12 @@ ipbill.org.uk: could not connect to host
ipcfg.me: could not connect to host
ipfp.pl: did not receive HSTS header
iphonechina.net: could not connect to host
-iplantom.com: could not connect to host
iplife.cn: could not connect to host
iplog.info: could not connect to host
ipmimagazine.com: did not receive HSTS header
ipmotion.ca: could not connect to host
ipnetworking.net: could not connect to host
ipo-times.com: could not connect to host
-ipop.gr: did not receive HSTS header
iprice.co.id: did not receive HSTS header
iprice.hk: did not receive HSTS header
iprice.my: did not receive HSTS header
@@ -7507,10 +7623,11 @@ ipvsec.nl: could not connect to host
iqcn.co: could not connect to host
iqualtech.com: max-age too low: 7889238
ir-saitama.com: could not connect to host
-iran-poll.org: could not connect to host
+iran-poll.org: max-age too low: 0
+irandp.net: did not receive HSTS header
iranianlawschool.com: could not connect to host
iraqidinar.org: did not receive HSTS header
-irazimina.ru: could not connect to host
+irazimina.ru: did not receive HSTS header
irccloud.com: did not receive HSTS header
irelandesign.com: could not connect to host
irinkeby.nu: could not connect to host
@@ -7530,6 +7647,7 @@ irukandjilabs.com: could not connect to host
irun-telecom.co.uk: could not connect to host
irvinepa.org: max-age too low: 10540800
is-a-furry.org: did not receive HSTS header
+isaackabel.cf: could not connect to host
ischool.co.jp: did not receive HSTS header
isdf.me: could not connect to host
isdown.cz: could not connect to host
@@ -7541,24 +7659,27 @@ ishadowsocks.ltd: could not connect to host
ishillaryclintoninprisonyet.com: could not connect to host
ishome.org: could not connect to host
isidom.fr: did not receive HSTS header
+isinolsun.com: did not receive HSTS header
isipulsa.web.id: did not receive HSTS header
isisfighters.info: could not connect to host
isitamor.pm: could not connect to host
isitnuclearwaryet.com: could not connect to host
iskai.net: did not receive HSTS header
-islam.si: could not connect to host
+iskkk.com: could not connect to host
+iskkk.net: could not connect to host
islandinthenet.com: did not receive HSTS header
islandoilsupply.com: max-age too low: 300
islandpumpandtank.com: did not receive HSTS header
islandzero.net: did not receive HSTS header
islazia.fr: could not connect to host
+islief.com: could not connect to host
isntall.us: did not receive HSTS header
-isocom.eu: could not connect to host
isoface33.fr: did not receive HSTS header
isogen5.com: could not connect to host
isogram.nl: did not receive HSTS header
isoroc-nidzica.pl: could not connect to host
ispringcloud.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+ispweb.es: did not receive HSTS header
issala.org: did not receive HSTS header
isscouncil.com: could not connect to host
isslshop.com: could not connect to host
@@ -7568,9 +7689,11 @@ istaspirtslietas.lv: did not receive HSTS header
istgame.com: did not receive HSTS header
isthefieldcontrolsystemdown.com: could not connect to host
istherrienstillcoach.com: could not connect to host
+isthisus.org: did not receive HSTS header
isv.online: did not receive HSTS header
it-cave.com: could not connect to host
it-go.net: did not receive HSTS header
+it-kron.de: did not receive HSTS header
it-labor.info: did not receive HSTS header
it-schwerin.de: could not connect to host
it-sysoft.com: could not connect to host
@@ -7585,18 +7708,20 @@ itemton.com: could not connect to host
itfaq.nl: did not receive HSTS header
itfensi.net: max-age too low: 6307200
itforcc.com: did not receive HSTS header
+ithakama.com: could not connect to host
itilo.de: did not receive HSTS header
itinsight.hu: did not receive HSTS header
itiomassagem.com.br: did not receive HSTS header
itisjustnot.cricket: could not connect to host
itmanie.cz: could not connect to host
-itnews-bg.com: could not connect to host
+itnews-bg.com: did not receive HSTS header
+itogoyomi.com: did not receive HSTS header
itos.asia: did not receive HSTS header
itos.pl: did not receive HSTS header
itpol.dk: did not receive HSTS header
itpro-mg.de: could not connect to host
itproject.guru: did not receive HSTS header
-itrack.in.th: could not connect to host
+itrack.in.th: max-age too low: 2592000
itriskltd.com: did not receive HSTS header
its-schindler.de: could not connect to host
its-v.de: could not connect to host
@@ -7614,7 +7739,6 @@ ittop-gabon.com: could not connect to host
itu2015.de: could not connect to host
ius.io: did not receive HSTS header
iuscommunity.org: did not receive HSTS header
-ivanboi.com: could not connect to host
ivanilla.org: could not connect to host
ivanpolchenko.com: could not connect to host
ivi-co.com: max-age too low: 0
@@ -7622,6 +7746,7 @@ ivi-fertility.com: max-age too low: 0
ivi.es: max-age too low: 0
ivk.website: could not connect to host
ivklombard.ru: did not receive HSTS header
+ivxv.ee: could not connect to host
ivyshop.com.br: could not connect to host
iwannarefill.com: could not connect to host
iwex.swiss: could not connect to host
@@ -7632,6 +7757,7 @@ iww.mx: could not connect to host
ix8.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
ixec2.tk: could not connect to host
ixh.me: did not receive HSTS header
+ixio.cz: could not connect to host
iyinolaashafa.com: could not connect to host
izdiwho.com: could not connect to host
izolight.ch: could not connect to host
@@ -7643,20 +7769,22 @@ j-lsolutions.com: could not connect to host
j-rickroll-a.pw: could not connect to host
j0ng.xyz: could not connect to host
j15t98j.co.uk: did not receive HSTS header
+j2ee.cz: could not connect to host
j8y.de: did not receive HSTS header
+ja-dyck.de: could not connect to host
+ja-publications.agency: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
ja-publications.com: did not receive HSTS header
jaan.su: could not connect to host
jaaxypro.com: could not connect to host
+jability.ovh: did not receive HSTS header
jackalworks.com: could not connect to host
jackdoan.com: did not receive HSTS header
jackfahnestock.com: could not connect to host
jackops.com: could not connect to host
jacobparry.ca: max-age too low: 0
-jacobsenarquitetura.com: max-age too low: 5184000
-jadopado.com: could not connect to host
jaepinformatica.com: did not receive HSTS header
jagido.de: did not receive HSTS header
-jahliveradio.com: could not connect to host
+jahliveradio.com: did not receive HSTS header
jaimechanaga.com: could not connect to host
jaion.ml: could not connect to host
jak-na-les.cz: could not connect to host
@@ -7665,13 +7793,12 @@ jakewalker.xyz: did not receive HSTS header
jakincode.army: could not connect to host
jaksel.id: could not connect to host
jaksi.io: did not receive HSTS header
-jakubtopic.cz: could not connect to host
jamanji.com.ng: could not connect to host
-jamaware.org: did not receive HSTS header
+jamaware.org: could not connect to host
+jamberry.com.mx: could not connect to host
james-parker.com: did not receive HSTS header
james.je: could not connect to host
jamesandanneke.com: did not receive HSTS header
-jamesandpame.la: could not connect to host
jamesbradach.com: did not receive HSTS header
jamesburton.london: could not connect to host
jamesbywater.co.uk: could not connect to host
@@ -7688,7 +7815,7 @@ jamesf.xyz: could not connect to host
jamesforman.co.nz: did not receive HSTS header
jameshale.me: did not receive HSTS header
jamesheald.com: could not connect to host
-jamesl.ml: could not connect to host
+jamesl.ml: did not receive HSTS header
jamesmaurer.com: did not receive HSTS header
jamesrains.com: could not connect to host
jameswarp.com: could not connect to host
@@ -7699,7 +7826,6 @@ jan-cermak.cz: did not receive HSTS header
jan-daniels.de: did not receive HSTS header
jan27.org: did not receive HSTS header
janario.me: could not connect to host
-janebondsurety.com: did not receive HSTS header
jangho.me: could not connect to host
jangocloud.tk: could not connect to host
janheidler.dynv6.net: could not connect to host
@@ -7727,12 +7853,13 @@ japlex.com: could not connect to host
jaqen.ch: could not connect to host
jardins-utopie.net: could not connect to host
jaredbates.net: did not receive HSTS header
+jarivisual.com: did not receive HSTS header
jarl.ninja: could not connect to host
jarnail.ca: could not connect to host
jaroslavtrsek.cz: did not receive HSTS header
jarrodcastaing.com: did not receive HSTS header
jarrodcastaing.com.au: did not receive HSTS header
-jarsater.com: could not connect to host
+jarsater.com: did not receive HSTS header
jartza.org: could not connect to host
jasmineconseil.com: did not receive HSTS header
jasoncosper.com: did not receive HSTS header
@@ -7755,7 +7882,6 @@ jawn.ca: could not connect to host
jawnelodzkie.org.pl: could not connect to host
jaxageto.de: did not receive HSTS header
jayblock.com: did not receive HSTS header
-jayf.de: could not connect to host
jayharris.ca: could not connect to host
jaylen.com.ar: did not receive HSTS header
jayna.design: did not receive HSTS header
@@ -7781,7 +7907,6 @@ jcor.me: could not connect to host
jcoscia.com: could not connect to host
jcraft.us: could not connect to host
jctf.io: could not connect to host
-jcyz.cf: could not connect to host
jdav-leipzig.de: could not connect to host
jdcdirectsales.com.ph: could not connect to host
jdfk.net: could not connect to host
@@ -7791,13 +7916,13 @@ jdsf.tk: did not receive HSTS header
jean-remy.ch: could not connect to host
jebengotai.com: did not receive HSTS header
jecho.cn: could not connect to host
-jeepeg.com: did not receive HSTS header
jeff.forsale: could not connect to host
jeff.is: did not receive HSTS header
jeff393.com: could not connect to host
jeffersonregan.org: could not connect to host
jeffhuxley.com: could not connect to host
jeffreymagee.com: did not receive HSTS header
+jeffsanders.com: did not receive HSTS header
jehovahsays.net: could not connect to host
jeil-makes.co.kr: could not connect to host
jekkt.com: max-age too low: 604800
@@ -7811,6 +7936,7 @@ jens-prangenberg.de: did not receive HSTS header
jens.hk: could not connect to host
jensenbanden.no: could not connect to host
jenssen.org: did not receive HSTS header
+jeproteste.info: could not connect to host
jeremyc.ca: could not connect to host
jeremye77.com: did not receive HSTS header
jeremymade.com: did not receive HSTS header
@@ -7826,6 +7952,7 @@ jessicah.org: could not connect to host
jesuisformidable.nl: could not connect to host
jesuslucas.com: did not receive HSTS header
jet-code.com: could not connect to host
+jetbrains.pw: could not connect to host
jetlagphotography.com: could not connect to host
jeton.com: did not receive HSTS header
jetsetcharge.com: could not connect to host
@@ -7838,8 +7965,7 @@ jewellerydesignstore.com: could not connect to host
jewellerymarvels.com: did not receive HSTS header
jez.nl: could not connect to host
jfmel.com: did not receive HSTS header
-jfmhero.me: could not connect to host
-jfnllc.com: did not receive HSTS header
+jfnllc.com: could not connect to host
jfx.space: did not receive HSTS header
jh-media.eu: could not connect to host
jhburton.co.uk: could not connect to host
@@ -7847,6 +7973,7 @@ jhburton.uk: could not connect to host
jhcommunitysports.co.uk: could not connect to host
jhejderup.me: could not connect to host
jhermsmeier.de: could not connect to host
+jhuang.me: could not connect to host
jia1hao.com: could not connect to host
jiaidu.com: could not connect to host
jiangzequn.com: could not connect to host
@@ -7862,11 +7989,12 @@ jimas.eu: did not receive HSTS header
jimenacocina.com: did not receive HSTS header
jimgao.tk: did not receive HSTS header
jimmehcai.com: could not connect to host
-jimmycai.org: could not connect to host
jimmynelson.com: did not receive HSTS header
+jinancy.fr: could not connect to host
jingyuesi.com: could not connect to host
jinliming.ml: could not connect to host
jinmaguoji.com: could not connect to host
+jintaiyang123.org: could not connect to host
jiosongs.com: did not receive HSTS header
jira.com: did not receive HSTS header
jirav.io: could not connect to host
@@ -7888,7 +8016,7 @@ jm06.com: did not receive HSTS header
jm22.com: could not connect to host
jmb.lc: could not connect to host
jmdekker.it: could not connect to host
-jmssg.jp: could not connect to host
+jmoreau.ddns.net: could not connect to host
jmvbmx.ch: could not connect to host
jn1.me: did not receive HSTS header
jncde.de: did not receive HSTS header
@@ -7914,10 +8042,12 @@ jodel.ninja: could not connect to host
joe-pagan.com: did not receive HSTS header
joearodriguez.com: could not connect to host
joecod.es: could not connect to host
+joefixit.co.uk: could not connect to host
joelgonewild.com: did not receive HSTS header
-joepitt.co.uk: could not connect to host
joerg-wellpott.de: did not receive HSTS header
joetyson.io: could not connect to host
+joeysmith.com: could not connect to host
+johand.io: could not connect to host
johannaojanen.com: could not connect to host
johannes-bugenhagen.de: did not receive HSTS header
johannes-sprink.de: could not connect to host
@@ -7928,8 +8058,10 @@ johngaltgroup.com: did not receive HSTS header
johnhgaunt.com: did not receive HSTS header
johnrom.com: could not connect to host
johnsanchez.io: could not connect to host
+johnsiu.com: did not receive HSTS header
johntomasowa.com: could not connect to host
johnverkerk.com: could not connect to host
+johnyytb.be: did not receive HSTS header
joinamericacorps.gov: could not connect to host
jointoweb.com: could not connect to host
jomp16.tk: could not connect to host
@@ -7940,19 +8072,16 @@ jonathandowning.uk: did not receive HSTS header
jonathanmassacand.ch: could not connect to host
jonathanreyes.com: did not receive HSTS header
jonathansanchez.pro: could not connect to host
-jonathanselea.se: did not receive HSTS header
jonfor.net: could not connect to host
jongha.me: could not connect to host
jonn.me: could not connect to host
jonnichols.info: could not connect to host
-jons.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
jonsno.ws: could not connect to host
joostbovee.nl: did not receive HSTS header
jooto.com: did not receive HSTS header
jopl.org: did not receive HSTS header
jordankirby.co.uk: could not connect to host
jordanp.engineer: could not connect to host
-jordanscorporatelaw.com: could not connect to host
jordanstrustcompany.cn: could not connect to host
jordanstrustcompany.ru: could not connect to host
jordikroon.nl: could not connect to host
@@ -7962,9 +8091,10 @@ jornadasciberdefensa2016.es: could not connect to host
jorovik.com: did not receive HSTS header
jorrit.info: max-age too low: 0
josahrens.me: could not connect to host
-josc.com.au: could not connect to host
+jose.eti.br: did not receive HSTS header
joseaveleira.es: did not receive HSTS header
josecage.com: could not connect to host
+josemikkola.fi: could not connect to host
josephre.es: did not receive HSTS header
joshi.su: could not connect to host
joshplant.co.uk: could not connect to host
@@ -7981,6 +8111,7 @@ jpaglier.com: could not connect to host
jpbike.cz: did not receive HSTS header
jpcrochetapparel.com: could not connect to host
jpeaches.xyz: could not connect to host
+jpeg.io: could not connect to host
jpgangbang.com: could not connect to host
jproxx.com: did not receive HSTS header
jptun.com: could not connect to host
@@ -8008,12 +8139,12 @@ judge2020.com: did not receive HSTS header
juiced.gs: did not receive HSTS header
juka.pp.ua: could not connect to host
juku-info.top: did not receive HSTS header
-juku-wing.jp: could not connect to host
julegoerke.de: did not receive HSTS header
julenlanda.com: could not connect to host
juliamweber.de: could not connect to host
julian-kipka.de: did not receive HSTS header
julian-witusch.de: could not connect to host
+julianickel.de: could not connect to host
juliankirchner.ch: did not receive HSTS header
julianwallmeroth.de: could not connect to host
juliaoantiguidades.com.br: could not connect to host
@@ -8037,16 +8168,19 @@ junglegoat.xyz: did not receive HSTS header
juniwalk.cz: could not connect to host
junjung.me: 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
juridiqueo.com: did not receive HSTS header
juristeo.com: did not receive HSTS header
jurke.com: did not receive HSTS header
jurko.cz: could not connect to host
+jurriaan.ninja: could not connect to host
+just-a-clanpage.de: could not connect to host
just-english.online: did not receive HSTS header
just-pools.co.za: could not connect to host
just2trade.com: did not receive HSTS header
justiceforfathers.com: did not receive HSTS header
justiceo.org: did not receive HSTS header
+justinharrison.ca: did not receive HSTS header
justinlemay.com: could not connect to host
justinrudio.com: did not receive HSTS header
justlikethat.hosting: did not receive HSTS header
@@ -8074,16 +8208,14 @@ k-dev.de: could not connect to host
k-rickroll-g.pw: could not connect to host
k-wallet.com: did not receive HSTS header
k1cp.com: could not connect to host
-k33k00.com: could not connect to host
+k33k00.com: did not receive HSTS header
k38.cc: max-age too low: 3600
ka-clan.com: could not connect to host
kaanduman.com: could not connect to host
kaasbijwijn.nl: did not receive HSTS header
-kabarlinux.id: could not connect to host
-kabat-fans.cz: did not receive HSTS header
+kabat-fans.cz: could not connect to host
kabinapp.com: did not receive HSTS header
kabuabc.com: could not connect to host
-kabus.org: could not connect to host
kackscharf.de: could not connect to host
kadioglumakina.com.tr: did not receive HSTS header
kadmec.com: did not receive HSTS header
@@ -8092,15 +8224,18 @@ kahopoon.net: could not connect to host
kai.cool: did not receive HSTS header
kaika-facilitymanagement.de: could not connect to host
kaika-hms.de: did not receive HSTS header
+kaileymslusser.com: could not connect to host
kainetsoft.com: could not connect to host
kainz.bayern: could not connect to host
kainz.be: could not connect to host
-kaisers.de: did not receive HSTS header
+kaisers.de: could not connect to host
kaiyuewu.com: could not connect to host
kajlovo.cz: could not connect to host
kakaomilchkuh.de: did not receive HSTS header
kaketalk.com: did not receive HSTS header
-kakie-gobocha.jp: could not connect to host
+kakoo-media.nl: could not connect to host
+kakoo.nl: could not connect to host
+kakoomedia.nl: could not connect to host
kalami.nl: could not connect to host
kaleidomarketing.com: did not receive HSTS header
kaleidoskop-freiburg.de: did not receive HSTS header
@@ -8111,14 +8246,15 @@ kamalame.co: could not connect to host
kambodja.guide: could not connect to host
kamcvicit.sk: could not connect to host
kamikano.com: could not connect to host
-kamikatse.net: could not connect to host
kamitech.ch: could not connect to host
kanaanonline.org: max-age too low: 86400
kanada.guide: could not connect to host
kanagawachuo-hospital.jp: did not receive HSTS header
kanar.nl: could not connect to host
kancolle.me: could not connect to host
+kandalife.com: could not connect to host
kandec.co.jp: did not receive HSTS header
+kaneisdi.com: did not receive HSTS header
kaneo-gmbh.de: did not receive HSTS header
kanganer.com: could not connect to host
kangzaber.com: could not connect to host
@@ -8129,36 +8265,38 @@ kanr.in: could not connect to host
kanscooking.org: could not connect to host
kantorad.io: could not connect to host
kantv1.com: could not connect to host
-kanuvu.de: did not receive HSTS header
kanzlei-wirtschaftsrecht.berlin: max-age too low: 600000
+kanzshop.com: could not connect to host
kaohub.com: could not connect to host
kaomojis.net: did not receive HSTS header
-kaotik4266.com: could not connect to host
kaplatz.is: could not connect to host
kapo.info: could not connect to host
kappit.dk: could not connect to host
kapucini.si: max-age too low: 0
-kaputt.com: could not connect to host
+kaputt.com: max-age too low: 0
kapverde.guide: could not connect to host
karamna.com: could not connect to host
karamomo.net: did not receive HSTS header
karanastic.com: did not receive HSTS header
karaoketonight.com: could not connect to host
karatekit.co.uk: did not receive HSTS header
-karatorian.org: did not receive HSTS header
+karatorian.org: could not connect to host
karjala-ski.ru: could not connect to host
+karlis-kavacis.id.lv: did not receive HSTS header
karloskontana.tk: could not connect to host
karlproctor.co.uk: could not connect to host
-karmaflux.com: did not receive HSTS header
+karmabaker.com: did not receive HSTS header
karpanhellas.com: could not connect to host
kars.ooo: could not connect to host
karting34.com: did not receive HSTS header
+karula.org: could not connect to host
karuneshjohri.com: could not connect to host
+kasadara.com: max-age too low: 2592000
kashdash.ca: could not connect to host
kashis.com.au: max-age too low: 0
kat.al: max-age too low: 0
katalogakci.cz: did not receive HSTS header
-katata-kango.ac.jp: could not connect to host
+kathrinbaumannphotography.com: could not connect to host
kati0.com: could not connect to host
katiaetdavid.fr: could not connect to host
katja-nikolic-design.de: could not connect to host
@@ -8173,6 +8311,7 @@ kattenfun.be: did not receive HSTS header
kattenfun.nl: did not receive HSTS header
katthewaffle.fr: could not connect to host
katzen.me: could not connect to host
+katzspeech.com: did not receive HSTS header
kaufkraftkiel.de: could not connect to host
kauperwood.ovh: could not connect to host
kauplusprofesional.com: did not receive HSTS header
@@ -8188,6 +8327,7 @@ kayon.cf: could not connect to host
kazamasion.com: did not receive HSTS header
kazanasolutions.de: could not connect to host
kazenojiyu.fr: did not receive HSTS header
+kb3.net: did not receive HSTS header
kbfl.org: could not connect to host
kcluster.io: could not connect to host
kd-plus.pp.ua: could not connect to host
@@ -8236,6 +8376,7 @@ kernelmode.io: did not receive HSTS header
kernl.us: did not receive HSTS header
keshausconsulting.com: could not connect to host
keskeces.com: did not receive HSTS header
+kessel-runners.com: could not connect to host
kesteren.com: could not connect to host
kevindekoninck.com: could not connect to host
kevinfoley.cc: could not connect to host
@@ -8265,7 +8406,7 @@ kickerplaza.nl: did not receive HSTS header
kid-dachau.de: did not receive HSTS header
kidbacker.com: could not connect to host
kidkat.cn: could not connect to host
-kiehls.pt: could not connect to host
+kidswallstickers.com.au: could not connect to host
kiel-media.de: did not receive HSTS header
kielderweather.org.uk: did not receive HSTS header
kienlen.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
@@ -8278,6 +8419,7 @@ kill-paff.com: did not receive HSTS header
kimana.pe: could not connect to host
kimberg.co.uk: did not receive HSTS header
kimberlybeautysoapcompany.com: did not receive HSTS header
+kimdumaine.com: could not connect to host
kimpost.org: could not connect to host
kimscrazeecastles.co.uk: did not receive HSTS header
kina.guide: could not connect to host
@@ -8291,6 +8433,7 @@ kindlyfire.com: could not connect to host
kindof.ninja: could not connect to host
kinepolis-studio.ga: could not connect to host
kineto.space: could not connect to host
+king-henris-castles.co.uk: did not receive HSTS header
kingclass.cn: could not connect to host
kingdomcrc.org: did not receive HSTS header
kingmanhall.org: could not connect to host
@@ -8298,9 +8441,11 @@ kingpincages.com: could not connect to host
kingqueen.org.uk: did not receive HSTS header
kinkdr.com: could not connect to host
kinmunity.com: did not receive HSTS header
+kinnettmemorial.org: did not receive HSTS header
kinnon.enterprises: could not connect to host
kinow.com: did not receive HSTS header
kinsmenhomelottery.com: did not receive HSTS header
+kintawifi.com: could not connect to host
kintoandar.com: max-age too low: 0
kintrip.com: did not receive HSTS header
kintzingerfilm.de: did not receive HSTS header
@@ -8310,11 +8455,10 @@ kipira.com: could not connect to host
kiraboshi.xyz: could not connect to host
kirainmoe.com: did not receive HSTS header
kirara.eu: could not connect to host
-kirill.ws: could not connect to host
+kircp.com: could not connect to host
kirito.kr: could not connect to host
kirkforsenate.com: could not connect to host
kirkpatrickdavis.com: could not connect to host
-kirstin-peters.de: could not connect to host
kisa.io: could not connect to host
kisalt.im: could not connect to host
kiss-register.org: could not connect to host
@@ -8339,7 +8483,6 @@ kiwiirc.com: max-age too low: 5256000
kiwipayment.com: could not connect to host
kiwipayments.com: could not connect to host
kiwiplace.com: could not connect to host
-kix.moe: did not receive HSTS header
kiyo.space: could not connect to host
kizil.net: could not connect to host
kj1391.com: did not receive HSTS header
@@ -8369,6 +8512,7 @@ klingsundet.no: did not receive HSTS header
kliqsd.com: could not connect to host
kloentrup.de: max-age too low: 604800
klunkergarten.org: could not connect to host
+km-net.pl: did not receive HSTS header
kmdev.me: did not receive HSTS header
knapen.io: max-age too low: 604800
knccloud.com: could not connect to host
@@ -8383,13 +8527,11 @@ knowledgesnap.com: could not connect to host
knowledgesnapsites.com: could not connect to host
knownsec.cf: could not connect to host
kobieta.guru: could not connect to host
-kobolya.hu: did not receive HSTS header
koddsson.com: did not receive HSTS header
kodexplorer.ml: could not connect to host
kodiaklabs.org: could not connect to host
kodokushi.fr: could not connect to host
koen.io: max-age too low: 86400
-koenrouwhorst.nl: did not receive HSTS header
koenvdheuvel.me: could not connect to host
koerperimpuls.ch: did not receive HSTS header
koez-mangal.ch: could not connect to host
@@ -8401,13 +8543,14 @@ kola-entertainments.de: did not receive HSTS header
kolaykaydet.com: could not connect to host
kolbeck.tk: could not connect to host
kollawat.me: could not connect to host
-kolozsvaricsuhe.hu: did not receive HSTS header
+kolozsvaricsuhe.hu: could not connect to host
komikito.com: could not connect to host
kompetenzwerft.de: did not receive HSTS header
konata.us: could not connect to host
kongbaofang.com: could not connect to host
konicaprinterdriver.com: could not connect to host
-koningskwartiertje.nl: could not connect to host
+konings.it: could not connect to host
+koninkrijk.net: could not connect to host
konkurs.ba: could not connect to host
kontakthuman.hu: did not receive HSTS header
kontaxis.network: could not connect to host
@@ -8418,7 +8561,6 @@ koordinate.net: could not connect to host
koppelvlak.net: could not connect to host
kopular.com: could not connect to host
kori.ml: did not receive HSTS header
-korinar.com: could not connect to host
koriyoukai.net: did not receive HSTS header
kornersafe.com: did not receive HSTS header
korni22.org: could not connect to host
@@ -8445,6 +8587,7 @@ krasavchik.by: could not connect to host
krasota.ru: did not receive HSTS header
krausen.ca: did not receive HSTS header
kravelindo-adventure.com: could not connect to host
+kraynik.com: could not connect to host
krayx.com: could not connect to host
kream.io: did not receive HSTS header
kreavis.com: did not receive HSTS header
@@ -8458,12 +8601,14 @@ kreza.de: could not connect to host
kriegskindernothilfe.de: could not connect to host
kriegt.es: did not receive HSTS header
krist.club: did not receive HSTS header
+kristikala.nl: could not connect to host
kristjanrang.eu: did not receive HSTS header
kristofferkoch.com: could not connect to host
krizek.cc: did not receive HSTS header
krizevackapajdasija.hr: could not connect to host
krmela.com: did not receive HSTS header
kroetenfuchs.de: could not connect to host
+kronych.cz: could not connect to host
kroodle.nl: did not receive HSTS header
krouzkyliduska.cz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
kruegerrand-wert.de: did not receive HSTS header
@@ -8483,7 +8628,6 @@ ku.io: did not receive HSTS header
kuba.guide: could not connect to host
kubiwa.net: could not connect to host
kubusadvocaten.nl: could not connect to host
-kuchenfeelisa.de: did not receive HSTS header
kuchenschock.de: did not receive HSTS header
kucheryavenkovn.ru: could not connect to host
kucom.it: did not receive HSTS header
@@ -8496,6 +8640,8 @@ kum.com: could not connect to host
kummerlaender.eu: did not receive HSTS header
kundenerreichen.com: did not receive HSTS header
kundenerreichen.de: did not receive HSTS header
+kundo.se: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+kunstfehler.at: max-age too low: 86400
kunstschule-krabax.de: did not receive HSTS header
kuops.com: did not receive HSTS header
kupdokuchyne.cz: could not connect to host
@@ -8510,8 +8656,9 @@ kurtmclester.com: could not connect to host
kurz.pw: could not connect to host
kurzonline.com.br: could not connect to host
kuwago.io: could not connect to host
+kuzdrowiu24.pl: did not receive HSTS header
+kvhile.com: could not connect to host
kvt.berlin: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-kweddingplanning.com: max-age too low: 0
kwidz.fr: did not receive HSTS header
kwikmed.eu: could not connect to host
kwipi.com: did not receive HSTS header
@@ -8529,11 +8676,11 @@ kylling.io: could not connect to host
kymo.org: did not receive HSTS header
kyochon.fr: could not connect to host
kyonagashima.com: did not receive HSTS header
-kyoto-k9.com: could not connect to host
-kyoto-tomoshibi.jp: could not connect to host
+kyoto-k9.com: did not receive HSTS header
kyouko.nl: could not connect to host
kyujin-office.net: could not connect to host
kzjnet.com: could not connect to host
+l-lab.org: could not connect to host
l-rickroll-i.pw: could not connect to host
l.me.uk: could not connect to host
l18.io: could not connect to host
@@ -8548,7 +8695,6 @@ labelleza.com.br: could not connect to host
labfox.de: did not receive HSTS header
labiblioafronebrulepas.com: could not connect to host
labina.com.tr: did not receive HSTS header
-labms.com.au: could not connect to host
laboiteanem.fr: could not connect to host
laboiteapc.fr: did not receive HSTS header
labordata.io: could not connect to host
@@ -8558,7 +8704,7 @@ laboutiquemarocaineduconvoyeur.ma: could not connect to host
labrador-retrievers.com.au: did not receive HSTS header
labrasaq8.com: did not receive HSTS header
labs.directory: could not connect to host
-labs.moscow: could not connect to host
+labs.moscow: did not receive HSTS header
lacarpesaintaubinoise.fr: did not receive HSTS header
lacasa.fr: could not connect to host
lacasseroy.com: could not connect to host
@@ -8567,6 +8713,7 @@ lacentral.com: did not receive HSTS header
lacledeslan.ninja: could not connect to host
lacuevadechauvet.com: did not receive HSTS header
ladadate.com: could not connect to host
+ladybugjam.com: could not connect to host
ladylikeit.com: could not connect to host
ladylucks.co.uk: could not connect to host
laemen.com: did not receive HSTS header
@@ -8608,7 +8755,6 @@ landgoedverkopen.nl: could not connect to host
landhuisverkopen.nl: could not connect to host
landscape.canonical.com: max-age too low: 2592000
landscapingmedic.com: did not receive HSTS header
-langatang.com: could not connect to host
langenbach.rocks: could not connect to host
langendorf-ernaehrung-training.de: could not connect to host
langendries.eu: did not receive HSTS header
@@ -8625,6 +8771,7 @@ laplaceduvillage.net: could not connect to host
laquack.com: could not connect to host
lared.ovh: did not receive HSTS header
laredsemanario.com: could not connect to host
+larky.top: could not connect to host
larsgujord.no: did not receive HSTS header
larsmerke.de: did not receive HSTS header
lasepiataca.com: did not receive HSTS header
@@ -8643,6 +8790,7 @@ lathamlabs.com: could not connect to host
lathamlabs.net: could not connect to host
lathamlabs.org: could not connect to host
lathen-wahn.de: did not receive HSTS header
+latiendadelbebefeliz.com: could not connect to host
latinred.com: could not connect to host
latitude42technology.com: did not receive HSTS header
latour-managedcare.ch: could not connect to host
@@ -8655,11 +8803,12 @@ laurelspaandlash.com: did not receive HSTS header
laureltv.org: did not receive HSTS header
laurent-e-levy.com: did not receive HSTS header
lausitzer-widerstand.de: could not connect to host
-lavabit.no: could not connect to host
lavapot.com: did not receive HSTS header
laventainnhotel-mailing.com: could not connect to host
lavine.ch: did not receive HSTS header
lavito.cz: could not connect to host
+lavval.com: could not connect to host
+lawformt.com: max-age too low: 2592000
lawly.org: could not connect to host
lawrence-institute.com: could not connect to host
laxatus.com: could not connect to host
@@ -8668,6 +8817,7 @@ layer8.tk: could not connect to host
laymans911.info: could not connect to host
lazapateriahandmade.pe: did not receive HSTS header
lazerus.net: could not connect to host
+lazowik.pl: could not connect to host
lazulu.com: could not connect to host
lazytux.de: did not receive HSTS header
lbarrios.es: could not connect to host
@@ -8682,6 +8832,8 @@ ldcraft.pw: could not connect to host
leadbook.ru: max-age too low: 604800
leadership9.com: could not connect to host
leadgenie.me: could not connect to host
+leadinfo.com: did not receive HSTS header
+leadstart.org: did not receive HSTS header
leakedminecraft.net: could not connect to host
leakreporter.net: could not connect to host
leaks.directory: could not connect to host
@@ -8703,8 +8855,12 @@ ledgerscope.net: could not connect to host
ledhouse.sk: did not receive HSTS header
ledlampor365.se: could not connect to host
ledshop.mx: did not receive HSTS header
+leebiblestudycenter.co.uk: could not connect to host
+leebiblestudycenter.com: could not connect to host
+leebiblestudycentre.com: could not connect to host
leebiblestudycentre.net: could not connect to host
leebiblestudycentre.org: could not connect to host
+leedev.org: could not connect to host
leefindlow.com: could not connect to host
leelou.wedding: could not connect to host
leen.io: could not connect to host
@@ -8723,15 +8879,18 @@ legitaxi.com: did not receive HSTS header
legymnase.eu: did not receive HSTS header
lehtinen.xyz: could not connect to host
leighneithardt.com: could not connect to host
+leiming.co: could not connect to host
leinir.dk: did not receive HSTS header
leitner.com.au: did not receive HSTS header
lelehei.com: could not connect to host
lellyboi.ml: could not connect to host
lelongbank.com: did not receive HSTS header
-lelubre.info: did not receive HSTS header
+lelubre.info: could not connect to host
lemon.co: could not connect to host
lemonrockbiketours.com: did not receive HSTS header
-lemp.io: did not receive HSTS header
+lemonthy.ca: could not connect to host
+lemonthy.com: could not connect to host
+lemp.io: could not connect to host
lenders.direct: could not connect to host
lengyelnyelvoktatas.hu: could not connect to host
lengyelul.hu: could not connect to host
@@ -8747,6 +8906,7 @@ lenzw.de: did not receive HSTS header
leob.in: could not connect to host
leon-jaekel.com: could not connect to host
leonardcamacho.me: could not connect to host
+leonhooijer.nl: could not connect to host
leonmahler.consulting: did not receive HSTS header
leopold.email: could not connect to host
leopoldina.net: did not receive HSTS header
@@ -8756,7 +8916,7 @@ lepiquillo.fr: did not receive HSTS header
lepont.pl: could not connect to host
lerasenglish.com: max-age too low: 0
lerlivros.online: could not connect to host
-lerner.moscow: could not connect to host
+lerner.moscow: did not receive HSTS header
les-corsaires.net: could not connect to host
les-voitures-electriques.com: max-age too low: 2592000
lesbiansslaves.com: could not connect to host
@@ -8772,7 +8932,6 @@ lesperlesdunet.fr: could not connect to host
lesquatredauphins.fr: did not receive HSTS header
lesquerda.cat: did not receive HSTS header
lessing.consulting: did not receive HSTS header
-let-go.cc: could not connect to host
letempsdunefleur.be: could not connect to host
leter.io: did not receive HSTS header
lethbridgecoffee.com: did not receive HSTS header
@@ -8799,7 +8958,6 @@ lexpartsofac.com: could not connect to host
lez-cuties.com: could not connect to host
lezdomsm.com: could not connect to host
lfaz.org: could not connect to host
-lfullerdesign.com: could not connect to host
lg21.co: could not connect to host
lgbtqventures.com: could not connect to host
lgiswa.com.au: did not receive HSTS header
@@ -8816,6 +8974,7 @@ lhsj78.com: could not connect to host
liaillustr.at: did not receive HSTS header
liam-is-a-nig.ga: could not connect to host
liam-w.com: could not connect to host
+liamelliott.me: could not connect to host
liamjack.fr: could not connect to host
liangbp.com: could not connect to host
lianwen.kim: could not connect to host
@@ -8834,6 +8993,7 @@ libfte.org: did not receive HSTS header
librairie-asie.com: did not receive HSTS header
library.linode.com: did not receive HSTS header
librechan.net: could not connect to host
+librends.org: could not connect to host
libricks.fr: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
librisulibri.it: did not receive HSTS header
licence-registry.com: could not connect to host
@@ -8848,7 +9008,6 @@ liebach.me: did not receive HSTS header
liebestarot.at: did not receive HSTS header
lied8.eu: could not connect to host
liehuojun.com: could not connect to host
-liemen.net: did not receive HSTS header
lietaer.eu: did not receive HSTS header
life-time.nl: did not receive HSTS header
lifecoach.tw: did not receive HSTS header
@@ -8866,19 +9025,22 @@ lifetimemoneymachine.com: did not receive HSTS header
lifeventure.co.uk: did not receive HSTS header
lightarmory.com: could not connect to host
lightcloud.com: did not receive HSTS header
+lightdark.xyz: could not connect to host
+lighthouseinstruments.com: did not receive HSTS header
lightning-ashe.com: did not receive HSTS header
lightnovelsekai.com: could not connect to host
lightpaste.com: could not connect to host
lighttherapydevice.com: did not receive HSTS header
+lighttp.com: could not connect to host
lightworx.io: could not connect to host
lignemalin.com: could not connect to host
lignemax.com: did not receive HSTS header
lignenet.com: did not receive HSTS header
like.lgbt: could not connect to host
+likenewhearing.com.au: could not connect to host
likenosis.com: could not connect to host
lila.pink: did not receive HSTS header
-lilapmedia.com: could not connect to host
-liliang13.com: could not connect to host
+lilapmedia.com: did not receive HSTS header
lilismartinis.com: could not connect to host
lillpopp.eu: max-age too low: 10
lilpwny.com: could not connect to host
@@ -8893,7 +9055,9 @@ limpens.net: did not receive HSTS header
limpido.it: could not connect to host
lincsbouncycastlehire.co.uk: did not receive HSTS header
lindberg.io: did not receive HSTS header
+linden.me: did not receive HSTS header
lineauniformes.com.br: could not connect to host
+linernotekids.com: did not receive HSTS header
linext.cn: could not connect to host
lingerie.net.br: did not receive HSTS header
lingerielovers.com.br: did not receive HSTS header
@@ -8918,6 +9082,7 @@ linpx.com: could not connect to host
linux-admin-california.com: could not connect to host
linux-mint.cz: could not connect to host
linux.army: could not connect to host
+linux.im: did not receive HSTS header
linux.sb: could not connect to host
linuxandstuff.de: could not connect to host
linuxcode.net: could not connect to host
@@ -8925,6 +9090,7 @@ linuxeyecandy.com: could not connect to host
linuxfixed.it: could not connect to host
linuxforyou.com: could not connect to host
linuxgeek.ro: could not connect to host
+linuxincluded.com: did not receive HSTS header
linuxmint.cz: could not connect to host
linuxmonitoring.net: could not connect to host
linvx.org: did not receive HSTS header
@@ -8936,8 +9102,10 @@ liquidwarp.net: could not connect to host
liquimoly.market: did not receive HSTS header
liquorsanthe.in: could not connect to host
lisaco.de: could not connect to host
+lisamccorrie.com: could not connect to host
lisbongold.com: did not receive HSTS header
lisgade.dk: could not connect to host
+lisieuxarquitetura.com.br: could not connect to host
lisowski-photography.com: could not connect to host
lissabon.guide: could not connect to host
listafirmelor.com: could not connect to host
@@ -8952,7 +9120,6 @@ littledisney.ro: did not receive HSTS header
littlefreelibrary.org: did not receive HSTS header
littlelife.co.uk: did not receive HSTS header
littleservice.cn: could not connect to host
-littleskin.cn: did not receive HSTS header
liud.im: could not connect to host
liujunyang.com: did not receive HSTS header
liukang.tech: could not connect to host
@@ -8974,7 +9141,6 @@ lizzythepooch.com: did not receive HSTS header
lkiserver.com: could not connect to host
llamasweet.tech: could not connect to host
lll.st: could not connect to host
-llslb.com: could not connect to host
llvm.us: could not connect to host
lmcm.io: could not connect to host
lmrcouncil.gov: could not connect to host
@@ -8994,6 +9160,7 @@ lobosdomain.ddns.net: could not connect to host
lobosdomain.no-ip.info: could not connect to host
lobste.rs: did not receive HSTS header
locais.org: could not connect to host
+localblitz.com: did not receive HSTS header
localchum.com: could not connect to host
localdata.us: did not receive HSTS header
localdrive.me: could not connect to host
@@ -9009,12 +9176,14 @@ locationvoiturepaysbas.com: could not connect to host
locationvoituresuede.com: could not connect to host
locchat.com: could not connect to host
locker3.com: could not connect to host
+locksmith-durbannorth.co.za: could not connect to host
+locksmithhillcrest.co.za: could not connect to host
locksmithrandburg24-7.co.za: could not connect to host
+locksmithsbluff.com: could not connect to host
locksport.org.nz: could not connect to host
locktheirphone.com: could not connect to host
lockyourcomputer.pw: could not connect to host
locomotive.ca: did not receive HSTS header
-locomotive.net.br: could not connect to host
locvis.ru: did not receive HSTS header
lode.li: could not connect to host
lodgesdureynou.fr: did not receive HSTS header
@@ -9024,9 +9193,9 @@ log2n.uk: could not connect to host
logario.com.br: could not connect to host
logcat.info: could not connect to host
logfile.ch: did not receive HSTS header
+logfro.de: max-age too low: 0
logic8.ml: could not connect to host
logicaladvertising.com: could not connect to host
-logicoma.com: could not connect to host
logicsale.com: did not receive HSTS header
logicsale.de: did not receive HSTS header
logicsale.fr: did not receive HSTS header
@@ -9040,9 +9209,11 @@ logistify.com.mx: did not receive HSTS header
lognot.net: could not connect to host
logymedia.com: could not connect to host
loisircreatif.net: did not receive HSTS header
+lojadamimo.com.br: could not connect to host
lojadocristaozinho.com.br: did not receive HSTS header
lojadoprazer.com.br: could not connect to host
lojahunamarcenaria.com.br: could not connect to host
+lojamulticapmais.com.br: did not receive HSTS header
lojashowdecozinha.com.br: could not connect to host
lojasviavento.com.br: could not connect to host
lojavalcapelli.com.br: could not connect to host
@@ -9057,7 +9228,6 @@ lonal.com: could not connect to host
lonasdigital.com: did not receive HSTS header
lonbali.com: did not receive HSTS header
londoncalling.co: did not receive HSTS header
-londonkan.jp: could not connect to host
londonlanguageexchange.com: could not connect to host
londonseedcentre.co.uk: could not connect to host
lonerwolf.com: did not receive HSTS header
@@ -9067,6 +9237,7 @@ look-at-my.site: could not connect to host
lookout.com: did not receive HSTS header
looktothestars.org: did not receive HSTS header
lookupclose.com: did not receive HSTS header
+lookzook.com: did not receive HSTS header
looneymooney.com: could not connect to host
loongsg.xyz: could not connect to host
loperetti.ch: could not connect to host
@@ -9092,6 +9263,8 @@ lotuscloud.de: did not receive HSTS header
lotuscloud.org: could not connect to host
louduniverse.net: did not receive HSTS header
louiewatch.com: could not connect to host
+louisemisellinteriors.co.uk: could not connect to host
+louisvillevmug.info: could not connect to host
love-schna.jp: could not connect to host
love4taylor.eu.org: could not connect to host
loveable.de: could not connect to host
@@ -9124,6 +9297,7 @@ lrhstsa.com: could not connect to host
ls-a.org: did not receive HSTS header
ls-reallife.de: did not receive HSTS header
ls-rp.es: did not receive HSTS header
+lshiy.com: could not connect to host
lsky.cn: did not receive HSTS header
lsp-sports.de: did not receive HSTS header
lstma.com: could not connect to host
@@ -9137,6 +9311,7 @@ ltransferts.com: could not connect to host
ltu.social: could not connect to host
luan.ma: did not receive HSTS header
lubot.net: could not connect to host
+lucakrebs.de: could not connect to host
lucas-garte.com: did not receive HSTS header
lucascantor.com: did not receive HSTS header
lucascodes.com: could not connect to host
@@ -9146,8 +9321,6 @@ lucidlogs.com: could not connect to host
luckydog.pw: could not connect to host
luckystarfishing.com: did not receive HSTS header
luclu7.pw: could not connect to host
-lucysan.net: could not connect to host
-ludum.pl: could not connect to host
ludwig.click: did not receive HSTS header
lufthansaexperts.com: max-age too low: 2592000
luis-checa.com: could not connect to host
@@ -9187,11 +9360,12 @@ lustrumxi.nl: could not connect to host
luther.fi: could not connect to host
luxe-it.co.uk: could not connect to host
luxinmo.com: did not receive HSTS header
+luxofit.de: did not receive HSTS header
luxonetwork.com: could not connect to host
luxus-russen.de: could not connect to host
luzeshomologadas.com.br: could not connect to host
-luzfaltex.com: did not receive HSTS header
lwhate.com: could not connect to host
+lwl.moe: could not connect to host
lycly.top: could not connect to host
lydia-und-simon.de: could not connect to host
lydiagorstein.com: did not receive HSTS header
@@ -9206,10 +9380,9 @@ lz.sb: could not connect to host
lzahq.tech: did not receive HSTS header
lzkill.com: did not receive HSTS header
lzqii.cn: could not connect to host
-lzzr.me: did not receive HSTS header
m-ali.xyz: did not receive HSTS header
+m-edmondson.co.uk: did not receive HSTS header
m-generator.com: could not connect to host
-m-idea.jp: could not connect to host
m-rickroll-v.pw: could not connect to host
m-warrior.tk: could not connect to host
m.gparent.org: could not connect to host
@@ -9222,7 +9395,7 @@ m4g.ru: could not connect to host
m82labs.com: did not receive HSTS header
ma-musique.fr: could not connect to host
maarten.nyc: could not connect to host
-maartenprovo.be: did not receive HSTS header
+maartenprovo.be: could not connect to host
maartenterpstra.xyz: could not connect to host
mac-torrents.me: did not receive HSTS header
mac-world.pl: did not receive HSTS header
@@ -9234,11 +9407,12 @@ macdj.tk: could not connect to host
macedopesca.com.br: did not receive HSTS header
macgeneral.de: did not receive HSTS header
mach1club.com: did not receive HSTS header
+machbach.com: could not connect to host
+machbach.net: could not connect to host
machinelearningjavascript.com: could not connect to host
mack.space: could not connect to host
macleodnc.com: did not receive HSTS header
macsandcheesedreams.com: could not connect to host
-macstore.pe: did not receive HSTS header
macustar.eu: did not receive HSTS header
madandpissedoff.com: did not receive HSTS header
madcatdesign.de: did not receive HSTS header
@@ -9262,12 +9436,12 @@ mafiareturns.com: max-age too low: 2592000
magazinedabeleza.net: could not connect to host
magebankin.com: did not receive HSTS header
magenx.com: did not receive HSTS header
-magi.systems: could not connect to host
magia360.com: did not receive HSTS header
magicball.co: could not connect to host
magieblanche.fr: did not receive HSTS header
magnacumlaude.co: could not connect to host
magneticanvil.com: did not receive HSTS header
+magosmedellin.com: could not connect to host
magyarokegyhelyen.hu: did not receive HSTS header
mahamed91.pw: could not connect to host
mahansexcavating.com: did not receive HSTS header
@@ -9290,8 +9464,6 @@ main-unit.com: could not connect to host
maintainerheaven.ch: could not connect to host
maisalto.ind.br: could not connect to host
maitriser-son-stress.com: could not connect to host
-majkl.xyz: could not connect to host
-majkl578.cz: could not connect to host
majncloud.tk: could not connect to host
make-pizza.info: could not connect to host
makedonien.guide: could not connect to host
@@ -9300,10 +9472,8 @@ makeitdynamic.com: could not connect to host
makemejob.com: could not connect to host
makemyvape.co.uk: max-age too low: 7889238
makerstuff.net: did not receive HSTS header
-makeshiftco.de: did not receive HSTS header
+makeshiftco.de: could not connect to host
makeuplove.nl: could not connect to host
-makeyourlaws.org: could not connect to host
-makinen.ru: could not connect to host
malamutedoalasca.com.br: could not connect to host
maldiverna.guide: could not connect to host
maleexcel.com: did not receive HSTS header
@@ -9315,12 +9485,12 @@ malgraph.net: could not connect to host
malibubeachrecoverycenter.com: could not connect to host
maljaars-media.nl: could not connect to host
malkaso.com.ua: could not connect to host
-mallner.me: could not connect to host
malmstroms-co.se: could not connect to host
malone.link: could not connect to host
malte-kiefer.de: did not receive HSTS header
maltes.website: could not connect to host
malvy.kiev.ua: could not connect to host
+malwarekillers.com: could not connect to host
malwre.io: could not connect to host
maly.io: did not receive HSTS header
malya.fr: could not connect to host
@@ -9329,7 +9499,6 @@ mamadoma.com.ua: could not connect to host
mamaison.io: could not connect to host
mamastore.eu: could not connect to host
mamaxi.org: did not receive HSTS header
-mammeitalianeavienna.com: could not connect to host
mammothmail.com: could not connect to host
mammothmail.net: could not connect to host
mammothmail.org: could not connect to host
@@ -9368,42 +9537,41 @@ manshop24.com: could not connect to host
mansion-note.com: did not receive HSTS header
mansiontech.cn: did not receive HSTS header
manududu.com.br: could not connect to host
+manuel7espejo.com: did not receive HSTS header
+manuelahidalgo.org: did not receive HSTS header
manuelrueger.de: could not connect to host
manutrol.com.br: did not receive HSTS header
maomaobt.com: did not receive HSTS header
maomaofuli.vip: could not connect to host
maosi.xin: could not connect to host
maple5.com: did not receive HSTS header
-maplenorth.co: did not receive HSTS header
+maplenorth.co: could not connect to host
mapresidentielle.fr: did not receive HSTS header
+mapservices.nl: did not receive HSTS header
maquillage-permanent-tatoo.com: did not receive HSTS header
maranatha.pl: did not receive HSTS header
marbinvest.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-marc-schlagenhauf.de: could not connect to host
-marcaixala.me: could not connect to host
-marcberman.co: could not connect to host
+marcberman.co: did not receive HSTS header
marcbuehlmann.com: did not receive HSTS header
marcelmarnitz.com: could not connect to host
marcelparra.com: could not connect to host
-marcelwiedemeier.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
marchagen.nl: did not receive HSTS header
marche-nordic-jorat.ch: could not connect to host
marchhappy.tech: did not receive HSTS header
-marcianoandtopazio.com: could not connect to host
marco-kretz.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
marco01809.net: could not connect to host
marcoececilia.it: did not receive HSTS header
marcofinke.de: could not connect to host
marcontrol.com: did not receive HSTS header
-marcoslater.com: did not receive HSTS header
marcosteixeira.tk: could not connect to host
marcschlagenhauf.de: could not connect to host
marcus-scheffler.com: did not receive HSTS header
marcush.de: could not connect to host
-marcusserver.synology.me: could not connect to host
+marcusserver.synology.me: did not receive HSTS header
mardelcupon.com: could not connect to host
mare92.cz: could not connect to host
mareklecian.cz: did not receive HSTS header
+margan.ch: could not connect to host
margaretrosefashions.co.uk: could not connect to host
mariacristinadoces.com.br: did not receive HSTS header
mariannematthew.com: could not connect to host
@@ -9411,10 +9579,12 @@ marianwehlus.de: did not receive HSTS header
mariaolesen.dk: could not connect to host
marie-curie.fr: could not connect to host
marie-elisabeth.dk: did not receive HSTS header
-marie-en-provence.com: did not receive HSTS header
+marie-en-provence.com: could not connect to host
marie.club: could not connect to host
marienschule-sundern.de: did not receive HSTS header
+marioabela.com: did not receive HSTS header
mariusschulte.de: did not receive HSTS header
+marix.ro: could not connect to host
mark-a-hydrant.com: did not receive HSTS header
mark-armstrong-gaming.com: could not connect to host
markayapilandirma.com: could not connect to host
@@ -9456,26 +9626,27 @@ martinkup.cz: did not receive HSTS header
martinp.no: could not connect to host
martinrogalla.com: did not receive HSTS header
martins.im: could not connect to host
-marumagic.com: did not receive HSTS header
-marvinkeller.de: could not connect to host
+marumagic.com: could not connect to host
+marvinkeller.de: did not receive HSTS header
marxist.party: could not connect to host
marykshoup.com: could not connect to host
masa-hou.com: did not receive HSTS header
masa-yoga.com: did not receive HSTS header
masa.li: could not connect to host
masaze-hanka.cz: could not connect to host
-maservant.net: could not connect to host
mashek.net: could not connect to host
mashnew.com: could not connect to host
masjidtawheed.net: did not receive HSTS header
maskinkultur.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
maskt.pw: could not connect to host
+maslife365.com: could not connect to host
massagelimaperu.com: did not receive HSTS header
massivum.de: did not receive HSTS header
massot.eu: did not receive HSTS header
mastd.fr: could not connect to host
mastd.onl: could not connect to host
-masteragenasia.com: did not receive HSTS header
+mastepinnelaand.nl: did not receive HSTS header
+masteragenasia.com: could not connect to host
masteragenasia.net: did not receive HSTS header
masterapi.ninja: did not receive HSTS header
masterhaus.bg: did not receive HSTS header
@@ -9494,21 +9665,19 @@ mastodon.fun: could not connect to host
mastodon.my: could not connect to host
mastodon.org.uk: did not receive HSTS header
mastodon.pl: did not receive HSTS header
-mastodon.top: did not receive HSTS header
mastodones.club: could not connect to host
masty.nl: could not connect to host
masumreza.tk: could not connect to host
mat99.dk: could not connect to host
matarrosabierzo.com: could not connect to host
-matatall.com: did not receive HSTS header
-maternalsafety.org: did not receive HSTS header
mateusmeyer.com.br: could not connect to host
mateuszpilszek.pl: could not connect to host
mathers.ovh: did not receive HSTS header
+mathias.is: could not connect to host
mathias.re: did not receive HSTS header
mathieui.net: could not connect to host
mathijskingma.nl: could not connect to host
-mathis.com.tr: did not receive HSTS header
+matildajaneclothing.com: did not receive HSTS header
matillat.ovh: did not receive HSTS header
matlabjo.ir: could not connect to host
matomeplus.co: could not connect to host
@@ -9518,7 +9687,6 @@ matrip.de: could not connect to host
matrix.ac: could not connect to host
matrixcheats.net: could not connect to host
matsuz.com: did not receive HSTS header
-matt-brooks.com: could not connect to host
matt.tf: did not receive HSTS header
mattandreko.com: did not receive HSTS header
mattberryman.com: did not receive HSTS header
@@ -9530,11 +9698,13 @@ matthewprenger.com: could not connect to host
matthewtester.com: did not receive HSTS header
matthiassteen.be: could not connect to host
matthiasweiler.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-mattia98.org: could not connect to host
+mattia98.org: did not receive HSTS header
mattisam.com: did not receive HSTS header
mattressinsider.com: max-age too low: 3153600
mattwb65.com: did not receive HSTS header
+mattwservices.co.uk: max-age too low: 2592000
matty.digital: did not receive HSTS header
+matze.co: did not receive HSTS header
matze.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
maultrom.ml: could not connect to host
maupiknik.com: did not receive HSTS header
@@ -9552,18 +9722,18 @@ maximelouet.me: did not receive HSTS header
maximov.space: did not receive HSTS header
maxkeller.io: did not receive HSTS header
maxmachine.ind.br: could not connect to host
+maxrandolph.com: could not connect to host
maxserver.com: did not receive HSTS header
maya.mg: could not connect to host
maybeul.com: could not connect to host
maynardnetworks.com: could not connect to host
mayoristassexshop.com: did not receive HSTS header
-maze.design: did not receive HSTS header
-mazurlabs.tk: could not connect to host
mazyun.com: did not receive HSTS header
mazz-tech.com: could not connect to host
mbanq.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
mbconsultancy.nu: did not receive HSTS header
mbdrogenbos-usedcars.be: could not connect to host
+mbrooks.info: could not connect to host
mbwemmel-usedcars.be: could not connect to host
mc81.com: did not receive HSTS header
mca2017.org: did not receive HSTS header
@@ -9601,7 +9771,7 @@ me-dc.com: could not connect to host
meadowfenfarm.com: could not connect to host
meadowviewfarms.org: could not connect to host
mealz.com: did not receive HSTS header
-meanevo.com: could not connect to host
+meanevo.com: did not receive HSTS header
measuretwice.com: did not receive HSTS header
meat-education.com: could not connect to host
meathealth.com: could not connect to host
@@ -9612,7 +9782,7 @@ mechok.ru: could not connect to host
medallia.io: could not connect to host
media-access.online: did not receive HSTS header
media-courses.com: could not connect to host
-mediacru.sh: could not connect to host
+mediacru.sh: max-age too low: 0
mediadandy.com: could not connect to host
mediafinancelab.org: could not connect to host
mediamag.am: max-age too low: 0
@@ -9643,7 +9813,6 @@ megam.host: could not connect to host
megashur.se: did not receive HSTS header
megasystem.cl: did not receive HSTS header
meghudson.com: could not connect to host
-mego.cloud: could not connect to host
meifrench.com: could not connect to host
meiju.video: could not connect to host
meincloudspeicher.de: could not connect to host
@@ -9651,7 +9820,6 @@ meine-reise-gut-versichert.de: did not receive HSTS header
meinebo.it: could not connect to host
meisterritter.de: did not receive HSTS header
meizufans.eu: could not connect to host
-mekongeye.com: could not connect to host
melakaltenegger.at: did not receive HSTS header
melangebrasil.com: could not connect to host
melaniebilodeau.com: did not receive HSTS header
@@ -9670,17 +9838,18 @@ melvinlammerts.nl: could not connect to host
melvinlow.com: did not receive HSTS header
memberpress.com: did not receive HSTS header
members.mayfirst.org: did not receive HSTS header
+membersonline.org: did not receive HSTS header
memdoc.org: could not connect to host
memeblast.ninja: could not connect to host
memepasmal.org: could not connect to host
-memes.nz: could not connect to host
+memes.nz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
memetrash.co.uk: could not connect to host
+memind.net: could not connect to host
memory-plus-180.com: could not connect to host
memorygame.io: did not receive HSTS header
memorytrace.space: could not connect to host
menaraannonces.com: could not connect to host
menchez.me: could not connect to host
-mennace.com: did not receive HSTS header
menotag.com: did not receive HSTS header
mensachterdepatient.nl: max-age too low: 2592000
mensmaximus.de: did not receive HSTS header
@@ -9699,10 +9868,11 @@ mercedes-benz-usedcars.be: could not connect to host
mercury-studio.com: did not receive HSTS header
mereckas.com: could not connect to host
meredithkm.info: did not receive HSTS header
-meremobil.dk: did not receive HSTS header
mergozzo.com: did not receive HSTS header
merimatka.fi: could not connect to host
meritz.rocks: could not connect to host
+merloat.club: could not connect to host
+merloat.com: could not connect to host
mersinunivercity.com: could not connect to host
merson.me: could not connect to host
mertak.cz: did not receive HSTS header
@@ -9711,15 +9881,11 @@ meshotes.com: max-age too low: 8640000
meskdeals.com: could not connect to host
mesmoque.com: could not connect to host
messagescelestes.ca: did not receive HSTS header
-meta-word.com: could not connect to host
metadistribution.com: did not receive HSTS header
-metaether.net: could not connect to host
metagrader.com: could not connect to host
metalsculpture.co.uk: max-age too low: 0
+metanic.org: did not receive HSTS header
metasyntactic.xyz: could not connect to host
-metaword.com: could not connect to host
-metaword.net: could not connect to host
-metaword.org: could not connect to host
metebalci.com: did not receive HSTS header
meteosky.net: could not connect to host
meter.md: could not connect to host
@@ -9731,6 +9897,7 @@ metrans-spedition.de: could not connect to host
metricaid.com: did not receive HSTS header
metrix-money-ptc.com: could not connect to host
metrix.design: could not connect to host
+metrobriefs.com: could not connect to host
metzgerei-birkenhof.de: could not connect to host
meu-smartphone.com: did not receive HSTS header
meucosmetico.com.br: could not connect to host
@@ -9764,9 +9931,11 @@ mia.to: could not connect to host
miamicityballet.org: did not receive HSTS header
mianfei-vpn.com: could not connect to host
miboulot.com: could not connect to host
-michael-schilling.de: did not receive HSTS header
+micaiahparker.com: could not connect to host
+micasamgmt.com: did not receive HSTS header
michaeldemuth.com: could not connect to host
michaelfitzpatrickruth.com: did not receive HSTS header
+michaelizquierdo.com: max-age too low: 0
michaelklos.nl: could not connect to host
michaelmorpurgo.com: did not receive HSTS header
michaeln.net: could not connect to host
@@ -9811,6 +9980,7 @@ miguelgfierro.com: did not receive HSTS header
miguksaram.com: could not connect to host
mijn-email.org: could not connect to host
mijndiad.nl: did not receive HSTS header
+mijnetickets.nl: did not receive HSTS header
mijnkredietpaspoort.nl: could not connect to host
mika.cat: could not connect to host
mikadesign.se: did not receive HSTS header
@@ -9819,18 +9989,18 @@ mikaelemilsson.net: did not receive HSTS header
mikeburns.com: could not connect to host
mikedugan.org: did not receive HSTS header
mikeg.de: did not receive HSTS header
+mikegarnett.co.uk: could not connect to host
mikek.work: did not receive HSTS header
mikeology.org: could not connect to host
mikepair.net: could not connect to host
mikes.tk: could not connect to host
mikeybot.com: could not connect to host
+mikhlevich.ru: could not connect to host
mikii.club: could not connect to host
mikk.cz: could not connect to host
-mikkelscheike.com: could not connect to host
-mikkelvej.dk: could not connect to host
mikro-inwestycje.co.uk: did not receive HSTS header
miku.be: could not connect to host
-miku.hatsune.my: could not connect to host
+miku.hatsune.my: did not receive HSTS header
mikusinec.com: could not connect to host
milahendri.com: did not receive HSTS header
milang.xyz: could not connect to host
@@ -9840,13 +10010,17 @@ milesgeek.com: did not receive HSTS header
military-portal.cz: did not receive HSTS header
militarycarlot.com: did not receive HSTS header
militaryconsumer.gov: did not receive HSTS header
-millibitcoin.jp: could not connect to host
+milkingit.net: could not connect to host
+millenniumweb.com: could not connect to host
millionairessecrets.com: could not connect to host
+millions25.com: could not connect to host
+millions26.com: could not connect to host
+millions27.com: could not connect to host
millstep.de: did not receive HSTS header
milonga.tips: could not connect to host
mim.properties: could not connect to host
mimbeim.com: did not receive HSTS header
-mimm.gov: could not connect to host
+mimm.gov: did not receive HSTS header
mimoderoupa.pt: could not connect to host
min.kiwi: could not connect to host
minacssas.com: could not connect to host
@@ -9855,7 +10029,7 @@ mind.sh: did not receive HSTS header
mindbodycontinuum.com: could not connect to host
mindcell.no: could not connect to host
mindcraft.ga: could not connect to host
-mindturbo.com: did not receive HSTS header
+mindwork.space: could not connect to host
mine.world: could not connect to host
minecraft-forum.cf: could not connect to host
minecraft-forum.ga: could not connect to host
@@ -9877,7 +10051,6 @@ mingkyaa.com: could not connect to host
mingo.nl: max-age too low: 2592000
mingy.ddns.net: could not connect to host
mingyueli.com: could not connect to host
-minh.at: did not receive HSTS header
minhanossasenhora.com.br: could not connect to host
mini-piraten.de: did not receive HSTS header
minikneet.nl: did not receive HSTS header
@@ -9891,8 +10064,8 @@ minnesotadata.com: could not connect to host
minor.news: could not connect to host
minora.io: could not connect to host
minoris.se: did not receive HSTS header
+minorshadows.net: did not receive HSTS header
mintea-noua.ro: could not connect to host
-minu.link: could not connect to host
mipiaci.co.nz: did not receive HSTS header
mipiaci.com.au: did not receive HSTS header
miragrow.com: could not connect to host
@@ -9907,15 +10080,14 @@ miruc.co: did not receive HSTS header
mirucon.com: did not receive HSTS header
misconfigured.io: could not connect to host
miscreant.me: could not connect to host
-misericordiasegrate.org: could not connect to host
+misericordiasegrate.org: did not receive HSTS header
misgluteosperfectos.com: did not receive HSTS header
misiondelosangeles-mailing.com: did not receive HSTS header
misiru.jp: could not connect to host
-missguidedus.com: did not receive HSTS header
missrain.tw: could not connect to host
missycosmeticos.com.br: could not connect to host
mist.ink: could not connect to host
-mister.hosting: could not connect to host
+mister.hosting: did not receive HSTS header
misterl.net: did not receive HSTS header
misuzu.moe: could not connect to host
mitarbeiter-pc.de: did not receive HSTS header
@@ -9923,15 +10095,16 @@ mitchellrenouf.ca: could not connect to host
mitior.net: could not connect to host
mitm-software.badssl.com: could not connect to host
mittenhacks.com: could not connect to host
+mityinc.com: did not receive HSTS header
miukimodafeminina.com: could not connect to host
mivcon.net: could not connect to host
-mixer.cash: did not receive HSTS header
+mixer.cash: could not connect to host
miya.io: could not connect to host
miyako-kyoto.jp: could not connect to host
miyoshi-kikaku.co.jp: could not connect to host
mizd.at: could not connect to host
mizi.name: could not connect to host
-mjcaffarattilaw.com: could not connect to host
+mjcaffarattilaw.com: did not receive HSTS header
mjhsc.nl: did not receive HSTS header
mk-dizajn.com: could not connect to host
mkacg.com: could not connect to host
@@ -9939,7 +10112,6 @@ mkakh.xyz: could not connect to host
mkfs.be: could not connect to host
mkfs.fr: could not connect to host
mkg-palais-hanau.de: did not receive HSTS header
-mkg-wiebelskirchen.de: could not connect to host
mkp-deutschland.de: did not receive HSTS header
mkplay.io: could not connect to host
mkw.st: could not connect to host
@@ -9962,7 +10134,6 @@ mnec.io: could not connect to host
mneeb.de: could not connect to host
mnemotiv.com: could not connect to host
mnetworkingsolutions.co.uk: could not connect to host
-mnmt.no: did not receive HSTS header
mnwt.nl: could not connect to host
moar.so: did not receive HSTS header
moas.design: did not receive HSTS header
@@ -9999,8 +10170,8 @@ modded-minecraft-server-list.com: could not connect to host
moddedark.com: could not connect to host
mode-marine.com: could not connect to host
modecaso.com: could not connect to host
-modehaus-marionk.de: could not connect to host
model9.io: did not receive HSTS header
+modeldimension.com: could not connect to host
modelsclub.org.ua: could not connect to host
modemagazines.co.uk: could not connect to host
moderatortv.de: did not receive HSTS header
@@ -10010,7 +10181,6 @@ mododo.de: could not connect to host
modx.by: max-age too low: 31536
modx.io: could not connect to host
modydev.club: could not connect to host
-moe-max.jp: could not connect to host
moe.pe: could not connect to host
moe4sale.in: did not receive HSTS header
moebel-nagel.de: did not receive HSTS header
@@ -10022,10 +10192,10 @@ moellers.it: could not connect to host
moeloli.pw: did not receive HSTS header
moelord.org: could not connect to host
moen.io: did not receive HSTS header
-moeqing.net: could not connect to host
moevenpick-cafe.com: did not receive HSTS header
moeyun.net: could not connect to host
mogry.net: did not receive HSTS header
+mohela.com: did not receive HSTS header
mohio.co.nz: did not receive HSTS header
moho.kr: could not connect to host
mohs.es: could not connect to host
@@ -10033,8 +10203,6 @@ moitur.com: did not receive HSTS header
mojapraca.sk: did not receive HSTS header
mojefilmy.xyz: could not connect to host
mojizuri.jp: max-age too low: 86400
-mojnet.eu: could not connect to host
-mojnet.net: could not connect to host
mojoco.co.za: could not connect to host
mokadev.com: did not receive HSTS header
molokai.org: could not connect to host
@@ -10046,7 +10214,7 @@ mommelonline.de: could not connect to host
momoka.moe: could not connect to host
mon-a-lisa.com: did not receive HSTS header
mon-mobile.com: did not receive HSTS header
-mona-antenna.com: did not receive HSTS header
+mon-trafic.com: did not receive HSTS header
mona.lu: could not connect to host
monalisa.wtf: could not connect to host
monarca.systems: could not connect to host
@@ -10065,15 +10233,13 @@ mongla88.net: could not connect to host
monicabeckstrom.no: could not connect to host
monika-sokol.de: did not receive HSTS header
monitaure.io: could not connect to host
-monitman.com: did not receive HSTS header
monitman.solutions: could not connect to host
monitorchain.com: did not receive HSTS header
monitori.ng: could not connect to host
-monkieteel.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+monkieteel.nl: max-age too low: 2592000
monochrometoys.com: could not connect to host
monodukuri.cafe: did not receive HSTS header
monodzukuri.cafe: did not receive HSTS header
-monokoo.com: could not connect to host
monotsuku.com: could not connect to host
monozukuri.cafe: did not receive HSTS header
montanacures.org: could not connect to host
@@ -10085,14 +10251,13 @@ moo.pet: did not receive HSTS header
moobo.xyz: did not receive HSTS header
moodifiers.com: could not connect to host
moon.lc: could not connect to host
-moonchart.co.uk: did not receive HSTS header
moonless.net: could not connect to host
moonloupe.com: could not connect to host
+moonrhythm.info: could not connect to host
moonrhythm.io: did not receive HSTS header
moonysbouncycastles.co.uk: could not connect to host
moosemanstudios.com: could not connect to host
moov.is: could not connect to host
-moovablestorage.com: could not connect to host
moparcraft.com: could not connect to host
moparcraft.org: could not connect to host
moparisthebest.biz: could not connect to host
@@ -10109,7 +10274,7 @@ morganestes.com: max-age too low: 0
morganino.eu: could not connect to host
morningcalculation.com: could not connect to host
morninglory.com: did not receive HSTS header
-mornings.com: could not connect to host
+mornings.com: did not receive HSTS header
morotech.com.br: did not receive HSTS header
morpheusx.at: could not connect to host
morpheusxaut.net: could not connect to host
@@ -10119,12 +10284,12 @@ mosaique-lachenaie.fr: could not connect to host
moskva.guide: did not receive HSTS header
moso.io: did not receive HSTS header
mostlyharmless.at: could not connect to host
+mostlyinfinite.com: did not receive HSTS header
mostwuat.com: could not connect to host
motherbase.io: could not connect to host
motherboard.services: could not connect to host
motionfreight.com: could not connect to host
motionpicturesolutions.com: did not receive HSTS header
-motocollection.pl: did not receive HSTS header
motocyklovedily.cz: did not receive HSTS header
motomorgen.com: could not connect to host
motorbiketourhanoi.com: could not connect to host
@@ -10134,6 +10299,7 @@ motoroilinfo.com: did not receive HSTS header
motorsportdiesel.com: did not receive HSTS header
motovio.de: did not receive HSTS header
motransportinfo.com: did not receive HSTS header
+mottomortgage.com: max-age too low: 0
mottvd.com: could not connect to host
moube.fr: could not connect to host
moudicat.com: max-age too low: 6307200
@@ -10144,7 +10310,7 @@ mountainmusicpromotions.com: did not receive HSTS header
movabletype.net: max-age too low: 3600
moveltix.net: could not connect to host
movepin.com: could not connect to host
-movie4k.fyi: could not connect to host
+movie4k.fyi: max-age too low: 0
movie4k.life: could not connect to host
movie4kto.site: could not connect to host
moviedollars.com: could not connect to host
@@ -10170,7 +10336,10 @@ mp3juices.is: could not connect to host
mpi-sa.fr: did not receive HSTS header
mpkossen.com: did not receive HSTS header
mpn.poker: did not receive HSTS header
+mpodraza.pl: could not connect to host
+mpreserver.com: could not connect to host
mpserver12.org: could not connect to host
+mpu-giessen.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
mr-coffee.net: could not connect to host
mr-hosting.com: could not connect to host
mrafrohead.com: could not connect to host
@@ -10186,6 +10355,7 @@ mrizzio.com: could not connect to host
mrksk.com: could not connect to host
mrleonardo.com: did not receive HSTS header
mrliu.me: could not connect to host
+mrmoregame.de: did not receive HSTS header
mrnh.tk: could not connect to host
mrnonz.com: max-age too low: 0
mrparker.pw: did not receive HSTS header
@@ -10195,6 +10365,7 @@ mrs-shop.com: did not receive HSTS header
mruganiepodspacja.pl: could not connect to host
msc-seereisen.net: could not connect to host
msgallery.tk: could not connect to host
+msopopop.cn: could not connect to host
msp66.de: could not connect to host
mstd.tokyo: did not receive HSTS header
mstdn-tech.jp: could not connect to host
@@ -10205,7 +10376,9 @@ mszaki.com: did not receive HSTS header
mt.me.uk: could not connect to host
mtamaki.com: could not connect to host
mtau.com: max-age too low: 2592000
+mtb.wtf: could not connect to host
mtcgf.com: did not receive HSTS header
+mtcq.jp: did not receive HSTS header
mtd.ovh: could not connect to host
mtdn.jp: could not connect to host
mtfgnettoyage.fr: could not connect to host
@@ -10227,13 +10400,12 @@ multivpn.com.de: could not connect to host
multivpn.com.ua: could not connect to host
multivpn.fr: could not connect to host
multiworldsoftware.com: did not receive HSTS header
+muma.ml: max-age too low: 0
mumei.space: did not receive HSTS header
mundoadulto.com.br: did not receive HSTS header
mundoalpha.com.br: did not receive HSTS header
-mundodapoesia.com: did not receive HSTS header
munecoscabezones.com: did not receive HSTS header
munich-rage.de: did not receive HSTS header
-munirajiwa.com: could not connect to host
munkiepus.com: did not receive HSTS header
munpanel.com: could not connect to host
munrabi.com: could not connect to host
@@ -10253,7 +10425,7 @@ murz.tv: could not connect to host
murzik.space: could not connect to host
muscleangels.com: could not connect to host
museminder2.com: did not receive HSTS header
-museumstreak.com: did not receive HSTS header
+museumstreak.com: could not connect to host
musewearflipflops.com: could not connect to host
mushman.tk: could not connect to host
mushroomandfern.com: could not connect to host
@@ -10263,6 +10435,7 @@ musikzug-bookholzberg.de: did not receive HSTS header
muslimbanter.co.za: could not connect to host
mustika.cf: did not receive HSTS header
mutamatic.com: could not connect to host
+mutuals.cool: did not receive HSTS header
mutuelle-obligatoire-pme.fr: did not receive HSTS header
muzgra.in: did not receive HSTS header
muzi.cz: could not connect to host
@@ -10271,6 +10444,7 @@ mvanmarketing.nl: did not receive HSTS header
mvnet.com.br: did not receive HSTS header
mvsecurity.nl: could not connect to host
mwalz.com: could not connect to host
+mwohlfarth.de: did not receive HSTS header
mxawei.cn: could not connect to host
mxlife.org: could not connect to host
my-demo.co: could not connect to host
@@ -10297,20 +10471,20 @@ mycollab.net: could not connect to host
mycolorado.gov: could not connect to host
mycontrolmonitor.com: could not connect to host
mycoted.com: did not receive HSTS header
-myday.eu.com: did not receive HSTS header
+myday.eu.com: could not connect to host
mydeos.com: could not connect to host
mydigipass.com: did not receive HSTS header
mydmdi.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
mydnaresults.com: could not connect to host
mydnatest.com: did not receive HSTS header
mydriversedge.com: did not receive HSTS header
+myeml.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
myepass.bg: could not connect to host
myepass.de: could not connect to host
myfappening.org: could not connect to host
myfdic.gov: could not connect to host
myfunworld.de: could not connect to host
-mygalgame.com: could not connect to host
-mygate.at: did not receive HSTS header
+mygalgame.com: did not receive HSTS header
mygaysitges.com: could not connect to host
mygivingcircle.org: did not receive HSTS header
mygooder.com: did not receive HSTS header
@@ -10323,21 +10497,19 @@ myhostname.net: did not receive HSTS header
myicare.org: did not receive HSTS header
myiocc.org: did not receive HSTS header
myip.tech: max-age too low: 2592000
-myipaddr.de: did not receive HSTS header
mykolab.com: did not receive HSTS header
mykreuzfahrt.de: could not connect to host
mylene-chandelier.me: did not receive HSTS header
mylighthost.com: did not receive HSTS header
mylocalsearch.co.uk: did not receive HSTS header
mylotto.co.nz: could not connect to host
-mymadina.com: could not connect to host
mymp3singer.co: could not connect to host
mymp3singer.net: could not connect to host
mymp3singer.site: could not connect to host
mymsr.de: did not receive HSTS header
+mymun.net: could not connect to host
myndcommunication.com: could not connect to host
mynetblog.com: did not receive HSTS header
-mynetworkingbuddy.com: could not connect to host
mynewleaf.co: did not receive HSTS header
mynewselfbariatrics.com: did not receive HSTS header
myni.io: could not connect to host
@@ -10366,9 +10538,11 @@ myrsa.in: did not receive HSTS header
myruststats.com: could not connect to host
mysa.is: could not connect to host
mysecretrewards.com: could not connect to host
+mysongbird.xyz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
myspa.asia: did not receive HSTS header
mystery-science-theater-3000.de: did not receive HSTS header
mysteryblog.de: did not receive HSTS header
+mysterysear.ch: could not connect to host
mystown.org: could not connect to host
mystudy.me: could not connect to host
mytc.fr: could not connect to host
@@ -10378,12 +10552,13 @@ mythslegendscollection.com: did not receive HSTS header
mytravelblog.de: could not connect to host
mywallets.io: could not connect to host
myweb360.de: did not receive HSTS header
+mywebinar.io: could not connect to host
myxbox.gr: max-age too low: 0
myzone.com: did not receive HSTS header
mzlog.win: could not connect to host
mzorn.photography: could not connect to host
n-rickroll-e.pw: could not connect to host
-n-x.info: did not receive HSTS header
+n-x.info: could not connect to host
n0099.cf: did not receive HSTS header
n0rm.ru: could not connect to host
n0s.de: did not receive HSTS header
@@ -10392,6 +10567,7 @@ n2x.in: could not connect to host
n3twork.net: could not connect to host
n4l.pw: could not connect to host
n64chan.me: did not receive HSTS header
+n7.education: did not receive HSTS header
n8ch.net: could not connect to host
na.hn: did not receive HSTS header
naano.org: could not connect to host
@@ -10410,7 +10586,6 @@ nais.me: did not receive HSTS header
najedlo.sk: could not connect to host
nakada4610.com: could not connect to host
nakamastreamingcommunity.com: could not connect to host
-nakanishi-paint.com: could not connect to host
nakhonidc.com: could not connect to host
nakitbonus2.com: could not connect to host
nakliyatsirketi.biz: could not connect to host
@@ -10428,7 +10603,7 @@ nametaken-cloud.duckdns.org: could not connect to host
namethatbone.com: could not connect to host
namethatporn.com: could not connect to host
namikawatetsuji.jp: could not connect to host
-namorico.me: could not connect to host
+namorico.me: max-age too low: 0
nan.ci: did not receive HSTS header
nan.zone: could not connect to host
nanami.moe: could not connect to host
@@ -10445,18 +10620,20 @@ naoar.com: could not connect to host
naphex.rocks: could not connect to host
napisynapomniky.cz: did not receive HSTS header
narach.com: did not receive HSTS header
-nargele.eu: could not connect to host
+nargele.eu: did not receive HSTS header
narko.space: could not connect to host
narodniki.com: did not receive HSTS header
narviz.com: did not receive HSTS header
nasarawanewsonline.com: could not connect to host
+nasme.tk: could not connect to host
nasmocopati.com: did not receive HSTS header
-nasralmabrooka.com: could not connect to host
+nasralmabrooka.com: did not receive HSTS header
+nassi.me: could not connect to host
nastysclaw.com: could not connect to host
natalia-fadeeva.ru: could not connect to host
natalia.io: did not receive HSTS header
natalieandjoshua.com: could not connect to host
-natalt.org: did not receive HSTS header
+natalt.org: could not connect to host
natalydanilova.com: max-age too low: 300
nataniel-perissier.fr: could not connect to host
nate.sh: could not connect to host
@@ -10477,9 +10654,10 @@ nauck.org: did not receive HSTS header
naudles.me: could not connect to host
nav.jobs: could not connect to host
naval.tf: could not connect to host
+navegos.net: could not connect to host
naviaddress.io: did not receive HSTS header
-navigate-it-services.de: did not receive HSTS header
naviteq.eu: could not connect to host
+navitime.me: could not connect to host
navjobs.com: could not connect to host
nawroth.info: could not connect to host
nax.io: did not receive HSTS header
@@ -10497,15 +10675,15 @@ ncc60205.info: could not connect to host
ncdesigns-studio.com: could not connect to host
nchristo.com: did not receive HSTS header
ncloud.freeddns.org: could not connect to host
+nclvle.co.uk: did not receive HSTS header
ncpc.gov: could not connect to host
ncpw.gov: did not receive HSTS header
ncrmnt.org: did not receive HSTS header
nct.org.uk: did not receive HSTS header
-nctx.co.uk: did not receive HSTS header
ndmath.club: could not connect to host
ndtblog.com: could not connect to host
ndtmarket.place: could not connect to host
-ne1home.dyndns.org: could not connect to host
+ne1home.dyndns.org: did not receive HSTS header
neap.io: could not connect to host
near.st: did not receive HSTS header
nearbiwa.com: did not receive HSTS header
@@ -10520,6 +10698,7 @@ nedwave.com: did not receive HSTS header
nedzad.me: could not connect to host
neels.ch: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
neer.io: could not connect to host
+neet-investor.biz: could not connect to host
neftaly.com: did not receive HSTS header
neftebitum-kngk.ru: did not receive HSTS header
negativzinsen.info: did not receive HSTS header
@@ -10532,18 +10711,19 @@ neko.ml: could not connect to host
nekoku.io: could not connect to host
nekox.ml: could not connect to host
nellen.it: did not receive HSTS header
-nemanja.top: did not receive HSTS header
+nemanja.top: could not connect to host
nemno.de: could not connect to host
nemovement.org: could not connect to host
nemplex.win: could not connect to host
neoani.me: did not receive HSTS header
+neocoding.com: did not receive HSTS header
neocyd.com: could not connect to host
neofelhz.space: could not connect to host
neojames.me: could not connect to host
neonisi.com: could not connect to host
neonnuke.tech: did not receive HSTS header
neosolution.ca: did not receive HSTS header
-nephy.jp: could not connect to host
+nephos.xyz: could not connect to host
nercp.org.uk: did not receive HSTS header
nerd42.de: could not connect to host
nerdbox.cc: did not receive HSTS header
@@ -10565,6 +10745,7 @@ netbuzz.ru: could not connect to host
netde.jp: could not connect to host
netdego.jp: could not connect to host
netfs.pl: did not receive HSTS header
+netfxharmonics.com: did not receive HSTS header
netguide.co.nz: did not receive HSTS header
netherwind.eu: did not receive HSTS header
netlilo.com: could not connect to host
@@ -10579,6 +10760,7 @@ netsparkercloud.com: did not receive HSTS header
netsystems.pro: could not connect to host
nettacompany.com.tr: did not receive HSTS header
nettefoundation.com: could not connect to host
+nettplusultra-rhone.fr: did not receive HSTS header
networx-online.de: could not connect to host
netzbit.de: could not connect to host
netzpolitik.org: max-age too low: 2592000
@@ -10589,6 +10771,7 @@ neuch.info: did not receive HSTS header
neueonlinecasino2016.com: could not connect to host
neuralgic.net: could not connect to host
neuro-plus-100.com: could not connect to host
+neuronasdigitales.com: did not receive HSTS header
neuronfactor.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
neutralvehicle.com: did not receive HSTS header
neva.li: could not connect to host
@@ -10601,6 +10784,7 @@ newbieboss.com: did not receive HSTS header
newbownerton.xyz: could not connect to host
newchance.store: could not connect to host
newcityinfo.info: could not connect to host
+newcreamforface.com: could not connect to host
newdeveloper.download: could not connect to host
newedivideo.it: could not connect to host
newfacialbeautycream.com: could not connect to host
@@ -10608,11 +10792,13 @@ newgenerationplus.org: could not connect to host
newhdmovies.io: could not connect to host
newline.online: did not receive HSTS header
newlooknow.com: did not receive HSTS header
-newmelalife.com: did not receive HSTS header
+newmed.com.br: could not connect to host
newparadigmventures.net: did not receive HSTS header
+newpathintegratedtherapy.com: did not receive HSTS header
newpoke.net: did not receive HSTS header
newportpropertygroup.com: could not connect to host
news4c.com: did not receive HSTS header
+newsaboutgames.de: could not connect to host
newsquantified.com: max-age too low: 0
newstarnootropics.com: could not connect to host
newtnote.com: could not connect to host
@@ -10625,12 +10811,13 @@ next176.sk: did not receive HSTS header
next47.com: did not receive HSTS header
nextcloud.li: could not connect to host
nextcloud.org: could not connect to host
-nextend.org: could not connect to host
+nextend.org: did not receive HSTS header
nexth.de: could not connect to host
nexth.net: did not receive HSTS header
nexth.us: could not connect to host
nexthop.co.jp: could not connect to host
nexthop.co.th: did not receive HSTS header
+nextlevel-it.co.uk: could not connect to host
nextpages.de: could not connect to host
nextproject.us: could not connect to host
nextshutter.com: did not receive HSTS header
@@ -10643,6 +10830,7 @@ ng-firewall.com: did not receive HSTS header
ng-security.com: could not connect to host
ngiemboon.net: could not connect to host
ngine.ch: did not receive HSTS header
+nginxconfig.com: could not connect to host
nginxnudes.com: could not connect to host
nginxyii.tk: could not connect to host
nglr.org: could not connect to host
@@ -10650,12 +10838,14 @@ ngocuong.net: could not connect to host
ngt-service.ru: could not connect to host
ngtoys.com.br: did not receive HSTS header
nhliberty.org: did not receive HSTS header
+nhsolutions.be: did not receive HSTS header
nhsuites.com: did not receive HSTS header
nhus.de: max-age too low: 172800
niallator.com: could not connect to host
nibiisclaim.com: could not connect to host
nicestresser.fr: could not connect to host
-nicholasperkins.io: could not connect to host
+nickcleans.co.uk: could not connect to host
+nicktheitguy.com: could not connect to host
nicky.io: did not receive HSTS header
nico.one: could not connect to host
nicoborghuis.nl: could not connect to host
@@ -10663,13 +10853,14 @@ nicolaeiotcu.ro: could not connect to host
nicolaelmer.ch: did not receive HSTS header
nicolasbettag.me: did not receive HSTS header
nicolasdutour.com: did not receive HSTS header
-nicolasklotz.de: did not receive HSTS header
+nicolasklotz.de: could not connect to host
nicoleoquendo.com: max-age too low: 2592000
niconiconi.xyz: could not connect to host
+nicoobook.com: did not receive HSTS header
nicorevin.ru: could not connect to host
nidux.com: did not receive HSTS header
niduxcomercial.com: could not connect to host
-niedersetz.de: did not receive HSTS header
+niedersetz.de: could not connect to host
nien.chat: could not connect to host
nien.com.tw: could not connect to host
nienfun.com: could not connect to host
@@ -10679,10 +10870,13 @@ nifpnet.nl: could not connect to host
nifume.com: could not connect to host
niggo.eu: could not connect to host
nightsnack.cf: could not connect to host
+nightwinds.tk: could not connect to host
niho.jp: did not receive HSTS header
-nikcub.com: could not connect to host
+nikcub.com: did not receive HSTS header
+niki.ai: did not receive HSTS header
nikksno.io: could not connect to host
niklas.host: could not connect to host
+niklasanderson.com: could not connect to host
niklaslindblad.se: did not receive HSTS header
nikobradshaw.com: could not connect to host
nikolaichik.photo: did not receive HSTS header
@@ -10701,7 +10895,7 @@ niouininon.eu: could not connect to host
nippler.org: could not connect to host
nippombashi.net: did not receive HSTS header
nippon.fr: could not connect to host
-nipponcareers.com: did not receive HSTS header
+nipponcareers.com: could not connect to host
nirada.info: could not connect to host
nirjharstudio.com: could not connect to host
nirna.io: did not receive HSTS header
@@ -10711,6 +10905,7 @@ nishaswonderland.nl: did not receive HSTS header
nishikino-maki.com: could not connect to host
nishisbma.com: could not connect to host
nitaonline.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+niva.synology.me: could not connect to host
niveldron.com: could not connect to host
nixien.fr: could not connect to host
nixmag.net: could not connect to host
@@ -10726,6 +10921,7 @@ nmgb.ga: could not connect to host
nmgb.ml: could not connect to host
nmsnj.com: did not receive HSTS header
nmueller.at: could not connect to host
+nn78.com: did not receive HSTS header
nnote.net: could not connect to host
nnya.cat: could not connect to host
no17sifangjie.cc: could not connect to host
@@ -10743,6 +10939,7 @@ nodepanel.net: did not receive HSTS header
nodepositcasinouk.com: did not receive HSTS header
nodeselect.com: could not connect to host
nodespin.com: did not receive HSTS header
+nodesturut.cl: did not receive HSTS header
nodetemple.com: could not connect to host
nodi.at: did not receive HSTS header
nodum.io: did not receive HSTS header
@@ -10759,7 +10956,7 @@ nolberg.net: did not receive HSTS header
nolimits.net.nz: could not connect to host
nolimitsbook.de: did not receive HSTS header
nolte.work: could not connect to host
-nomagic.software: did not receive HSTS header
+nomagic.software: could not connect to host
nomorebytes.de: could not connect to host
nonemu.ninja: could not connect to host
noodlecrave.com: did not receive HSTS header
@@ -10777,15 +10974,16 @@ norden.eu.org: could not connect to host
nordic-survival.de: did not receive HSTS header
nordiccasinocommunity.com: did not receive HSTS header
nordlicht.photography: did not receive HSTS header
-nordseeblicke.de: did not receive HSTS header
noref.tk: could not connect to host
norge.guide: could not connect to host
normalady.com: could not connect to host
+normankranich.de: could not connect to host
normanschwaneberg.de: did not receive HSTS header
north.supply: could not connect to host
northcutt.com: did not receive HSTS header
northernmuscle.ca: could not connect to host
northpennvwparts.com: max-age too low: 604800
+northwest-events.co.uk: could not connect to host
northwoodsfish.com: could not connect to host
nosbenevolesontdutalent.com: could not connect to host
nosecretshop.com: could not connect to host
@@ -10797,6 +10995,7 @@ nota-web.com: could not connect to host
notablog.xyz: did not receive HSTS header
notadd.io: could not connect to host
notadd.store: could not connect to host
+notalone.gov: could not connect to host
notarankastojkovic.me: could not connect to host
notarobot.fr: did not receive HSTS header
notboring.co.uk: could not connect to host
@@ -10813,6 +11012,7 @@ notjustbitchy.com: could not connect to host
notonprem.com: could not connect to host
nottheonion.net: did not receive HSTS header
nottori.com: could not connect to host
+nottres.com: did not receive HSTS header
notypiesni.sk: did not receive HSTS header
nou.si: did not receive HSTS header
nouma.fr: did not receive HSTS header
@@ -10821,9 +11021,9 @@ nova-elearning.com: could not connect to host
nova.com.hk: did not receive HSTS header
novaco.in: max-age too low: 3600
novacraft.me: could not connect to host
+novadermis.es: could not connect to host
novaopcaofestas.com.br: could not connect to host
novaorbis.org: could not connect to host
-novascan.net: could not connect to host
novatrucking.de: could not connect to host
novavoidhowl.com: did not receive HSTS header
novelabs.de: could not connect to host
@@ -10831,7 +11031,6 @@ novelabs.eu: could not connect to host
novelshouse.com: could not connect to host
novfishing.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
novinhabucetuda.com: could not connect to host
-novinivo.com: did not receive HSTS header
novtest.ru: did not receive HSTS header
nowcost.com: could not connect to host
noworrywp.com: could not connect to host
@@ -10858,7 +11057,6 @@ nstyleintl.ca: did not receive HSTS header
nsure.us: could not connect to host
nsweb.solutions: could not connect to host
ntbs.pro: could not connect to host
-ntia.gov: could not connect to host
ntse.xyz: could not connect to host
nu3.at: did not receive HSTS header
nu3.ch: did not receive HSTS header
@@ -10888,7 +11086,7 @@ numericacu.com: did not receive HSTS header
numero-di-telefono.it: could not connect to host
numista.com: did not receive HSTS header
nuovamoda.al: could not connect to host
-nup.pw: could not connect to host
+nup.pw: max-age too low: 0
nupef.org.br: did not receive HSTS header
nurserybook.co: did not receive HSTS header
nurture.be: did not receive HSTS header
@@ -10924,7 +11122,7 @@ nyuusannkinn.com: did not receive HSTS header
nz.search.yahoo.com: max-age too low: 172800
nzbs.io: could not connect to host
nzmk.cz: could not connect to host
-nzquakes.maori.nz: could not connect to host
+nzquakes.maori.nz: did not receive HSTS header
o-rickroll-y.pw: could not connect to host
o0o.one: did not receive HSTS header
oaksbloom.com: could not connect to host
@@ -10956,10 +11154,10 @@ ocmeulebeke.be: did not receive HSTS header
ocrami.us: did not receive HSTS header
octal.es: could not connect to host
octanio.com: could not connect to host
-octo.im: could not connect to host
octocat.ninja: could not connect to host
octod.tk: could not connect to host
octofox.de: did not receive HSTS header
+octohost.net: did not receive HSTS header
oddmouse.com: could not connect to host
odin.xxx: could not connect to host
odinkapital.no: did not receive HSTS header
@@ -10970,7 +11168,7 @@ odysseyandco.com: could not connect to host
odysseyconservationtrust.com: did not receive HSTS header
oe8.bet: could not connect to host
ofcourselanguages.com: could not connect to host
-ofcss.com: did not receive HSTS header
+ofcss.com: could not connect to host
ofer.site: did not receive HSTS header
off-the-clock.us: could not connect to host
offenedialoge.de: max-age too low: 2592000
@@ -10996,7 +11194,7 @@ ogrodywstudniach.pl: did not receive HSTS header
ohayosoro.me: could not connect to host
ohm2013.org: did not receive HSTS header
ohma.ga: did not receive HSTS header
-ohnemusik.com: could not connect to host
+ohnemusik.com: max-age too low: 0
ohohrazi.com: did not receive HSTS header
ohreally.de: could not connect to host
ohsocool.org: did not receive HSTS header
@@ -11004,14 +11202,14 @@ oiepoie.nl: could not connect to host
oinky.ddns.net: could not connect to host
oishioffice.com: did not receive HSTS header
ojbk.eu: could not connect to host
-ojeremy.com: could not connect to host
+ojeremy.com: did not receive HSTS header
ojls.co: could not connect to host
-okad-center.de: could not connect to host
-okad.de: could not connect to host
-okad.eu: could not connect to host
+okad-center.de: did not receive HSTS header
+okad.de: did not receive HSTS header
+okad.eu: did not receive HSTS header
okane.love: could not connect to host
okashi.me: could not connect to host
-okaz.de: could not connect to host
+okaz.de: did not receive HSTS header
oklahomamoversassociation.org: could not connect to host
oklahomanotepro.com: could not connect to host
okok-rent.com: could not connect to host
@@ -11023,6 +11221,7 @@ oldandyounglesbians.us: could not connect to host
oldschool-criminal.com: did not receive HSTS header
oldtimer-trifft-flugplatz.de: did not receive HSTS header
oliverdunk.com: did not receive HSTS header
+olivierlemoal.fr: could not connect to host
ollehbizev.co.kr: could not connect to host
ols.io: did not receive HSTS header
olswangtrainees.com: could not connect to host
@@ -11030,6 +11229,7 @@ olympe-transport.fr: did not receive HSTS header
omacostudio.com: could not connect to host
omar.yt: could not connect to host
omarh.net: could not connect to host
+omarsuniagamusic.ga: could not connect to host
omeuanimal.com: did not receive HSTS header
omgaanmetidealen.com: could not connect to host
ominto.com: did not receive HSTS header
@@ -11060,16 +11260,17 @@ onepluscamps.com: did not receive HSTS header
onepopstore.com: could not connect to host
onespiritinc.com: did not receive HSTS header
onet.space: could not connect to host
-onetech.it: did not receive HSTS header
onetly.com: could not connect to host
onetwentyseven001.com: did not receive HSTS header
onewebdev.info: could not connect to host
oneworldbank.com: did not receive HSTS header
onewpst.com: could not connect to host
+ongea.io: could not connect to host
onguardonline.gov: did not receive HSTS header
oniichan.us: did not receive HSTS header
onionbot.ga: could not connect to host
onioncloud.org: could not connect to host
+onionplay.live: could not connect to host
onionsburg.com: could not connect to host
online-casino.eu: did not receive HSTS header
online-scene.com: did not receive HSTS header
@@ -11079,6 +11280,7 @@ onlinebiller.com: [Exception... "Component returned failure code: 0x80004005 (NS
onlinebillingform.com: could not connect to host
onlinecasinobluebook.com: could not connect to host
onlinecompliance.org: did not receive HSTS header
+onlinecorners.com: did not receive HSTS header
onlinedemo.hu: could not connect to host
onlinedeposit.us: could not connect to host
onlinekasino.de: did not receive HSTS header
@@ -11112,7 +11314,7 @@ onwie.fr: could not connect to host
onyxwall.com: could not connect to host
onyxwall.link: could not connect to host
onyxwall.net: could not connect to host
-oo.edu.rs: did not receive HSTS header
+oo.edu.rs: could not connect to host
ooeste.com: could not connect to host
ookjesprookje.nl: could not connect to host
ooooush.co.uk: could not connect to host
@@ -11121,18 +11323,21 @@ oopsorup.com: could not connect to host
oost.io: could not connect to host
opatut.de: did not receive HSTS header
opcaobolsas.com.br: could not connect to host
-open-domotics.info: could not connect to host
open-future.be: did not receive HSTS header
open-mx.de: could not connect to host
open-to-repair.fr: max-age too low: 86400
+openacademies.com: could not connect to host
+openas.org: did not receive HSTS header
openclub24.ru: could not connect to host
openconcept.no: did not receive HSTS header
openconnect.com.au: could not connect to host
opendesk.cc: did not receive HSTS header
openevic.info: could not connect to host
opengateway.fr: did not receive HSTS header
+openiocdb.com: could not connect to host
openmetals.com: could not connect to host
openmind-shop.de: did not receive HSTS header
+openmirrors.cf: could not connect to host
openpriv.pw: could not connect to host
openprovider.nl: did not receive HSTS header
openrainbow.org: could not connect to host
@@ -11153,6 +11358,8 @@ opinion8td.com: did not receive HSTS header
opinionicentrifuga.it: could not connect to host
opinionipannolini.it: could not connect to host
opioids.com: could not connect to host
+oportunidadesemfoco.com.br: did not receive HSTS header
+opp.ag: did not receive HSTS header
oppag.com.br: did not receive HSTS header
opperwall.net: could not connect to host
opposer.me: could not connect to host
@@ -11171,11 +11378,9 @@ opunch.org: did not receive HSTS header
oracaodocredo.com.br: could not connect to host
orangekey.tk: could not connect to host
orangenuts.in: could not connect to host
-oranges.tokyo: could not connect to host
-orangetravel.eu: could not connect to host
oranic.com: did not receive HSTS header
orbiosales.com: could not connect to host
-orbitcom.de: did not receive HSTS header
+orbitcom.de: could not connect to host
orbitdefence.co.uk: could not connect to host
orbograph-hrcm.com: could not connect to host
orcahq.com: did not receive HSTS header
@@ -11186,7 +11391,7 @@ oref-idf.com: did not receive HSTS header
oref-idf.net: did not receive HSTS header
oref-idf.org: did not receive HSTS header
oregonmu.org: did not receive HSTS header
-orelavtomaster.ru: did not receive HSTS header
+orelavtomaster.ru: could not connect to host
orfeo-engineering.ch: could not connect to host
organic-superfood.net: could not connect to host
organicae.com: did not receive HSTS header
@@ -11200,7 +11405,7 @@ orleika.ml: could not connect to host
oroweatorganic.com: could not connect to host
orthodoxy.lt: did not receive HSTS header
orui.com.br: could not connect to host
-orum.in: could not connect to host
+orz.uno: did not receive HSTS header
osaiyuwu.com: could not connect to host
oscarmashauri.com: did not receive HSTS header
oscillation-services.fr: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
@@ -11209,11 +11414,13 @@ oscreen.me: could not connect to host
oscreen.org: could not connect to host
oscsdp.cz: could not connect to host
osdls.gov: did not receive HSTS header
+osereso.tn: could not connect to host
osha-kimi.com: did not receive HSTS header
oshanko.de: could not connect to host
oshinagaki.jp: could not connect to host
oslfoundation.org: did not receive HSTS header
osp.cx: could not connect to host
+osquery.io: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
ossan-kobe-gourmet.com: did not receive HSTS header
ossbinaries.com: could not connect to host
osteammate.com: could not connect to host
@@ -11221,7 +11428,9 @@ ostendorf.com: did not receive HSTS header
osticketawesome.com: did not receive HSTS header
ostrov8.com: could not connect to host
oswaldmattgroup.com: did not receive HSTS header
+otako.pl: did not receive HSTS header
otakuworld.de: could not connect to host
+otchecker.com: could not connect to host
other98.com: did not receive HSTS header
othercode.nl: could not connect to host
otherkinforum.com: could not connect to host
@@ -11232,22 +11441,23 @@ otinane.eu: could not connect to host
otmns.net: could not connect to host
otokonna.com: could not connect to host
otrsdemo.hu: did not receive HSTS header
+ottoproject.io: did not receive HSTS header
ottospora.nl: could not connect to host
ourbank.com: max-age too low: 2592000
ourchoice2016.com: could not connect to host
ourls.win: could not connect to host
-ourmaster.org: did not receive HSTS header
outdooradventures.pro: could not connect to host
outdoorproducts.com: max-age too low: 7889238
outreachbuddy.com: could not connect to host
outsider.im: could not connect to host
-outurnate.com: could not connect to host
+outurnate.com: did not receive HSTS header
ouvirmusica.com.br: did not receive HSTS header
ovenapp.io: did not receive HSTS header
over25tips.com: did not receive HSTS header
override.io: could not connect to host
-overrustle.com: could not connect to host
+overrustle.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
oversight.io: could not connect to host
+overture.london: did not receive HSTS header
ovuscloud.de: could not connect to host
ovwane.com: could not connect to host
owennelson.me: max-age too low: 2592000
@@ -11261,6 +11471,7 @@ owothisdiz.pw: could not connect to host
oxanababy.com: could not connect to host
oxro.co: did not receive HSTS header
oxro.io: did not receive HSTS header
+oxygaming.com: could not connect to host
oxygenabsorbers.com: did not receive HSTS header
oxymc.com: did not receive HSTS header
oxynux.fr: could not connect to host
@@ -11279,29 +11490,30 @@ p3in.com: could not connect to host
p3ter.fr: did not receive HSTS header
p8r.de: did not receive HSTS header
paavolastudio.com: did not receive HSTS header
-pablo.im: could not connect to host
-pablo.scot: could not connect to host
-pablo.sh: could not connect to host
-pabloarteaga.co.uk: could not connect to host
-pabloarteaga.com: could not connect to host
-pabloarteaga.com.es: could not connect to host
-pabloarteaga.es: could not connect to host
-pabloarteaga.eu: could not connect to host
-pabloarteaga.info: could not connect to host
-pabloarteaga.me: could not connect to host
-pabloarteaga.name: could not connect to host
-pabloarteaga.net: could not connect to host
-pabloarteaga.nom.es: could not connect to host
-pabloarteaga.org: could not connect to host
-pabloarteaga.science: could not connect to host
-pabloarteaga.tech: could not connect to host
-pabloarteaga.uk: could not connect to host
-pabloarteaga.xyz: could not connect to host
+pablo.im: did not receive HSTS header
+pablo.scot: did not receive HSTS header
+pablo.sh: did not receive HSTS header
+pabloarteaga.co.uk: did not receive HSTS header
+pabloarteaga.com: did not receive HSTS header
+pabloarteaga.com.es: did not receive HSTS header
+pabloarteaga.es: did not receive HSTS header
+pabloarteaga.eu: did not receive HSTS header
+pabloarteaga.info: did not receive HSTS header
+pabloarteaga.me: did not receive HSTS header
+pabloarteaga.name: did not receive HSTS header
+pabloarteaga.net: did not receive HSTS header
+pabloarteaga.nom.es: did not receive HSTS header
+pabloarteaga.org: did not receive HSTS header
+pabloarteaga.science: did not receive HSTS header
+pabloarteaga.tech: did not receive HSTS header
+pabloarteaga.uk: did not receive HSTS header
+pabloarteaga.xyz: did not receive HSTS header
pablocamino.tk: could not connect to host
-pablofain.com: did not receive HSTS header
pablorey-art.com: did not receive HSTS header
+paceda.nl: could not connect to host
pachaiyappas.org: did not receive HSTS header
packair.com: did not receive HSTS header
+packer.io: did not receive HSTS header
packetapp.ru: could not connect to host
packetcrash.net: could not connect to host
packlane.com: did not receive HSTS header
@@ -11311,13 +11523,13 @@ pactf-flag-4boxdpa21ogonzkcrs9p.com: could not connect to host
pactocore.org: could not connect to host
padeoe.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 :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-padovani.de: could not connect to host
paestbin.com: could not connect to host
page: could not connect to host
+pagedesignshop.com: did not receive HSTS header
pagerate.io: could not connect to host
pages-tocaven.com: could not connect to host
pagetoimage.com: could not connect to host
-paginapolitica.ro: could not connect to host
+paginapolitica.ro: did not receive HSTS header
pagure.org: could not connect to host
pahnid.com: could not connect to host
paigeglass.com: did not receive HSTS header
@@ -11333,10 +11545,10 @@ paket.io: could not connect to host
paket.ml: did not receive HSTS header
paketkreditsuzuki.com: could not connect to host
paku.me: could not connect to host
-palariviera.com: could not connect to host
palationtrade.com: could not connect to host
palawan.jp: could not connect to host
palazzotalamo.it: did not receive HSTS header
+paleolowcarb.de: did not receive HSTS header
paleosquawk.com: could not connect to host
pallet.io: did not receive HSTS header
palmer.im: could not connect to host
@@ -11376,6 +11588,7 @@ paradise-engineers.com: could not connect to host
paragon.edu: did not receive HSTS header
parakranov.ru: did not receive HSTS header
paranormalweirdo.com: could not connect to host
+paranoxer.hu: could not connect to host
parav.xyz: did not receive HSTS header
pardnoy.com: could not connect to host
parent5446.us: could not connect to host
@@ -11392,13 +11605,17 @@ parkrocker.com: max-age too low: 604800
parksland.net: did not receive HSTS header
parksubaruoemparts.com: could not connect to host
parkwithark.com: could not connect to host
-parodybit.net: did not receive HSTS header
+parodybit.net: could not connect to host
parpaing-paillette.net: could not connect to host
-parteaga.com: could not connect to host
-parteaga.net: could not connect to host
+partage.ovh: could not connect to host
+parteaga.com: did not receive HSTS header
+parteaga.net: did not receive HSTS header
+participatorybudgeting.de: did not receive HSTS header
+participatorybudgeting.info: did not receive HSTS header
particonpsplus.it: could not connect to host
partirkyoto.jp: did not receive HSTS header
-partnercardservices.com: could not connect to host
+partiwatch.com: could not connect to host
+partnercardservices.com: did not receive HSTS header
partnerwerk.de: did not receive HSTS header
partyhaus.ovh: could not connect to host
partyhireformby.co.uk: did not receive HSTS header
@@ -11468,6 +11685,7 @@ paymon.tj: could not connect to host
paypod.org: could not connect to host
payroll.ch: could not connect to host
paytwopay.com: could not connect to host
+payzwin.com: did not receive HSTS header
pb-design.ch: could not connect to host
pbapp.net: did not receive HSTS header
pbbr.com: did not receive HSTS header
@@ -11482,6 +11700,7 @@ pcat.io: could not connect to host
pcfun.net: did not receive HSTS header
pchax.net: could not connect to host
pchospital.cc: could not connect to host
+pcmedia.co.nz: did not receive HSTS header
pcvirusclear.com: could not connect to host
pdamsidoarjo.co.id: could not connect to host
pdevio.com: could not connect to host
@@ -11494,9 +11713,11 @@ peakapp.nl: could not connect to host
pebblesdemo.com: could not connect to host
pecot.fr: did not receive HSTS header
peekops.com: could not connect to host
+peen.ch: could not connect to host
peerherrmann.de: could not connect to host
-peerless.ae: could not connect to host
+peerless.ae: did not receive HSTS header
peinard.net: did not receive HSTS header
+peintrenomade.com: did not receive HSTS header
peirong.me: could not connect to host
peissen.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
pekkapikkarainen.fi: did not receive HSTS header
@@ -11515,11 +11736,12 @@ pennylane.me.uk: did not receive HSTS header
pensanisso.com: did not receive HSTS header
penser-electronique.com: did not receive HSTS header
pension-veldzigt.nl: did not receive HSTS header
-pension-waldesruh.de: did not receive HSTS header
pensiunealido.ro: could not connect to host
pentagram.me: max-age too low: 2592000
pentano.net: could not connect to host
people-mozilla.org: could not connect to host
+peoplerange.com: could not connect to host
+peoplesbankal.com: did not receive HSTS header
peperiot.com: did not receive HSTS header
pepper.dog: could not connect to host
pepperhead.com: did not receive HSTS header
@@ -11533,6 +11755,7 @@ perfect-radiant-wrinkles.com: could not connect to host
perfectionis.me: could not connect to host
perfectionunite.com: could not connect to host
perfectseourl.com: did not receive HSTS header
+performancesantafe.org: did not receive HSTS header
performaride.com.au: did not receive HSTS header
performaterm.ro: could not connect to host
performous.org: did not receive HSTS header
@@ -11561,6 +11784,7 @@ pet-life.top: did not receive HSTS header
pet-nsk.ru: could not connect to host
petangen.se: could not connect to host
petchart.net: could not connect to host
+peteboc.com: max-age too low: 0
peterfolta.net: could not connect to host
petermazur.com: did not receive HSTS header
peternagy.ie: did not receive HSTS header
@@ -11572,7 +11796,6 @@ petit.site: could not connect to host
petlife.od.ua: could not connect to host
petplum.com: could not connect to host
petrachuk.ru: could not connect to host
-petravdbos.nl: could not connect to host
petrkrapek.cz: did not receive HSTS header
petrolplus.ru: max-age too low: 7776000
petrovsky.pro: could not connect to host
@@ -11589,19 +11812,18 @@ pferdeeinstreu-kaufen.com: did not receive HSTS header
pfgshop.com.br: could not connect to host
pflegedienst-gratia.de: max-age too low: 300
pfolta.net: could not connect to host
+pfrost.me: could not connect to host
pgcpbc.com: could not connect to host
pgmsource.com: could not connect to host
pgpm.io: could not connect to host
pgregg.com: did not receive HSTS header
pgtb.be: could not connect to host
phalconist.com: could not connect to host
-pharmacie-fr.org: did not receive HSTS header
pharmgkb.org: could not connect to host
phcmembers.com: did not receive HSTS header
phcnetworks.net: did not receive HSTS header
phdsupply.com: could not connect to host
phdwuda.com: could not connect to host
-phelx.de: could not connect to host
phenomeno-porto.com: could not connect to host
phenomeno.nl: could not connect to host
phenomenoporto.com: could not connect to host
@@ -11612,16 +11834,17 @@ philipmordue.co.uk: could not connect to host
philippa.cool: could not connect to host
phillippi.me: could not connect to host
phillmoore.com: did not receive HSTS header
-phillprice.com: could not connect to host
+phillprice.com: did not receive HSTS header
philonas.net: did not receive HSTS header
philpropertygroup.com: could not connect to host
phippsreporting.com: did not receive HSTS header
-phishing.rs: did not receive HSTS header
+phishing.rs: could not connect to host
phoebe.co.nz: did not receive HSTS header
phoenicis.com.ua: did not receive HSTS header
phoenix.dj: did not receive HSTS header
phonenumberinfo.co.uk: could not connect to host
phongmay24h.com: could not connect to host
+phonix-company.fr: could not connect to host
phood.be: could not connect to host
photoblogverona.com: could not connect to host
photoboothpartyhire.co.uk: did not receive HSTS header
@@ -11631,11 +11854,12 @@ photops.fr: could not connect to host
photosoftware.nl: could not connect to host
phototag.org: did not receive HSTS header
php-bach.org: could not connect to host
+phpdistribution.com: did not receive HSTS header
phperformances.fr: did not receive HSTS header
phpfashion.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-phpinfo.in.th: could not connect to host
phr34kz.pw: did not receive HSTS header
phrasing.me: could not connect to host
+phryneas.de: did not receive HSTS header
phumin.in.th: did not receive HSTS header
phuong.faith: could not connect to host
pi-eng.fr: did not receive HSTS header
@@ -11643,9 +11867,10 @@ pianetaottica.eu: could not connect to host
pianetaottica.info: could not connect to host
pianetaottica.net: could not connect to host
pianetaottica.org: could not connect to host
-pias-button.net: did not receive HSTS header
+pianomover.co.uk: could not connect to host
+pias-button.net: could not connect to host
piasto.com.cy: could not connect to host
-piatanoua.md: could not connect to host
+piatanoua.md: did not receive HSTS header
picallo.es: could not connect to host
picardiascr.com: could not connect to host
pickr.co: could not connect to host
@@ -11658,6 +11883,7 @@ pidatacenters.com: did not receive HSTS header
pidomex.com: did not receive HSTS header
piedfeed.com: did not receive HSTS header
piekacz.co.uk: could not connect to host
+pieperhome.de: did not receive HSTS header
pierrejeansuau.fr: could not connect to host
pieterjangeeroms.me: could not connect to host
piggott.me.uk: did not receive HSTS header
@@ -11667,7 +11893,6 @@ pikmy.com: could not connect to host
pilgermaske.org: did not receive HSTS header
piligrimname.com: could not connect to host
pillowandpepper.com: did not receive HSTS header
-pilotandy.com: could not connect to host
pilotcrowd.nl: did not receive HSTS header
pimpmymac.ru: did not receive HSTS header
pimpmypaper.com: could not connect to host
@@ -11677,10 +11902,10 @@ pin.net.au: did not receive HSTS header
pineapplesapp.com: did not receive HSTS header
pinebaylibrary.org: could not connect to host
pinesandneedles.com: max-age too low: 7889238
+pinkcasino.co.uk: did not receive HSTS header
pinkfis.ch: did not receive HSTS header
pinkhq.com: did not receive HSTS header
pinkinked.com: could not connect to host
-pinkyf.com: did not receive HSTS header
pinoylinux.org: did not receive HSTS header
pintoselectrician.co.za: did not receive HSTS header
pioche.ovh: did not receive HSTS header
@@ -11696,12 +11921,12 @@ piratelist.online: could not connect to host
piratenlogin.de: could not connect to host
piratepay.io: could not connect to host
piratepay.ir: did not receive HSTS header
-pirateproxy.pe: could not connect to host
+pirateproxy.pe: max-age too low: 0
pirateproxy.sx: did not receive HSTS header
pirateproxy.vip: could not connect to host
pirati.cz: max-age too low: 604800
piratte.net: did not receive HSTS header
-pirganj24.com: did not receive HSTS header
+pirganj24.com: could not connect to host
pirlitu.com: did not receive HSTS header
pisexy.me: did not receive HSTS header
pisidia.de: could not connect to host
@@ -11715,13 +11940,13 @@ pixdigital.net: did not receive HSTS header
pixeame.com: could not connect to host
pixel.google.com: did not receive HSTS header (error ignored - included regardless)
pixelcode.com.au: could not connect to host
+pixelcubed.com: could not connect to host
pixelesque.uk: could not connect to host
pixelgliders.de: could not connect to host
pixelhero.co.uk: did not receive HSTS header
pixelpoint.io: did not receive HSTS header
pixi.chat: could not connect to host
pixi.me: did not receive HSTS header
-pixlfox.com: could not connect to host
pizzadoc.ch: could not connect to host
pj00100.com: did not receive HSTS header
pj00200.com: did not receive HSTS header
@@ -11730,6 +11955,7 @@ pj00400.com: did not receive HSTS header
pj00600.com: did not receive HSTS header
pj00700.com: did not receive HSTS header
pj00800.com: could not connect to host
+pj009.com: did not receive HSTS header
pj00900.com: did not receive HSTS header
pj02.com: did not receive HSTS header
pj83.duckdns.org: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
@@ -11738,7 +11964,7 @@ pjbet.mg: could not connect to host
pjsec.tk: could not connect to host
pkautodesign.com: did not receive HSTS header
pkbjateng.or.id: could not connect to host
-pko.ch: could not connect to host
+pko.ch: did not receive HSTS header
pkschat.com: could not connect to host
plaasprodukte.com: could not connect to host
placefade.com: could not connect to host
@@ -11746,6 +11972,7 @@ placehold.co: did not receive HSTS header
placollection.org: could not connect to host
plaettliaktion.ch: did not receive HSTS header
plagiarismcheck.org: max-age too low: 604800
+plaintray.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
plakbak.nl: could not connect to host
planbox.info: could not connect to host
planeexplanation.com: could not connect to host
@@ -11763,7 +11990,7 @@ play: could not connect to host
play.google.com: did not receive HSTS header (error ignored - included regardless)
playdreamcraft.com.br: did not receive HSTS header
playerhunter.com: did not receive HSTS header
-playflick.com: did not receive HSTS header
+playflick.com: could not connect to host
playkh.com: did not receive HSTS header
playmaker.io: did not receive HSTS header
playmaza.live: did not receive HSTS header
@@ -11772,16 +11999,18 @@ playsoundevents.be: could not connect to host
playsource.co: could not connect to host
playwhyyza.com: could not connect to host
playyou.be: could not connect to host
-please-deny.me: did not receive HSTS header
+please-deny.me: could not connect to host
pleasure-science.com: could not connect to host
pleasure.forsale: could not connect to host
plen.io: could not connect to host
+plexi.dyndns.tv: could not connect to host
plexpy13.ddns.net: could not connect to host
plexusmd.com: did not receive HSTS header
plfgr.eu.org: could not connect to host
plhdb.org: did not receive HSTS header
plinc.co: could not connect to host
plirt.ru: could not connect to host
+plixer.com: did not receive HSTS header
ploader.ru: max-age too low: 604800
plogable.co: could not connect to host
plomberierenga.com: max-age too low: 2592000
@@ -11791,8 +12020,9 @@ ploup.net: could not connect to host
pluff.nl: did not receive HSTS header
plugboard.xyz: could not connect to host
pluggedhead.com: did not receive HSTS header
-plumbingboksburg.co.za: could not connect to host
+plumbingboksburg.co.za: did not receive HSTS header
plumbingman.com.au: did not receive HSTS header
+plumplat.com: did not receive HSTS header
plus-digital.net: did not receive HSTS header
plus-u.com.au: did not receive HSTS header
plus.sandbox.google.com: did not receive HSTS header (error ignored - included regardless)
@@ -11810,6 +12040,7 @@ pmemanager.fr: did not receive HSTS header
pmessage.ch: could not connect to host
pmheart.site: could not connect to host
pmnts.io: could not connect to host
+pn.id.lv: did not receive HSTS header
pneusgppremium.com.br: did not receive HSTS header
pnukee.com: did not receive HSTS header
po.gl: could not connect to host
@@ -11858,7 +12089,7 @@ polytechecosystem.vc: could not connect to host
pomardaserra.com: could not connect to host
pomfe.co: could not connect to host
pompefunebrilariviera.it: could not connect to host
-pompompoes.com: did not receive HSTS header
+pompompoes.com: could not connect to host
pondof.fish: could not connect to host
poneytelecom.org: could not connect to host
ponteencima.com: could not connect to host
@@ -11868,6 +12099,7 @@ pontokay.com.br: could not connect to host
pontualcomp.com: could not connect to host
pony.today: could not connect to host
ponythread.com: did not receive HSTS header
+pookl.com: could not connect to host
poolinstallers.co.za: could not connect to host
poolsandstuff.com: did not receive HSTS header
poon.tech: could not connect to host
@@ -11881,14 +12113,20 @@ popkins.tk: could not connect to host
popupsoftplay.com: could not connect to host
poris.web.id: could not connect to host
porn77.info: could not connect to host
+pornalpha.com: could not connect to host
pornbay.org: could not connect to host
pornblog.org: could not connect to host
-porncandi.com: could not connect to host
+pornimg.net: could not connect to host
+pornless.biz: could not connect to host
+pornmax.net: could not connect to host
porno-gif.ru: could not connect to host
pornohub.su: could not connect to host
pornolab-net.appspot.com: could not connect to host
pornoserver.eu: could not connect to host
+pornport.org: could not connect to host
pornstars.me: did not receive HSTS header
+pornteddy.com: could not connect to host
+pornultra.net: could not connect to host
porschen.fr: could not connect to host
port.social: could not connect to host
portale-randkowe.pl: did not receive HSTS header
@@ -11899,9 +12137,11 @@ portalmundo.xyz: could not connect to host
portalplatform.net: could not connect to host
portaluniversalista.org: did not receive HSTS header
portalveneza.com.br: did not receive HSTS header
+portalzine.de: did not receive HSTS header
portefeuillesignalen.nl: did not receive HSTS header
poshpak.com: max-age too low: 86400
positivesobrietyinstitute.com: did not receive HSTS header
+post.we.bs: did not receive HSTS header
post4me.at: could not connect to host
postback.io: did not receive HSTS header
postcardpayment.com: could not connect to host
@@ -11933,28 +12173,31 @@ powerb.ch: did not receive HSTS header
powerentertainment.tv: could not connect to host
poweroff.win: could not connect to host
powerplannerapp.com: could not connect to host
+powersergthisisthewebsitefuckyouscott.com: could not connect to host
powersergunited.com: could not connect to host
powersergunited.org: could not connect to host
powershellmagic.com: could not connect to host
powershift.ne.jp: did not receive HSTS header
+powertothebuilder.com: could not connect to host
powerxequality.com: did not receive HSTS header
poy-tech.com: could not connect to host
pozniak.at: did not receive HSTS header
pozyczka-bez-zaswiadczen.pl: did not receive HSTS header
pozytywnyplan.pl: could not connect to host
-pozzo-balbi.com: did not receive HSTS header
+pozzo-balbi.com: could not connect to host
ppembed.com: did not receive HSTS header
pppo.gov: could not connect to host
ppr-truby.ru: could not connect to host
ppsvcs2.com: did not receive HSTS header
ppuu.org: did not receive HSTS header
ppy3.com: did not receive HSTS header
+pr2studio.com: could not connect to host
practicallabs.com: could not connect to host
-practicalprogrammer.tech: could not connect to host
practodev.com: could not connect to host
pratinav.xyz: could not connect to host
prattpokemon.com: could not connect to host
-praxis-research.info: did not receive HSTS header
+praxis-research.info: could not connect to host
+prazeresdavida.com.br: could not connect to host
precedecaritas.com.br: could not connect to host
precisionaeroimaging.com: did not receive HSTS header
prediksisydney.com: could not connect to host
@@ -11963,6 +12206,7 @@ preezzie.com: could not connect to host
prefis.com: did not receive HSTS header
prefontaine.name: could not connect to host
prego-shop.de: could not connect to host
+pregono.com: did not receive HSTS header
preio.cn: could not connect to host
preisser-it.de: did not receive HSTS header
preisser.it: did not receive HSTS header
@@ -11974,14 +12218,18 @@ premioambiente.it: did not receive HSTS header
premiumzweirad.de: max-age too low: 7776000
prepaidgirl.com: could not connect to host
prepandgo-euro.com: could not connect to host
+preposted.com: did not receive HSTS header
preppertactics.com: did not receive HSTS header
preprodfan.gov: could not connect to host
prescriptionrex.com: did not receive HSTS header
+presentesdegrife.com.br: could not connect to host
presidentials2016.com: could not connect to host
press-anime-nenkan.com: did not receive HSTS header
press-presse.ca: did not receive HSTS header
-pressenews.net: did not receive HSTS header
+pressakey.de: did not receive HSTS header
+pressenews.net: could not connect to host
pressfreedomfoundation.org: did not receive HSTS header
+prestburyscouts.org.uk: did not receive HSTS header
prestigeeventshire.co.uk: could not connect to host
prestonapp.com: could not connect to host
prettygrouse.com: did not receive HSTS header
@@ -11991,7 +12239,6 @@ pretzlaff.info: did not receive HSTS header
preworkout.me: could not connect to host
prgslab.net: could not connect to host
priceholic.com: could not connect to host
-pridetechdesign.com: did not receive HSTS header
pridoc.se: did not receive HSTS header
prifo.se: could not connect to host
prijsvergelijken.ml: could not connect to host
@@ -11999,9 +12246,10 @@ prilock.com: did not receive HSTS header
primecaplending.com: could not connect to host
primordialsnooze.com: could not connect to host
primotiles.co.uk: did not receive HSTS header
+primotilesandbathrooms.co.uk: max-age too low: 2592000
prinbanat.ngo: did not receive HSTS header
+princeagency.com: could not connect to host
princeofwhales.com: did not receive HSTS header
-princesparktouch.com: did not receive HSTS header
princessbackpack.de: could not connect to host
princessmargaretlotto.com: did not receive HSTS header
prinesdoma.at: did not receive HSTS header
@@ -12010,7 +12258,6 @@ printersonline.be: did not receive HSTS header
printery.be: could not connect to host
printexpress.cloud: could not connect to host
printfn.com: did not receive HSTS header
-printler.com: did not receive HSTS header
priolkar.com: could not connect to host
prism-communication.com: could not connect to host
pristineevents.co.uk: did not receive HSTS header
@@ -12023,17 +12270,20 @@ privategiant.com: could not connect to host
privatstunden.express: could not connect to host
privcloud.org: could not connect to host
privilegevisa.fr: could not connect to host
+privu.me: could not connect to host
privytime.com: could not connect to host
-prmte.com: max-age too low: 2592000
+prmte.com: did not receive HSTS header
prnt.li: did not receive HSTS header
pro-image.de: did not receive HSTS header
pro-zone.com: could not connect to host
proact-it.co.uk: could not connect to host
proactive.run: could not connect to host
+procens.us: could not connect to host
procode.gq: could not connect to host
prodpad.com: did not receive HSTS header
produccioneskm.cl: did not receive HSTS header
productgap.com: could not connect to host
+productived.net: did not receive HSTS header
producto8.com: did not receive HSTS header
profi-durchgangsmelder.de: did not receive HSTS header
profinetz.de: could not connect to host
@@ -12058,6 +12308,7 @@ project-splash.com: max-age too low: 0
project-stats.com: could not connect to host
projectascension.io: could not connect to host
projectasterk.com: could not connect to host
+projectcastle.tech: did not receive HSTS header
projectdp.net: could not connect to host
projectherogames.xyz: could not connect to host
projectl1b1t1na.tk: could not connect to host
@@ -12107,7 +12358,7 @@ proxbox.net: did not receive HSTS header
proxi.cf: could not connect to host
proximato.com: could not connect to host
proxybay.al: could not connect to host
-proxybay.club: could not connect to host
+proxybay.club: max-age too low: 0
proxybay.info: did not receive HSTS header
proxybay.top: could not connect to host
proxydesk.eu: could not connect to host
@@ -12139,8 +12390,6 @@ pstudio.me: max-age too low: 0
psw.academy: could not connect to host
psw.consulting: could not connect to host
psychiatrie-betreuung.ch: did not receive HSTS header
-psylab.re: could not connect to host
-psylab.vip: could not connect to host
psynapse.net.au: could not connect to host
ptn.moscow: could not connect to host
ptonet.com: could not connect to host
@@ -12214,15 +12463,16 @@ qazcloud.com: could not connect to host
qbik.de: did not receive HSTS header
qbin.io: did not receive HSTS header
qbnt.ca: could not connect to host
-qccqld.org.au: could not connect to host
+qccqld.org.au: did not receive HSTS header
qe2homelottery.com: did not receive HSTS header
qensio.com: did not receive HSTS header
qforum.org: could not connect to host
+qgblog.org: did not receive HSTS header
qi0.de: did not receive HSTS header
qiannews.net: could not connect to host
qifu.org.cn: could not connect to host
qimiao.io: did not receive HSTS header
-qingxuan.info: could not connect to host
+qingxuan.info: did not receive HSTS header
qinxi1992.com: could not connect to host
qionglu.pw: could not connect to host
qipp.com: did not receive HSTS header
@@ -12238,6 +12488,8 @@ qoqo.us: did not receive HSTS header
qorm.co.uk: could not connect to host
qqj.net: could not connect to host
qqq.gg: could not connect to host
+qqrss.com: could not connect to host
+qqvips.com: could not connect to host
qqvrsmart.cn: could not connect to host
qrara.net: did not receive HSTS header
qredo.com: did not receive HSTS header
@@ -12245,6 +12497,8 @@ qrforex.com: did not receive HSTS header
qrlending.com: could not connect to host
qrlfinancial.com: could not connect to host
qswoo.org: could not connect to host
+qto.org: could not connect to host
+quaedam.org: could not connect to host
quail.solutions: could not connect to host
quakerlens.com: did not receive HSTS header
quality1.com.br: did not receive HSTS header
@@ -12268,6 +12522,7 @@ queenshaflo.com: could not connect to host
quelmandataire.fr: did not receive HSTS header
queroreceitasoberana.com.br: did not receive HSTS header
queryplayground.com: could not connect to host
+questionable.host: could not connect to host
questions-admin.com: did not receive HSTS header
questionyu.com: did not receive HSTS header
questsandrewards.com: could not connect to host
@@ -12275,12 +12530,12 @@ quic.fr: did not receive HSTS header
quickandroid.tools: could not connect to host
quickpayservice.com: could not connect to host
quietus.gq: could not connect to host
+quikrmovies.to: could not connect to host
quikstorhawaii.com: max-age too low: 300
quimsertek.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
quizionic.com: could not connect to host
quizl.io: did not receive HSTS header
quizmemes.org: could not connect to host
-quizstore.net: could not connect to host
quotehex.com: could not connect to host
quotemaster.co.za: could not connect to host
quranserver.net: could not connect to host
@@ -12296,8 +12551,9 @@ r-cut.fr: could not connect to host
r-rickroll-u.pw: could not connect to host
r10n.com: did not receive HSTS header
r15.me: did not receive HSTS header
-r18.moe: did not receive HSTS header
+r18.moe: could not connect to host
raajheshkannaa.com: could not connect to host
+rabbit.wales: could not connect to host
rabbitvcactus.eu: did not receive HSTS header
rabota-x.ru: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
racasdecachorro.org: could not connect to host
@@ -12306,6 +12562,7 @@ racktear.com: did not receive HSTS header
raconteur.net: did not receive HSTS header
rad-route.de: could not connect to host
raddavarden.nu: could not connect to host
+radical.org: could not connect to host
radicaleducation.net: could not connect to host
radioheteroglossia.com: did not receive HSTS header
radtke.bayern: did not receive HSTS header
@@ -12316,9 +12573,6 @@ rahadiana.com: could not connect to host
rahamasin.eu: could not connect to host
rai-co.net: did not receive HSTS header
raiblockscommunity.net: could not connect to host
-raidensnakesden.co.uk: could not connect to host
-raidensnakesden.com: could not connect to host
-raidensnakesden.net: could not connect to host
raidstone.com: could not connect to host
raidstone.rocks: could not connect to host
raiffeisen-kosovo.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
@@ -12326,7 +12580,6 @@ railgun.com.cn: could not connect to host
railyardurgentcare.com: did not receive HSTS header
rainbin.com: could not connect to host
rainbowbarracuda.com: could not connect to host
-rainel.at: could not connect to host
raisecorp.com: could not connect to host
raitza.de: could not connect to host
rajkapoordas.com: could not connect to host
@@ -12341,7 +12594,6 @@ ramonj.nl: could not connect to host
randomcage.com: did not receive HSTS header
randomcloud.net: could not connect to host
randomhero.cloud: could not connect to host
-randomquotesapp.com: could not connect to host
randomwinpicker.de: could not connect to host
randy.pw: could not connect to host
ranegroup.hosting: could not connect to host
@@ -12372,19 +12624,20 @@ ratuseks.us: could not connect to host
rauchenwald.net: could not connect to host
raucris.ro: could not connect to host
raulfraile.net: could not connect to host
+rauros.net: could not connect to host
ravage.fm: did not receive HSTS header
raven.lipetsk.ru: could not connect to host
ravengergaming.ga: could not connect to host
ravengergaming.net: could not connect to host
ravenx.me: could not connect to host
-ravkr.duckdns.org: did not receive HSTS header
+raviparekh.co.uk: could not connect to host
+ravkr.duckdns.org: could not connect to host
ravse.dk: could not connect to host
raw-diets.com: did not receive HSTS header
rawet.se: could not connect to host
rawoil.com: could not connect to host
rawr.sexy: could not connect to host
rawstorieslondon.com: could not connect to host
-rayanitco.com: did not receive HSTS header
raycarruthersphotography.co.uk: could not connect to host
raydan.space: could not connect to host
raydobe.me: could not connect to host
@@ -12401,12 +12654,13 @@ rc4.io: could not connect to host
rc7.ch: could not connect to host
rcafox.com: could not connect to host
rcoliveira.com: could not connect to host
+rcorporation.be: did not receive HSTS header
rcpcbd.com: could not connect to host
rcvd.io: did not receive HSTS header
rcx.io: could not connect to host
rdfz.tech: could not connect to host
-rdh.asia: did not receive HSTS header
rdns.im: did not receive HSTS header
+rdplumbingsolutions.com.au: did not receive HSTS header
rdyrda.fr: could not connect to host
re-customer.net: could not connect to host
re-wilding.com: could not connect to host
@@ -12427,22 +12681,22 @@ real-bits.com: could not connect to host
real-compare.com: did not receive HSTS header
realcli.com: could not connect to host
realfamilyincest.com: could not connect to host
+realgarant-shop.de: did not receive HSTS header
realhost.name: could not connect to host
-realloc.me: could not connect to host
really.io: could not connect to host
reallyreally.io: did not receive HSTS header
realmic.net: could not connect to host
realmofespionage.com: could not connect to host
realnewhomes.com: could not connect to host
-realoteam.ddns.net: could not connect to host
realraghavgupta.com: could not connect to host
+realvnc.help: did not receive HSTS header
realwoo.com: did not receive HSTS header
reapdrive.net: did not receive HSTS header
reaper.rip: could not connect to host
reardenporn.com: could not connect to host
rebekaesgabor.online: could not connect to host
rebootmc.com: could not connect to host
-receitas-de-bolos.pt: did not receive HSTS header
+receitas-de-bolos.pt: could not connect to host
receitasdebacalhau.pt: could not connect to host
recetasfacilesdehacer.com: did not receive HSTS header
rechat.com: did not receive HSTS header
@@ -12453,6 +12707,7 @@ recompiled.org: max-age too low: 7776000
recruitsecuritytraining.co.uk: could not connect to host
recruitsecuritytraining.com: could not connect to host
rectoraudiparts.com: could not connect to host
+redable.hosting: could not connect to host
redair.es: could not connect to host
redar.xyz: could not connect to host
redburn.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
@@ -12467,8 +12722,7 @@ redirectman.com: could not connect to host
redizoo.com: did not receive HSTS header
redlatam.org: did not receive HSTS header
redmbk.com: did not receive HSTS header
-redmind.se: could not connect to host
-redneck-gaming.de: did not receive HSTS header
+redneck-gaming.de: could not connect to host
redner.cc: did not receive HSTS header
rednertv.de: did not receive HSTS header
rednoseday.com: did not receive HSTS header
@@ -12477,17 +12731,16 @@ redperegrine.com: did not receive HSTS header
redporno.cz: could not connect to host
redports.org: could not connect to host
redra.ws: did not receive HSTS header
-redsquirrelcampsite.co.uk: could not connect to host
redstarsurf.com: did not receive HSTS header
reducerin.ro: did not receive HSTS header
-redy.host: did not receive HSTS header
-reedyforkfarm.com: did not receive HSTS header
+redy.host: could not connect to host
reeson.at: could not connect to host
reeson.de: could not connect to host
reeson.info: could not connect to host
reeson.org: could not connect to host
+reevoo.com: did not receive HSTS header
+reevu.net: did not receive HSTS header
ref1oct.nl: could not connect to host
-refactor.zone: did not receive HSTS header
referenten.org: did not receive HSTS header
refitplanner.com: did not receive HSTS header
reflecton.io: could not connect to host
@@ -12510,14 +12763,16 @@ registertovoteflorida.gov: did not receive HSTS header
regoul.com: did not receive HSTS header
regsec.com: could not connect to host
rehabthailand.nl: could not connect to host
-rei.ki: did not receive HSTS header
+reher.pro: could not connect to host
reic.me: could not connect to host
reidascuecas.com.br: could not connect to host
reignsphere.net: could not connect to host
reikiqueen.uk: could not connect to host
+rein.kr: could not connect to host
reinaertvandecruys.com: could not connect to host
reinaertvandecruys.me: could not connect to host
reineberthe.ch: could not connect to host
+reinoldus.ddns.net: could not connect to host
reismil.ch: could not connect to host
reisyukaku.org: did not receive HSTS header
reithguard-it.de: did not receive HSTS header
@@ -12528,6 +12783,7 @@ relatic.net: could not connect to host
relayawards.com: could not connect to host
reldoc.com.mx: did not receive HSTS header
reliable-mail.de: could not connect to host
+reliant3sixty.com: could not connect to host
religiousforums.com: did not receive HSTS header
relisten.nl: did not receive HSTS header
relsak.cz: could not connect to host
@@ -12538,13 +12794,14 @@ remedica.fr: could not connect to host
remedium.de: could not connect to host
remedyrehab.com: did not receive HSTS header
rememberthis.co.za: could not connect to host
+remitatm.com: did not receive HSTS header
remodela.com.ve: could not connect to host
remodelwithlegacy.com: did not receive HSTS header
remonttitekniikka.fi: could not connect to host
remotestance.com: did not receive HSTS header
-remrol.ru: could not connect to host
rencaijia.com: did not receive HSTS header
rencontres-erotiques.com: did not receive HSTS header
+reneclemens.nl: could not connect to host
rengarenkblog.com: could not connect to host
renideo.fr: could not connect to host
renkhosting.com: could not connect to host
@@ -12559,7 +12816,6 @@ rentcarassist.com: could not connect to host
renteater.com: could not connect to host
rentex.com: did not receive HSTS header
renxinge.cn: did not receive HSTS header
-reparo.pe: did not receive HSTS header
repex.co.il: could not connect to host
replaceits.me: could not connect to host
replacemychina.com: could not connect to host
@@ -12577,10 +12833,11 @@ reporturl.com: did not receive HSTS header
reporturl.io: did not receive HSTS header
reposaarenkuva.fi: could not connect to host
reprolife.co.uk: did not receive HSTS header
-reptilauksjonen.no: did not receive HSTS header
+reptilauksjonen.no: could not connect to host
republicmo.gov: could not connect to host
repustate.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
reqognize.com: could not connect to host
+request-trent.com: could not connect to host
res-rheingau.de: did not receive HSTS header
res42.com: could not connect to host
research.md: could not connect to host
@@ -12591,7 +12848,6 @@ residentsinsurance.co.uk: did not receive HSTS header
resl20.servehttp.com: could not connect to host
resoundpro.ca: could not connect to host
respice.xyz: could not connect to host
-ressl.ch: could not connect to host
ressos.com: did not receive HSTS header
restaurace-klokocka.cz: did not receive HSTS header
restaurant-mangal.ch: could not connect to host
@@ -12601,10 +12857,10 @@ restaurantmangal.ch: could not connect to host
restchart.com: did not receive HSTS header
restioson.me: could not connect to host
restopro.nyc: did not receive HSTS header
-restoreresearchstudy.com: did not receive HSTS header
+restoreresearchstudy.com: could not connect to host
resultsdate.news: could not connect to host
reth.ch: could not connect to host
-reto.io: could not connect to host
+retireyourpassword.org: did not receive HSTS header
retogroup.com: could not connect to host
retropage.co: did not receive HSTS header
retrowave.eu: could not connect to host
@@ -12620,6 +12876,7 @@ reverie.pw: could not connect to host
review.info: did not receive HSTS header
reviewbestseller.com: did not receive HSTS header
reviewjust.com: did not receive HSTS header
+reviewspedia.org: did not receive HSTS header
revistapequenosolhares.com.br: could not connect to host
revolutionhive.com: could not connect to host
revtut.net: could not connect to host
@@ -12628,12 +12885,12 @@ rex.st: could not connect to host
rexhockingkelpies.com.au: did not receive HSTS header
reykjavik.guide: could not connect to host
rezun.cloud: did not receive HSTS header
-rf.tn: could not connect to host
-rfxanalyst.com: could not connect to host
+rf.tn: did not receive HSTS header
rgservers.com: did not receive HSTS header
rhapsodhy.hu: could not connect to host
rhdigital.pro: could not connect to host
rhering.de: could not connect to host
+rhetthenckel.com: max-age too low: 0
rhiskiapril.com: did not receive HSTS header
rhodes.ml: could not connect to host
rhodesianridgeback.com.br: could not connect to host
@@ -12668,16 +12925,17 @@ right-to-love.name: did not receive HSTS header
right2.org: could not connect to host
righteousendeavour.com: could not connect to host
righttoknow.ie: did not receive HSTS header
+rigolitch.fr: could not connect to host
rijndael.xyz: could not connect to host
rijnmondeg.nl: did not receive HSTS header
rika.me: could not connect to host
rincon-nsn.gov: could not connect to host
ring0.xyz: did not receive HSTS header
ringh.am: could not connect to host
-rinj.se: could not connect to host
+rinj.se: did not receive HSTS header
rionewyork.com.br: could not connect to host
-rioshop.com.br: could not connect to host
ripa.io: did not receive HSTS header
+ripple.com: did not receive HSTS header
rippleunion.com: could not connect to host
risi-china.com: could not connect to host
risingsun.red: could not connect to host
@@ -12692,6 +12950,7 @@ rivermendhealthcenters.com: did not receive HSTS header
riversideauto.net: did not receive HSTS header
riverstyxgame.com: could not connect to host
rivlo.com: could not connect to host
+rixzz.ovh: could not connect to host
rj.gg: could not connect to host
rjnutrition.consulting: did not receive HSTS header
rk6.cz: could not connect to host
@@ -12704,16 +12963,19 @@ rme.li: did not receive HSTS header
rmit.me: could not connect to host
rmk.si: could not connect to host
rmsides.com: did not receive HSTS header
+rnbjunk.com: max-age too low: 0
roadfeast.com: could not connect to host
roan24.pl: did not receive HSTS header
rob.uk.com: could not connect to host
robertabittle.com: could not connect to host
-roberto-webhosting.nl: did not receive HSTS header
+robertattfield.com: did not receive HSTS header
+robertayamashita.com: could not connect to host
+robertayamashita.com.br: could not connect to host
+roberto-webhosting.nl: could not connect to host
robertocasares.no-ip.biz: could not connect to host
robi-net.it: could not connect to host
robigalia.org: did not receive HSTS header
robinvdmarkt.nl: could not connect to host
-robjager-fotografie.nl: could not connect to host
robomonkey.org: could not connect to host
robteix.com: did not receive HSTS header
robtex.com: did not receive HSTS header
@@ -12721,6 +12983,7 @@ robtex.net: did not receive HSTS header
robtex.org: did not receive HSTS header
robust.ga: could not connect to host
rochman.id: did not receive HSTS header
+rocket-wars.de: did not receive HSTS header
rocketnet.ml: could not connect to host
rockeyscrivo.com: did not receive HSTS header
rocksberg.net: could not connect to host
@@ -12729,7 +12992,6 @@ rodarion.pl: could not connect to host
rodehutskors.net: could not connect to host
rodney.id.au: did not receive HSTS header
rodneybrooksjr.com: did not receive HSTS header
-rodomonte.org: did not receive HSTS header
rodosto.com: did not receive HSTS header
roelbazuin.com: did not receive HSTS header
roelf.org: did not receive HSTS header
@@ -12741,17 +13003,18 @@ rogerdat.ovh: could not connect to host
roguefortgame.com: could not connect to host
rohanbassett.com: could not connect to host
rohankrishnadev.in: could not connect to host
+rohlik.cz: did not receive HSTS header
+roiscroll.com: did not receive HSTS header
roketix.co.uk: did not receive HSTS header
rolandkolodziej.com: max-age too low: 86400
-rolandreed.cn: did not receive HSTS header
rolandslate.com: did not receive HSTS header
rolemaster.net: could not connect to host
rolroer.co.za: could not connect to host
romaimperator.com: did not receive HSTS header
romainmuller.xyz: did not receive HSTS header
romans-place.me.uk: could not connect to host
+romantic-quotes.co.uk: could not connect to host
romanticschemermovie.com: could not connect to host
-romar-bos.nl: did not receive HSTS header
romeoferraris.com: did not receive HSTS header
romleg.cf: could not connect to host
roms.fun: could not connect to host
@@ -12760,13 +13023,14 @@ ron2k.za.net: could not connect to host
rondoniatec.com.br: did not receive HSTS header
rondreis-planner.nl: could not connect to host
ronghexx.com: could not connect to host
-ronvandordt.info: did not receive HSTS header
+ronvandordt.info: could not connect to host
ronwo.de: max-age too low: 1
-roo.ie: could not connect to host
+roo.ie: did not receive HSTS header
rool.me: did not receive HSTS header
roolevoi.ru: could not connect to host
room-checkin24.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
roosteroriginals.com: could not connect to host
+roosterpgplus.nl: did not receive HSTS header
rootbsd.at: could not connect to host
rootforum.org: did not receive HSTS header
rootrelativity.com: could not connect to host
@@ -12774,6 +13038,7 @@ rootservice.org: did not receive HSTS header
rootwpn.com: could not connect to host
rop.io: did not receive HSTS header
roquecenter.org: did not receive HSTS header
+roromendut.online: could not connect to host
rorymcdaniel.com: did not receive HSTS header
rosewoodranch.com: did not receive HSTS header
rosi-royal.com: could not connect to host
@@ -12783,6 +13048,7 @@ rossen.be: did not receive HSTS header
rossiworld.com: did not receive HSTS header
rosslug.org.uk: could not connect to host
rotex1840.de: did not receive HSTS header
+rothkranz.net: could not connect to host
rotozen.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
rotter-dam.nl: did not receive HSTS header
rotterdamjazz.info: could not connect to host
@@ -12798,6 +13064,7 @@ royal876.com: could not connect to host
royalhop.co: could not connect to host
royalpub.net: did not receive HSTS header
royalsignaturecruise.com: could not connect to host
+royaltube.net: could not connect to host
roychan.org: max-age too low: 0
royzez.com: could not connect to host
rozalisbengal.ro: could not connect to host
@@ -12805,6 +13072,7 @@ rozalynne-dawn.ga: could not connect to host
rozeapp.nl: could not connect to host
rpasafrica.com: could not connect to host
rr.in.th: could not connect to host
+rritv.com: could not connect to host
rrke.cc: did not receive HSTS header
rrom.me: did not receive HSTS header
rs-devdemo.host: could not connect to host
@@ -12832,6 +13100,8 @@ rubi-ka.net: max-age too low: 0
ruborr.se: did not receive HSTS header
rubysecurity.org: did not receive HSTS header
rubyshop.nl: could not connect to host
+rucnerobene.eu: could not connect to host
+rudelune.fr: could not connect to host
rudeotter.com: did not receive HSTS header
rue-de-la-vieille.fr: max-age too low: 0
ruflay.ru: could not connect to host
@@ -12844,7 +13114,6 @@ ruitershoponline.nl: did not receive HSTS header
ruja.dk: did not receive HSTS header
rukhaiyar.com: could not connect to host
rullzer.com: did not receive HSTS header
-rumlager.de: max-age too low: 600000
rummel-platz.de: could not connect to host
rumoterra.com.br: could not connect to host
run-forrest.run: could not connect to host
@@ -12867,7 +13136,6 @@ rvg.zone: could not connect to host
rvolve.net: could not connect to host
rw-solutions.tech: could not connect to host
rwanderlust.com: did not receive HSTS header
-rxgroup.io: could not connect to host
rxprep.com: did not receive HSTS header
rxt.social: could not connect to host
rxv.cc: could not connect to host
@@ -12876,6 +13144,7 @@ rybox.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR
ryejuice.sytes.net: could not connect to host
rylin.net: did not receive HSTS header
rylore.com: could not connect to host
+ryois.me: max-age too low: 0
ryssland.guide: could not connect to host
rzegroup.com: did not receive HSTS header
s-d-v.ch: could not connect to host
@@ -12883,18 +13152,17 @@ s-on.li: could not connect to host
s-rickroll-p.pw: could not connect to host
s.how: could not connect to host
s0923.com: could not connect to host
-s0laris.co.uk: could not connect to host
s1mplescripts.de: could not connect to host
s1ris.org: did not receive HSTS header
s3cases.com: did not receive HSTS header
s3n.se: could not connect to host
saabwa.org: could not connect to host
-saba-piserver.info: could not connect to host
sabatek.pl: did not receive HSTS header
sac-shop.com: did not receive HSTS header
sachk.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
saco-ceso.com: could not connect to host
sadiejanehair.com: could not connect to host
+sadsu.com: did not receive HSTS header
safari-afrique.com: did not receive HSTS header
safedevice.net: did not receive HSTS header
safelist.eu: did not receive HSTS header
@@ -12923,6 +13191,7 @@ sakib.ninja: did not receive HSTS header
sakurabuff.com: could not connect to host
salaervergleich.com: did not receive HSTS header
sale.sh: could not connect to host
+saleaks.org: could not connect to host
salearnership.co.za: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
saleslift.pl: did not receive HSTS header
salishseawhalewatching.ca: could not connect to host
@@ -12930,22 +13199,23 @@ sallysubs.com: could not connect to host
salmo23.com.br: could not connect to host
salon-claudia.ch: could not connect to host
salonestella.it: could not connect to host
-salrosadohimalaia.com: did not receive HSTS header
salserocafe.com: did not receive HSTS header
salserototal.com: could not connect to host
saltedskies.com: could not connect to host
saltra.online: could not connect to host
+saltro.nl: did not receive HSTS header
salvaalocombia.com: could not connect to host
salverainha.org: could not connect to host
salzamt.tk: could not connect to host
samanthahumphreysstudio.com: did not receive HSTS header
samaritan.tech: could not connect to host
samaritansnet.org: did not receive HSTS header
-samenwerkingsportaal.tk: did not receive HSTS header
sametovymesic.cz: could not connect to host
+samin.tk: did not receive HSTS header
saml2.com: could not connect to host
samlamac.com: could not connect to host
samm.com.au: did not receive HSTS header
+sammenlignakasser.dk: did not receive HSTS header
sammyjohnson.com: could not connect to host
samp.im: could not connect to host
sampcup.com: could not connect to host
@@ -12955,18 +13225,17 @@ samsen.club: could not connect to host
samsonova.de: could not connect to host
samsungxoa.com: could not connect to host
samvanderkris.com: could not connect to host
-samvanderkris.xyz: did not receive HSTS header
sanael.net: could not connect to host
sanandreasstories.com: did not receive HSTS header
sanasalud.org: could not connect to host
sanatfilan.com: did not receive HSTS header
sanatrans.com: could not connect to host
-sand-islets.de: did not receive HSTS header
sanderknape.com: did not receive HSTS header
sandviks.com: did not receive HSTS header
sanguoxiu.com: could not connect to host
sanhei.ch: did not receive HSTS header
sanik.my: could not connect to host
+sannesfotklinikk.no: did not receive HSTS header
sanradon.by: did not receive HSTS header
sansage.com.br: could not connect to host
sansdev.com: could not connect to host
@@ -12979,11 +13248,12 @@ santmark.fi: could not connect to host
santmark.info: could not connect to host
santmark.net: could not connect to host
santmark.org: could not connect to host
-santodomingocg.org: could not connect to host
+santodomingocg.org: did not receive HSTS header
santorinibbs.com: did not receive HSTS header
santouri.be: could not connect to host
saotn.org: did not receive HSTS header
sapereaude.com.pl: did not receive HSTS header
+sapphireblue.me: could not connect to host
sapporobeer.com: could not connect to host
sapuncheta.com: could not connect to host
saq.com: could not connect to host
@@ -13001,7 +13271,6 @@ sarkarikhoj.com: could not connect to host
sarkarischeme.in: could not connect to host
sarkisozleri.us: could not connect to host
sarndipity.com: could not connect to host
-saro.me: did not receive HSTS header
saruwebshop.co.za: could not connect to host
sat.rent: did not receive HSTS header
sat7a-riyadh.com: did not receive HSTS header
@@ -13017,11 +13286,9 @@ satsang-uwe.de: did not receive HSTS header
satsukii.moe: did not receive HSTS header
sattamatkadpboss.mobi: could not connect to host
saturne.tk: could not connect to host
-saturngames.co.uk: could not connect to host
saucyfox.net: did not receive HSTS header
saudeeconforto.com.br: did not receive HSTS header
sauenytt.no: could not connect to host
-sauerbrey.eu: did not receive HSTS header
saumon.io: did not receive HSTS header
saumon.xyz: could not connect to host
saunasandstuff.ca: did not receive HSTS header
@@ -13048,6 +13315,10 @@ sbobetfun.com: did not receive HSTS header
sbox-archives.com: could not connect to host
sby.de: did not receive HSTS header
sc4le.com: could not connect to host
+scaffoldhireeastrand.co.za: did not receive HSTS header
+scaffoldhirefourways.co.za: did not receive HSTS header
+scaffoldhirerandburg.co.za: did not receive HSTS header
+scaffoldhiresandton.co.za: did not receive HSTS header
scala.click: did not receive HSTS header
scannabi.com: could not connect to host
sch44r0n.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
@@ -13059,13 +13330,13 @@ schau-rein.co.at: did not receive HSTS header
schauer.so: could not connect to host
schd.io: did not receive HSTS header
schermreparatierotterdam.nl: did not receive HSTS header
+schippendale.de: could not connect to host
+schippers-it.nl: did not receive HSTS header
schlabbi.com: did not receive HSTS header
-schlagenhauf.info: could not connect to host
-schlagma.de: could not connect to host
+schmelzle.io: could not connect to host
schmidttulskie.de: could not connect to host
schmitt.ovh: could not connect to host
schmitt.ws: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-schnapke.name: could not connect to host
schneider-electric.tg: could not connect to host
schnell-abnehmen.tips: did not receive HSTS header
schnell-gold.com: did not receive HSTS header
@@ -13139,6 +13410,7 @@ sdhmanagementgroup.com: could not connect to host
sdia.ru: could not connect to host
sdl-corporatesite-staging.azurewebsites.net: did not receive HSTS header
sdmoscow.ru: could not connect to host
+sdocast.com: could not connect to host
sdrobs.com: did not receive HSTS header
sdsl-speedtest.de: could not connect to host
se7ensins.com: did not receive HSTS header
@@ -13148,20 +13420,21 @@ seanationals.org: did not receive HSTS header
seanchaidh.org: could not connect to host
seans.cc: did not receive HSTS header
seanstrout.com: did not receive HSTS header
-seansyardservice.com: did not receive HSTS header
+seansyardservice.com: could not connect to host
searchgov.gov.il: did not receive HSTS header
searchshops.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
searx.pw: could not connect to host
sebastian-bair.de: could not connect to host
+sebastian-lutsch.de: could not connect to host
sebastian-schmidt.me: did not receive HSTS header
sebastianhampl.de: could not connect to host
sebastianpedersen.com: did not receive HSTS header
sebastiensenechal.com: did not receive HSTS header
sebi.cf: could not connect to host
sebster.com: did not receive HSTS header
-sec44.com: could not connect to host
sec44.net: could not connect to host
sec44.org: could not connect to host
+sec4share.me: did not receive HSTS header
secandtech.com: could not connect to host
secanje.nl: did not receive HSTS header
seccomp.ru: did not receive HSTS header
@@ -13218,6 +13491,7 @@ securitysoapbox.com: could not connect to host
securitytalk.pl: could not connect to host
securitytestfan.gov: could not connect to host
securitywatch.co.nz: did not receive HSTS header
+securitywithoutborders.org: could not connect to host
securiviera.ch: did not receive HSTS header
securon.io: could not connect to host
securoswiss.ch: could not connect to host
@@ -13233,6 +13507,7 @@ seehimnaked.com: could not connect to host
seehimnude.com: could not connect to host
seehisnudes.com: could not connect to host
seele.ca: could not connect to host
+seemeasaperson.com: did not receive HSTS header
seen.life: could not connect to host
sehenderson.com: did not receive HSTS header
seida.at: could not connect to host
@@ -13245,7 +13520,6 @@ selectary.com: could not connect to host
selectcertifiedautos.com: did not receive HSTS header
selectruckscalltrackingreports.com: could not connect to host
seleondar.ru: did not receive HSTS header
-selfdefenserx.com: did not receive HSTS header
selfhosters.com: could not connect to host
selfie-france.fr: could not connect to host
selfserverx.com: could not connect to host
@@ -13258,7 +13532,6 @@ semantheme.fr: did not receive HSTS header
semen3325.xyz: could not connect to host
semenkovich.com: did not receive HSTS header
sementes.gratis: could not connect to host
-semjonov.de: could not connect to host
semps-servers.de: could not connect to host
sendash.com: did not receive HSTS header
sendmeback.de: did not receive HSTS header
@@ -13281,21 +13554,20 @@ seomen.biz: could not connect to host
seomobo.com: could not connect to host
seosanantonioinc.com: did not receive HSTS header
seoscribe.net: could not connect to host
-seosec.xyz: did not receive HSTS header
+seosec.xyz: could not connect to host
seotronix.net: did not receive HSTS header
seowarp.net: did not receive HSTS header
sep23.ru: could not connect to host
sepakbola.win: could not connect to host
sephr.com: did not receive HSTS header
sepie.gob.es: did not receive HSTS header
-seq.tf: did not receive HSTS header
+seq.tf: could not connect to host
sequatchiecounty-tn.gov: could not connect to host
serafin.tech: could not connect to host
serathius.ovh: could not connect to host
serbien.guide: could not connect to host
serenitycreams.com: did not receive HSTS header
serfdom.io: did not receive HSTS header
-sergeyreznikov.com: could not connect to host
serized.pw: could not connect to host
serkaneles.com: did not receive HSTS header
servecrypt.com: could not connect to host
@@ -13308,7 +13580,6 @@ servercode.ca: did not receive HSTS header
serverdensity.io: did not receive HSTS header
servergno.me: did not receive HSTS header
serverlauget.no: could not connect to host
-serverlog.net: could not connect to host
servermonkey.nl: could not connect to host
servfefe.com: could not connect to host
service.gov.uk: could not connect to host
@@ -13326,6 +13597,7 @@ setkit.net: could not connect to host
setuid.de: could not connect to host
setuid.io: did not receive HSTS header
sevenhearts.online: could not connect to host
+sevsey.ru: could not connect to host
sex-education.com: could not connect to host
sexgarage.de: could not connect to host
sexocomgravidas.com: could not connect to host
@@ -13345,6 +13617,7 @@ sfhobbies.com.br: could not connect to host
sfsltd.com: did not receive HSTS header
sgovaard.nl: did not receive HSTS header
sgthotshot.com: could not connect to host
+sh-network.de: could not connect to host
sh11.pp.ua: did not receive HSTS header
sh4y.com: could not connect to host
sha2017.org: did not receive HSTS header
@@ -13375,7 +13648,6 @@ shagi29.ru: did not receive HSTS header
shahbeat.com: could not connect to host
shaitan.eu: could not connect to host
shakebox.de: could not connect to host
-shaken-kyoto.jp: could not connect to host
shamka.ru: could not connect to host
shandonsg.co.uk: could not connect to host
shanekoster.net: did not receive HSTS header
@@ -13394,10 +13666,14 @@ sharepic.xyz: could not connect to host
sharesplitter.com: could not connect to host
shareworx.net: could not connect to host
sharezen.de: could not connect to host
+shariahlawcenter.com: could not connect to host
+shariahlawcenter.org: could not connect to host
+sharialawcenter.com: could not connect to host
+sharialawcenter.org: could not connect to host
sharingcode.com: did not receive HSTS header
sharpe-practice.co.uk: could not connect to host
-sharvey.ca: could not connect to host
-shatorin.com: could not connect to host
+shasso.com: did not receive HSTS header
+shatorin.com: did not receive HSTS header
shauncrowley.co.uk: could not connect to host
shaunwheelhou.se: could not connect to host
shavingks.com: could not connect to host
@@ -13411,14 +13687,13 @@ shemissed.me: did not receive HSTS header
shentengtu.idv.tw: could not connect to host
shep.co.il: did not receive HSTS header
sheratan.web.id: could not connect to host
-shereallyheals.com: could not connect to host
+shereallyheals.com: did not receive HSTS header
shermantank.biz: did not receive HSTS header
shervik.ga: could not connect to host
shethbox.com: could not connect to host
shevronpatriot.ru: did not receive HSTS header
sheying.tm: could not connect to host
shg-pornographieabhaengigkeit.de: did not receive HSTS header
-shh.sh: could not connect to host
shiatsu-institut.ch: could not connect to host
shibainu.com.br: could not connect to host
shibe.club: could not connect to host
@@ -13428,11 +13703,9 @@ shiftnrg.org: did not receive HSTS header
shiftplanning.com: did not receive HSTS header
shiinko.com: could not connect to host
shikinobi.com: did not receive HSTS header
-shimo.im: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
shindorei.fr: could not connect to host
shinebijoux.com.br: could not connect to host
shinju.moe: could not connect to host
-shinko-osaka.jp: could not connect to host
shinobi-fansub.ro: could not connect to host
shiona.xyz: could not connect to host
shipinsight.com: did not receive HSTS header
@@ -13454,6 +13727,7 @@ shooshosha.com: could not connect to host
shootpooloklahoma.com: could not connect to host
shopdopastor.com.br: could not connect to host
shopherbal.co.za: could not connect to host
+shopkini.com: could not connect to host
shopods.com: did not receive HSTS header
shopontarget.com: did not receive HSTS header
shoppeno5.com: did not receive HSTS header
@@ -13464,17 +13738,16 @@ shops.neonisi.com: could not connect to host
shortpath.com: could not connect to host
shortr.li: could not connect to host
shota.party: could not connect to host
+shota.vip: could not connect to host
shotpixonline.com.br: did not receive HSTS header
show-stream.tv: could not connect to host
showdepiscinas.com.br: did not receive HSTS header
shower.im: did not receive HSTS header
showkeeper.tv: did not receive HSTS header
showroom.de: did not receive HSTS header
-showroom113.ru: could not connect to host
shoxmusic.net: did not receive HSTS header
shred.ch: could not connect to host
shredoptics.ch: could not connect to host
-shrug.ml: could not connect to host
shtorku.com: could not connect to host
shu-kin.net: did not receive HSTS header
shukatsu-note.com: could not connect to host
@@ -13494,9 +13767,9 @@ sichere-kartenakzeptanz.de: could not connect to host
siciliadigitale.pro: could not connect to host
sicklepod.com: could not connect to host
sictame-tigf.org: did not receive HSTS header
-sidpod.ru: could not connect to host
siebens.net: could not connect to host
sieh.es: did not receive HSTS header
+sieulog.com: could not connect to host
sifls.com: could not connect to host
sifreuret.com: could not connect to host
signere.com: could not connect to host
@@ -13518,6 +13791,7 @@ silentlink.io: could not connect to host
silentmode.com: max-age too low: 0
silicagelpackets.ca: did not receive HSTS header
silke-hunde.de: did not receive HSTS header
+silkon.net: max-age too low: 604800
silqueskineyeserum.com: could not connect to host
silver-drachenkrieger.de: did not receive HSTS header
silverback.is: did not receive HSTS header
@@ -13529,6 +13803,7 @@ silverpvp.com: could not connect to host
silverstartup.sk: could not connect to host
silviamacallister.com: did not receive HSTS header
silvistefi.com: could not connect to host
+sim-sim.appspot.com: did not receive HSTS header
simbast.com: could not connect to host
simbihaiti.com: max-age too low: 7889238
simbol.id: could not connect to host
@@ -13552,7 +13827,6 @@ simpan.id: could not connect to host
simpeo.fr: did not receive HSTS header
simpeo.org: did not receive HSTS header
simpleai.net: max-age too low: 600
-simplecoding.click: did not receive HSTS header
simplefraud.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
simplelearner.com: could not connect to host
simplepractice.com: did not receive HSTS header
@@ -13579,11 +13853,10 @@ sinneserweiterung.de: could not connect to host
sinon.org: did not receive HSTS header
sinoscandinavia.se: could not connect to host
sinosky.org: did not receive HSTS header
-sinsojb.me: did not receive HSTS header
+sinsojb.me: could not connect to host
sintesysglobal.com: did not receive HSTS header
sinusbot.online: did not receive HSTS header
sion.moe: did not receive HSTS header
-sipc.org: did not receive HSTS header
sipsik.net: did not receive HSTS header
siqi.wang: could not connect to host
sirburton.com: did not receive HSTS header
@@ -13611,10 +13884,12 @@ sittinginoblivion.com: did not receive HSTS header
sizingservers.be: did not receive HSTS header
sizzle.co.uk: did not receive HSTS header
sja-se-training.com: could not connect to host
-sjdaws.com: could not connect to host
sjdtaxi.com: did not receive HSTS header
sjhyl11.com: could not connect to host
sjsc.fr: did not receive HSTS header
+sjzebs.com: did not receive HSTS header
+sjzget.com: did not receive HSTS header
+sjzybs.com: did not receive HSTS header
skandiabanken.no: did not receive HSTS header
skaraborgsassistans.com: did not receive HSTS header
skarox.com: could not connect to host
@@ -13660,6 +13935,7 @@ skylocker.nl: could not connect to host
skyoy.com: did not receive HSTS header
skypeassets.com: could not connect to host
skypoker.com: could not connect to host
+skyris.co: could not connect to host
skyrunners.ch: could not connect to host
skytec.host: did not receive HSTS header
skyvault.io: could not connect to host
@@ -13667,7 +13943,6 @@ skyveo.ml: did not receive HSTS header
skyway.capital: did not receive HSTS header
skyworldserver.ddns.net: could not connect to host
sl1pkn07.wtf: max-age too low: 2592000
-slapen17.nl: could not connect to host
slaps.be: could not connect to host
slash-dev.de: did not receive HSTS header
slash64.co.uk: could not connect to host
@@ -13685,28 +13960,26 @@ sleep10.com: could not connect to host
sleepstar.com.mt: did not receive HSTS header
sliceone.com: could not connect to host
slicketl.com: did not receive HSTS header
+slicss.com: could not connect to host
slightfuture.click: could not connect to host
slightfuture.com: did not receive HSTS header
slimmerbouwen.be: did not receive HSTS header
slingo.com: did not receive HSTS header
slix.io: could not connect to host
sln.cloud: could not connect to host
-slo-net.net: could not connect to host
slope.haus: could not connect to host
+slotboss.co.uk: did not receive HSTS header
slovakiana.sk: did not receive HSTS header
slovenskycestovatel.sk: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
slovoice.org: could not connect to host
slowfood.es: did not receive HSTS header
slowsociety.org: could not connect to host
slse.ca: max-age too low: 0
-sluimann.de: could not connect to host
sluplift.com: did not receive HSTS header
slycurity.de: could not connect to host
slytech.ch: could not connect to host
smallcdn.rocks: could not connect to host
smallchat.nl: could not connect to host
-smalldata.tech: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-smallpath.me: could not connect to host
smallplanet.ch: did not receive HSTS header
smallshopit.com: did not receive HSTS header
smart-mirror.de: did not receive HSTS header
@@ -13720,6 +13993,7 @@ smarthomedna.com: did not receive HSTS header
smartietop.com: could not connect to host
smartit.pro: did not receive HSTS header
smartlend.se: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+smartmeal.ru: did not receive HSTS header
smartofficesandsmarthomes.com: did not receive HSTS header
smartofficeusa.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
smartphone.continental.com: could not connect to host
@@ -13731,13 +14005,12 @@ smdev.fr: could not connect to host
smet.us: could not connect to host
smexpt.com: did not receive HSTS header
smi-a.me: could not connect to host
-smiatek.name: could not connect to host
smileawei.com: could not connect to host
smimea.com: could not connect to host
smirkingwhorefromhighgarden.pro: could not connect to host
smith.is: did not receive HSTS header
smittix.co.uk: did not receive HSTS header
-smkn1lengkong.sch.id: could not connect to host
+smkn1lengkong.sch.id: did not receive HSTS header
smksi2.com: could not connect to host
smksultanismail2.com: could not connect to host
sml.lc: could not connect to host
@@ -13752,19 +14025,18 @@ smsben.cn: did not receive HSTS header
smsben.com: did not receive HSTS header
smspodmena.ru: could not connect to host
smtp.bz: did not receive HSTS header
+smtpdev.com: could not connect to host
smuhelper.cn: could not connect to host
smusg.com: could not connect to host
snafarms.com: did not receive HSTS header
snailing.org: could not connect to host
-snake.dog: could not connect to host
snakehosting.dk: did not receive HSTS header
-snapappts.com: could not connect to host
-snaptools.io: could not connect to host
snapworks.net: did not receive HSTS header
snarf.in: could not connect to host
sneak.berlin: did not receive HSTS header
sneaker.date: could not connect to host
sneed.company: could not connect to host
+sneezry.com: did not receive HSTS header
snekchat.moe: could not connect to host
snelwerk.be: could not connect to host
sng.my: could not connect to host
@@ -13776,18 +14048,17 @@ snippet.host: could not connect to host
snod.land: did not receive HSTS header
snoozedds.com: max-age too low: 600
snoqualmiefiber.org: could not connect to host
+snoringhq.com: did not receive HSTS header
snovey.com: could not connect to host
snowdy.eu: could not connect to host
snowdy.link: could not connect to host
snowplane.net: did not receive HSTS header
snowraven.de: did not receive HSTS header
snowyluma.com: could not connect to host
-snrat.com: did not receive HSTS header
so-healthy.co.uk: did not receive HSTS header
sobabox.ru: could not connect to host
sobinski.pl: did not receive HSTS header
soboleva-pr.com.ua: could not connect to host
-sobreporcentagem.com: did not receive HSTS header
socal-babes.com: could not connect to host
soccergif.com: could not connect to host
soci.ml: could not connect to host
@@ -13805,14 +14076,14 @@ socialworkout.com: could not connect to host
socialworkout.net: could not connect to host
socialworkout.org: could not connect to host
socialworkout.tv: could not connect to host
-socketize.com: could not connect to host
+socketize.com: did not receive HSTS header
sockeye.cc: could not connect to host
socomponents.co.uk: could not connect to host
sodacore.com: could not connect to host
soe-server.com: could not connect to host
softballsavings.com: did not receive HSTS header
softclean.pt: did not receive HSTS header
-softplaynation.co.uk: could not connect to host
+softplaynation.co.uk: did not receive HSTS header
sogeek.me: could not connect to host
sogravatas.net.br: could not connect to host
sojingle.net: could not connect to host
@@ -13825,7 +14096,6 @@ soldbygold.net: did not receive HSTS header
solentes.com.br: could not connect to host
solidfuelappliancespares.co.uk: did not receive HSTS header
solidimage.com.br: could not connect to host
-solidtuesday.com: could not connect to host
solidus.systems: did not receive HSTS header
solidwebnetworks.co.uk: did not receive HSTS header
solinter.com.br: did not receive HSTS header
@@ -13838,6 +14108,7 @@ solutive.fi: did not receive HSTS header
solymar.co: could not connect to host
some.rip: max-age too low: 6307200
somebodycares.org: did not receive HSTS header
+somepills.com: did not receive HSTS header
someshit.xyz: could not connect to host
something-else.cf: could not connect to host
somethingnew.xyz: could not connect to host
@@ -13848,6 +14119,7 @@ sonerezh.bzh: did not receive HSTS header
sonialive.com: did not receive HSTS header
sonic.network: did not receive HSTS header
sonicrainboom.rocks: could not connect to host
+sonix.dk: could not connect to host
sonja-daniels.com: could not connect to host
sonja-kowa.de: could not connect to host
sonyforum.no: did not receive HSTS header
@@ -13858,8 +14130,7 @@ soply.com: could not connect to host
soporte.cc: could not connect to host
sorenam.com: could not connect to host
sorensen-online.com: could not connect to host
-sorex.photo: max-age too low: 0
-sorincocorada.ro: could not connect to host
+sorex.photo: did not receive HSTS header
sorinmuntean.ro: did not receive HSTS header
sortaweird.net: could not connect to host
sortingwizard.com: could not connect to host
@@ -13867,8 +14138,9 @@ soruly.moe: did not receive HSTS header
sos.de: did not receive HSTS header
sosaka.ml: could not connect to host
sosecu.red: could not connect to host
-sosiolog.com: could not connect to host
+sosiolog.com: did not receive HSTS header
sosko.in.rs: could not connect to host
+sotavasara.net: did not receive HSTS header
sotiran.com: did not receive HSTS header
sotor.de: did not receive HSTS header
soucorneteiro.com.br: could not connect to host
@@ -13878,10 +14150,10 @@ soulema.com: could not connect to host
soulfulglamour.uk: could not connect to host
soulsteer.com: could not connect to host
soundbytemedia.com: did not receive HSTS header
+soundedj.com.br: could not connect to host
soundforsound.co.uk: did not receive HSTS header
soundgasm.net: could not connect to host
soundsecurity.io: could not connect to host
-souqtajmeel.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
sourcecode.love: could not connect to host
sourcelair.com: did not receive HSTS header
sourcitec.com: did not receive HSTS header
@@ -13889,6 +14161,7 @@ sous-surveillance.net: could not connect to host
southcoastkitesurf.co.uk: did not receive HSTS header
southcoastswords.com: did not receive HSTS header
southernjamusa.com: did not receive HSTS header
+southernlights.xyz: could not connect to host
southgale.condos: could not connect to host
southside-crew.club: could not connect to host
southworcestershiregpservices.co.uk: could not connect to host
@@ -13925,7 +14198,7 @@ sparta-trade.com: could not connect to host
spartantheatre.org: could not connect to host
spauted.com: could not connect to host
spawn.cz: could not connect to host
-spcx.eu: did not receive HSTS header
+spcx.eu: could not connect to host
spdysync.com: could not connect to host
specialedesigns.com: could not connect to host
specialistnow.com.au: did not receive HSTS header
@@ -13942,6 +14215,7 @@ speedyprep.com: did not receive HSTS header
speidel.com.tr: did not receive HSTS header
spencerbaer.com: could not connect to host
spendwise.com.au: could not connect to host
+sperohub.com: could not connect to host
sperohub.io: could not connect to host
sperohub.lt: did not receive HSTS header
sphinx.network: could not connect to host
@@ -13969,6 +14243,7 @@ sponsortobias.com: could not connect to host
spontex.org: did not receive HSTS header
spookyinternet.com: could not connect to host
sporara.com: did not receive HSTS header
+sport-socken.net: did not receive HSTS header
sport247.bet: max-age too low: 2592000
sportchirp-internal.azurewebsites.net: did not receive HSTS header
sportflash.info: did not receive HSTS header
@@ -13999,10 +14274,11 @@ sprueche-zur-konfirmation.de: did not receive HSTS header
sprutech.de: could not connect to host
spykedigital.com: could not connect to host
sqetsa.com: did not receive HSTS header
+sqkaccountancy.co.uk: did not receive HSTS header
sqshq.de: did not receive HSTS header
squaddraft.com: did not receive HSTS header
square.gs: could not connect to host
-squarelab.it: did not receive HSTS header
+squareonebgc.com.ph: could not connect to host
squatldf.org: could not connect to host
squids.space: could not connect to host
squirtlesbians.net: could not connect to host
@@ -14029,25 +14305,26 @@ ssl.rip: could not connect to host
sslpoint.com: did not receive HSTS header
sslzilla.de: did not receive HSTS header
ssn1.ru: did not receive HSTS header
-sspanda.com: could not connect to host
+sspanda.com: did not receive HSTS header
ssrvpn.tech: could not connect to host
sss3s.com: could not connect to host
ssworld.ga: could not connect to host
+st-news.de: could not connect to host
staack.com: could not connect to host
stabletoken.com: could not connect to host
staceyhankeinc.com: did not receive HSTS header
stackfiles.io: could not connect to host
stackhub.cc: could not connect to host
+stacktile.io: could not connect to host
stadionmanager.com: could not connect to host
stadjerspasonline.nl: could not connect to host
-stadtbauwerk.at: did not receive HSTS header
-stadtbuecherei-bad-wurzach.de: max-age too low: 0
stadtgartenla.com: could not connect to host
staffjoy.com: did not receive HSTS header
staffjoystaging.com: could not connect to host
stagingjobshq.com: did not receive HSTS header
-stahl.xyz: could not connect to host
-stalder.work: could not connect to host
+stahl.xyz: did not receive HSTS header
+stakestrategy.com: could not connect to host
+staklim-malang.info: could not connect to host
stalkerhispano.com: max-age too low: 0
stalkerteam.pl: did not receive HSTS header
stalkthe.net: could not connect to host
@@ -14068,10 +14345,12 @@ starandshield.com: did not receive HSTS header
starapple.nl: did not receive HSTS header
starcafe.me: could not connect to host
stardeeps.net: max-age too low: 0
+stardust-entertainments.co.uk: did not receive HSTS header
starease.net: could not connect to host
starfeeling.net: could not connect to host
stargatepartners.com: did not receive HSTS header
starklane.com: max-age too low: 300
+starlightentertainmentdevon.co.uk: did not receive HSTS header
starmusic.ga: could not connect to host
starplatinum.jp: could not connect to host
starquake.nl: could not connect to host
@@ -14109,13 +14388,11 @@ stcomex.com: did not receive HSTS header
stdev.org: could not connect to host
steamhours.com: could not connect to host
steampunkrobot.com: did not receive HSTS header
-stedbg.net: could not connect to host
steelbea.ms: could not connect to host
steelrhino.co: could not connect to host
steem.io: did not receive HSTS header
steenackers.be: did not receive HSTS header
stefanweiser.de: did not receive HSTS header
-stefany.eu: could not connect to host
steffi-in-australien.com: could not connect to host
stem.is: did not receive HSTS header
stepbystep3d.com: did not receive HSTS header
@@ -14143,8 +14420,8 @@ stickswag.cf: could not connect to host
stig.io: did not receive HSTS header
stiger.me: could not connect to host
stigroom.com: could not connect to host
-stigviewer.com: did not receive HSTS header
stijnbelmans.be: max-age too low: 604800
+stikkie.me: could not connect to host
stilettomoda.com.br: could not connect to host
stillblackhat.id: could not connect to host
stillyarts.com: did not receive HSTS header
@@ -14159,6 +14436,7 @@ stkbn.com: could not connect to host
stkeverneparishcouncil.org.uk: did not receive HSTS header
stl.news: max-age too low: 0
stlucasmuseum.org: did not receive HSTS header
+stma.is: could not connect to host
stmbgr.com: could not connect to host
stn.me.uk: did not receive HSTS header
stockseyeserum.com: could not connect to host
@@ -14176,6 +14454,7 @@ stonemain.eu: could not connect to host
stonemanbrasil.com.br: could not connect to host
stopakwardhandshakes.org: could not connect to host
stopwoodfin.org: could not connect to host
+storageshedsnc.com: did not receive HSTS header
storbritannien.guide: could not connect to host
store-host.com: did not receive HSTS header
store10.de: could not connect to host
@@ -14186,6 +14465,7 @@ storiesofhealth.org: did not receive HSTS header
stormhub.org: could not connect to host
stormwatcher.org: could not connect to host
stormyyd.com: max-age too low: 0
+storytea.top: did not receive HSTS header
stpatricksguild.com: did not receive HSTS header
stqry.com: did not receive HSTS header
str0.at: did not receive HSTS header
@@ -14196,17 +14476,19 @@ strbt.de: could not connect to host
strchr.com: did not receive HSTS header
stream-ing.xyz: could not connect to host
stream.pub: could not connect to host
+streamblur.net: could not connect to host
streamdesk.ca: did not receive HSTS header
streamer.tips: did not receive HSTS header
streamingeverywhere.com: could not connect to host
streamingmagazin.de: could not connect to host
-streampanel.net: did not receive HSTS header
+streampanel.net: could not connect to host
streams.dyndns.org: could not connect to host
streamthemeeting.com: did not receive HSTS header
streamzilla.com: did not receive HSTS header
strehl.tk: could not connect to host
strelitzia02.com: could not connect to host
stressfreehousehold.com: could not connect to host
+stretchpc.com: could not connect to host
strictlysudo.com: could not connect to host
strife.tk: could not connect to host
strila.me: could not connect to host
@@ -14217,6 +14499,7 @@ strongest-privacy.com: could not connect to host
struxureon.com: did not receive HSTS header
stuartbaxter.co: could not connect to host
stubbings.eu: could not connect to host
+stucorweb.com: could not connect to host
student-scientist.org: did not receive HSTS header
student.andover.edu: could not connect to host
studentrdh.com: did not receive HSTS header
@@ -14245,7 +14528,6 @@ sturge.co.uk: did not receive HSTS header
stuudium.life: could not connect to host
stylenda.com: could not connect to host
stylle.me: could not connect to host
-styloeart.com: could not connect to host
stytt.com: did not receive HSTS header
suaraangin.com: could not connect to host
suareforma.com: could not connect to host
@@ -14254,6 +14536,7 @@ subbing.work: could not connect to host
subdimension.org: could not connect to host
subeesu.com: could not connect to host
subhacker.net: could not connect to host
+sublevel.net: did not receive HSTS header
subrain.com: did not receive HSTS header
subrosa.io: could not connect to host
subsys.no: did not receive HSTS header
@@ -14267,7 +14550,6 @@ succubus.xxx: could not connect to host
suche.org: could not connect to host
suchprogrammer.net: did not receive HSTS header
sudo.im: could not connect to host
-sudo.li: did not receive HSTS header
sudosu.fr: could not connect to host
suempresa.cloud: could not connect to host
suffts.de: could not connect to host
@@ -14281,6 +14563,7 @@ summer.ga: could not connect to host
summitbankofkc.com: did not receive HSTS header
summitmasters.net: did not receive HSTS header
sumoscout.de: did not receive HSTS header
+sun-wellness-online.com.vn: did not receive HSTS header
sun.re: could not connect to host
suncountrymarine.com: did not receive HSTS header
sundaycooks.com: max-age too low: 2592000
@@ -14305,6 +14588,7 @@ super-ripped-power.com: could not connect to host
super-slim-coffee.com: could not connect to host
superbabysitting.ch: could not connect to host
superbike.tw: could not connect to host
+superbowlkneel.com: could not connect to host
superbshare.com: could not connect to host
supercastlessouthsydney.com.au: could not connect to host
supercreepsvideo.com: did not receive HSTS header
@@ -14312,13 +14596,14 @@ superiorfloridavacation.com: could not connect to host
superklima.ro: did not receive HSTS header
superlandnetwork.de: did not receive HSTS header
superlentes.com.br: could not connect to host
+supermarx.nl: could not connect to host
+supermil.ch: could not connect to host
supernovabrasil.com.br: did not receive HSTS header
supernt.lt: could not connect to host
superpase.com: could not connect to host
supersahnetorten.de: could not connect to host
supersalescontest.nl: did not receive HSTS header
superschnappchen.de: could not connect to host
-supersec.es: could not connect to host
supersecurefancydomain.com: could not connect to host
supertramp-dafonseca.com: did not receive HSTS header
superuser.fi: could not connect to host
@@ -14339,6 +14624,7 @@ survivebox.fr: did not receive HSTS header
susastudentenjobs.de: could not connect to host
susconam.org: could not connect to host
suseasky.com: did not receive HSTS header
+sush.us: could not connect to host
sushifrick.de: could not connect to host
sushiwereld.be: did not receive HSTS header
suspiciousdarknet.xyz: could not connect to host
@@ -14348,17 +14634,16 @@ sustainability.gov: did not receive HSTS header
suts.co.uk: could not connect to host
suttonbouncycastles.co.uk: could not connect to host
suvidhaapay.com: could not connect to host
-suzukikazuki.com: max-age too low: 0
suzukikenichi.com: did not receive HSTS header
svadobkajuvi.sk: did not receive HSTS header
svarovani.tk: could not connect to host
svatba-frantovi.cz: could not connect to host
sve-hosting.nl: could not connect to host
-svenluijten.com: did not receive HSTS header
svenskacasino.com: did not receive HSTS header
svenskaservern.se: could not connect to host
svetdrzaku.cz: did not receive HSTS header
svetjakonadlani.cz: did not receive HSTS header
+svetzitrka.cz: did not receive HSTS header
sviz.pro: could not connect to host
svj-stochovska.cz: could not connect to host
svjvn.cz: could not connect to host
@@ -14393,7 +14678,6 @@ swordfighting.net: could not connect to host
swu.party: could not connect to host
sx3.no: could not connect to host
sxbk.pw: could not connect to host
-sy-anduril.de: did not receive HSTS header
syam.cc: could not connect to host
sychov.pro: could not connect to host
sydgrabber.tk: could not connect to host
@@ -14402,7 +14686,7 @@ sylvaincombe.net: could not connect to host
sylvangarden.org: could not connect to host
sylvanorder.com: could not connect to host
symetria.io: max-age too low: 2592000
-synackr.com: did not receive HSTS header
+synackr.com: could not connect to host
synapticconsulting.co.uk: could not connect to host
syncaddict.net: could not connect to host
syncappate.com: could not connect to host
@@ -14412,7 +14696,7 @@ synchrocube.com: could not connect to host
synchtu.be: could not connect to host
syncmylife.net: could not connect to host
syncserve.net: did not receive HSTS header
-syneic.com: could not connect to host
+syneic.com: did not receive HSTS header
synergisticsoccer.com: could not connect to host
syno.gq: could not connect to host
syntaxoff.com: could not connect to host
@@ -14450,6 +14734,7 @@ taabe.xyz: could not connect to host
taartenfeesies.nl: did not receive HSTS header
tab.watch: did not receive HSTS header
taberu-fujitsubo.com: did not receive HSTS header
+tabhui.com: could not connect to host
tabino.top: did not receive HSTS header
tabitatsu.jp: did not receive HSTS header
tabla-periodica.com: could not connect to host
@@ -14462,21 +14747,19 @@ tadigitalstore.com: could not connect to host
tafoma.com: did not receive HSTS header
tageau.com: could not connect to host
tagesmutter-in-bilm.de: did not receive HSTS header
+tagesmutter-zwitscherlinge.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
tahakomat.cz: could not connect to host
tahf.net: could not connect to host
taichi-jade.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
taidu.news: could not connect to host
tailandfur.com: did not receive HSTS header
tailify.com: did not receive HSTS header
-tailpuff.net: did not receive HSTS header
tails.com.ar: could not connect to host
taim.io: could not connect to host
takebackyourstate.com: could not connect to host
takebackyourstate.net: could not connect to host
takebackyourstate.org: could not connect to host
takebonus.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-takedownthissite.com: could not connect to host
-takemoto-ped.com: could not connect to host
takinet.kr: could not connect to host
takusan.ru: could not connect to host
talenthero.io: did not receive HSTS header
@@ -14492,12 +14775,13 @@ talktwincities.com: could not connect to host
tallr.se: could not connect to host
tallshoe.com: could not connect to host
talsi.eu: could not connect to host
-tam7t.com: did not receive HSTS header
-tamaraboutique.com: could not connect to host
+tam7t.com: could not connect to host
tamersunion.org: did not receive HSTS header
tamex.xyz: could not connect to host
+tamriel-rebuilt.org: could not connect to host
tandarts-haarlem.nl: did not receive HSTS header
tandblekningidag.com: could not connect to host
+tandem-trade.ru: could not connect to host
tangerine.ga: could not connect to host
tangibilizing.com: could not connect to host
tangiblesecurity.com: did not receive HSTS header
@@ -14512,11 +14796,11 @@ tantotiempo.de: did not receive HSTS header
tanze-jetzt.de: could not connect to host
taotuba.net: did not receive HSTS header
taozj.org: did not receive HSTS header
+tapakgram.com: did not receive HSTS header
tapestries.tk: could not connect to host
tapfinder.ca: could not connect to host
tapka.cz: did not receive HSTS header
tappublisher.com: did not receive HSTS header
-taranis.re: could not connect to host
taravancil.com: did not receive HSTS header
tarek.link: could not connect to host
targaryen.house: could not connect to host
@@ -14555,7 +14839,6 @@ tcao.info: could not connect to host
tcby45.xyz: could not connect to host
tcl.ath.cx: did not receive HSTS header
tcp.expert: did not receive HSTS header
-tcspartner.net: did not receive HSTS header
tcwebvn.com: could not connect to host
tdelmas.eu: could not connect to host
tdelmas.ovh: could not connect to host
@@ -14579,10 +14862,10 @@ teambeoplay.co.uk: did not receive HSTS header
teamblueridge.org: could not connect to host
teamdaylo.xyz: could not connect to host
teamhood.io: did not receive HSTS header
+teamnetsol.com: did not receive HSTS header
teampoint.cz: could not connect to host
teams.microsoft.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
teamsocial.co: did not receive HSTS header
-teamup.rocks: did not receive HSTS header
teamx-gaming.de: could not connect to host
teamzeus.cz: could not connect to host
teaparty.id: could not connect to host
@@ -14590,6 +14873,7 @@ tearoy.faith: did not receive HSTS header
teasenetwork.com: could not connect to host
tebieer.com: could not connect to host
tech-blog.fr: did not receive HSTS header
+tech-clips.com: did not receive HSTS header
tech-finder.fr: could not connect to host
tech55i.com: could not connect to host
techandtux.de: could not connect to host
@@ -14612,19 +14896,20 @@ techmatehq.com: could not connect to host
technicalforensic.com: could not connect to host
technicalpenguins.com: did not receive HSTS header
techniclab.org: could not connect to host
-techniclab.ru: could not connect to host
technikrom.org: did not receive HSTS header
-technogroup.cz: did not receive HSTS header
+technogroup.cz: could not connect to host
technosavvyport.com: did not receive HSTS header
technosuport.com: did not receive HSTS header
+technoswag.ca: did not receive HSTS header
technotonic.com.au: did not receive HSTS header
techpointed.com: could not connect to host
techpro.net.br: did not receive HSTS header
techproud.com: did not receive HSTS header
techreview.link: could not connect to host
-techtoy.store: could not connect to host
+techtoy.store: did not receive HSTS header
techtrackerpro.com: could not connect to host
techtraveller.com.au: did not receive HSTS header
+techtuts.info: could not connect to host
techunit.org: could not connect to host
tecit.ch: could not connect to host
tecnidev.com: could not connect to host
@@ -14648,8 +14933,7 @@ teknologi.or.id: max-age too low: 36000
teknotes.co.uk: could not connect to host
tekshrek.com: did not receive HSTS header
teksuperior.com: could not connect to host
-tektoria.de: could not connect to host
-tekuteku.jp: could not connect to host
+tektoria.de: did not receive HSTS header
tel-dithmarschen.de: did not receive HSTS header
teleallarme.ch: could not connect to host
telecharger-itunes.com: could not connect to host
@@ -14658,6 +14942,7 @@ telecharger-winrar.com: could not connect to host
telefisk.org: did not receive HSTS header
telefonnummer.online: could not connect to host
telefonogratuito.com: did not receive HSTS header
+telefonsinyalguclendirici.com: did not receive HSTS header
telefoonnummerinfo.nl: could not connect to host
telekollektiv.org: could not connect to host
telescam.com: could not connect to host
@@ -14665,7 +14950,7 @@ teleshop.be: could not connect to host
teletechnology.in: did not receive HSTS header
teletra.ru: could not connect to host
telfordwhitehouse.co.uk: did not receive HSTS header
-tellingua.com: did not receive HSTS header
+tellingua.com: could not connect to host
teltonica.com: did not receive HSTS header
telugu4u.net: could not connect to host
temasa.net: did not receive HSTS header
@@ -14679,14 +14964,16 @@ ten-cafe.com: could not connect to host
tenberg.com: could not connect to host
tendertool.nl: could not connect to host
tendoryu-aikido.org: did not receive HSTS header
-tenerife-villas.com: did not receive HSTS header
+tenerife-villas.com: max-age too low: 2592000
tengu.cloud: could not connect to host
tenispopular.com: could not connect to host
+tenma.pro: could not connect to host
tenni.xyz: could not connect to host
tennisapp.org: could not connect to host
tennispensacola.com: could not connect to host
tensei-slime.com: did not receive HSTS header
tensionup.com: could not connect to host
+tent.io: could not connect to host
tentins.com: could not connect to host
teodio.cl: did not receive HSTS header
teoleonie.com: did not receive HSTS header
@@ -14694,7 +14981,7 @@ teos.online: could not connect to host
teoskanta.fi: could not connect to host
teranga.ch: did not receive HSTS header
tercerapuertoaysen.cl: could not connect to host
-termino.eu: did not receive HSTS header
+termitinitus.org: did not receive HSTS header
terra-x.net: could not connect to host
terra.by: did not receive HSTS header
terrax.berlin: could not connect to host
@@ -14711,7 +14998,9 @@ testbirds.cz: could not connect to host
testbirds.sk: could not connect to host
testdomain.ovh: could not connect to host
testnode.xyz: could not connect to host
+testosterone-complex.com: could not connect to host
testovaci.ml: could not connect to host
+testpornsite.com: could not connect to host
tetrafinancial-commercial-business-equipment-financing.com: did not receive HSTS header
tetrafinancial-energy-mining-equipment-financing.com: did not receive HSTS header
tetrafinancial-healthcare-medical-equipment-financing.com: did not receive HSTS header
@@ -14737,11 +15026,10 @@ th-bl.de: did not receive HSTS header
th3nd.com: could not connect to host
thackert.myfirewall.org: could not connect to host
thagki9.com: did not receive HSTS header
-thai.land: did not receive HSTS header
+thai.land: could not connect to host
thaianthro.com: max-age too low: 0
thaigirls.xyz: could not connect to host
thaihostcool.com: did not receive HSTS header
-thailandpropertylisting.com: did not receive HSTS header
thailandpropertylistings.com: did not receive HSTS header
thalmann.fr: did not receive HSTS header
thalskarth.com: did not receive HSTS header
@@ -14759,11 +15047,11 @@ the-sky-of-valkyries.com: could not connect to host
the.ie: max-age too low: 0
the420vape.org: could not connect to host
theamateurs.net: did not receive HSTS header
-theamp.com: did not receive HSTS header
+theamp.com: could not connect to host
theater.cf: could not connect to host
theavenuegallery.com: did not receive HSTS header
thebakingclass.com: max-age too low: 60
-thebarneystyle.com: did not receive HSTS header
+thebarrens.nu: could not connect to host
thebasementguys.com: could not connect to host
thebeautifulmusic.net: did not receive HSTS header
thebeginningisnye.com: could not connect to host
@@ -14783,9 +15071,10 @@ theclimbingunit.com: did not receive HSTS header
thecloudmigrator.com: did not receive HSTS header
thecloudrevolution.net: did not receive HSTS header
theclubjersey.com: did not receive HSTS header
-thecodeninja.net: did not receive HSTS header
+thecodeninja.net: could not connect to host
thecoffeehouse.xyz: could not connect to host
thecoffeepod.co.uk: did not receive HSTS header
+thecozycastle.com: did not receive HSTS header
thecskr.in: did not receive HSTS header
thecsw.com: did not receive HSTS header
thedailyupvote.com: could not connect to host
@@ -14798,7 +15087,7 @@ thedrunkencabbage.com: could not connect to host
thedystance.com: could not connect to host
theel0ja.info: did not receive HSTS header
theelitebuzz.com: could not connect to host
-theendofzion.com: could not connect to host
+theendofzion.com: did not receive HSTS header
theepankar.com: could not connect to host
theescapistswiki.com: could not connect to host
theevergreen.me: could not connect to host
@@ -14821,7 +15110,7 @@ thegreens.us: could not connect to host
thegreenvpn.com: could not connect to host
thehiddenbay.cc: could not connect to host
thehiddenbay.eu: max-age too low: 0
-thehiddenbay.me: could not connect to host
+thehiddenbay.me: max-age too low: 0
thehiddenbay.net: could not connect to host
thehighersideclothing.com: did not receive HSTS header
thehistory.me: could not connect to host
@@ -14830,7 +15119,7 @@ thehoopsarchive.com: could not connect to host
theimagesalon.com: max-age too low: 43200
theinvisibletrailer.com: could not connect to host
theitsage.com: did not receive HSTS header
-thej0lt.com: could not connect to host
+thej0lt.com: did not receive HSTS header
thejobauction.com: did not receive HSTS header
thejserver.de: could not connect to host
thekrewserver.com: did not receive HSTS header
@@ -14859,7 +15148,6 @@ theokonst.tk: did not receive HSTS header
theosblog.de: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
theosophie-afrique.org: could not connect to host
theoverfly.co: could not connect to host
-thepaffy.de: could not connect to host
thepartywarehouse.co.uk: did not receive HSTS header
thepcweb.tk: could not connect to host
thepiratebay.al: could not connect to host
@@ -14869,10 +15157,12 @@ theposhfudgecompany.co.uk: could not connect to host
theprincegame.com: could not connect to host
theprivacysolution.com: could not connect to host
thequillmagazine.org: could not connect to host
+therewill.be: could not connect to host
therise.ca: max-age too low: 300
thermique.ch: could not connect to host
theroamingnotary.com: did not receive HSTS header
therockawaysny.com: did not receive HSTS header
+theroks.com: could not connect to host
thesassynut.com: did not receive HSTS header
thesearchnerds.co.uk: did not receive HSTS header
thesecurityteam.net: could not connect to host
@@ -14883,8 +15173,9 @@ thesled.net: could not connect to host
thesplit.is: could not connect to host
thestack.xyz: could not connect to host
thestagchorleywood.co.uk: did not receive HSTS header
-thestonegroup.de: could not connect to host
thestoritplace.com: max-age too low: 0
+thestral.pro: could not connect to host
+thestralbot.com: could not connect to host
thetapirsmouth.com: could not connect to host
thethirdroad.com: did not receive HSTS header
thetradinghall.com: could not connect to host
@@ -14893,12 +15184,14 @@ theurbanyoga.com: did not receive HSTS header
theuucc.org: did not receive HSTS header
thevintagenews.com: did not receive HSTS header
thevoid.one: could not connect to host
+thewagesroom.co.uk: could not connect to host
thewallset.com: could not connect to host
thewaxhouse.shop: did not receive HSTS header
thewebfellas.com: did not receive HSTS header
thewego.com: could not connect to host
theweilai.com: could not connect to host
thewhiterabbit.space: could not connect to host
+thewindow.com: could not connect to host
theworkingeye.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
thewp.pro: could not connect to host
thezonders.com: did not receive HSTS header
@@ -14914,6 +15207,7 @@ thinklikeanentrepreneur.com: did not receive HSTS header
thinkswap.com: did not receive HSTS header
thinlyveiledcontempt.com: could not connect to host
thirdpartytrade.com: did not receive HSTS header
+thirdworld.moe: could not connect to host
thirty5.net: did not receive HSTS header
thirtyspot.com: could not connect to host
thisisacompletetest.ga: could not connect to host
@@ -14932,26 +15226,28 @@ thomaskliszowski.fr: did not receive HSTS header
thomasnet.fr: could not connect to host
thomasscholz.com: max-age too low: 2592000
thomasschweizer.net: could not connect to host
+thomasvochten.com: did not receive HSTS header
thomasvt.xyz: max-age too low: 2592000
-thompsonfamily.cloud: could not connect to host
+thomspooren.nl: could not connect to host
thorbis.com: could not connect to host
thorbiswebsitedesign.com: could not connect to host
thorgames.nl: did not receive HSTS header
thorncreek.net: did not receive HSTS header
thot.space: could not connect to host
+thoughtlessleaders.online: could not connect to host
thoughtsynth.com: could not connect to host
thoughtsynth.net: could not connect to host
thoughtsynth.org: could not connect to host
threatcentral.io: could not connect to host
threebrothersbrewing.com: max-age too low: 2592000
threebulls.be: did not receive HSTS header
-threit.de: did not receive HSTS header
thriveapproach.co.uk: did not receive HSTS header
thrivewellnesshub.co.za: did not receive HSTS header
throughthelookingglasslens.co.uk: could not connect to host
thrx.net: did not receive HSTS header
thumbtack.com: did not receive HSTS header
thundercampaign.com: could not connect to host
+thundr.eu: could not connect to host
thuviensoft.net: could not connect to host
thuybich.com: did not receive HSTS header
thyrex.fr: could not connect to host
@@ -14971,11 +15267,12 @@ tickreport.com: did not receive HSTS header
ticktock.today: could not connect to host
tictactux.de: could not connect to host
tidmore.us: could not connect to host
-tie-online.org: did not receive HSTS header
+tie-online.org: could not connect to host
tiendafetichista.com: could not connect to host
tiendschuurstraat.nl: could not connect to host
tiensnet.com: could not connect to host
tierarztpraxis-illerwinkel.de: did not receive HSTS header
+tiernanx.com: could not connect to host
tierrarp.com: could not connect to host
tiffanytravels.com: did not receive HSTS header
tightlineproductions.com: did not receive HSTS header
@@ -15002,6 +15299,7 @@ timeserver2.de: could not connect to host
timeserver3.de: could not connect to host
timestamp.io: did not receive HSTS header
timestamp.uk: could not connect to host
+timetab.org: could not connect to host
timhieubenh.net: could not connect to host
timhjalpen.se: could not connect to host
timklefisch.de: did not receive HSTS header
@@ -15012,14 +15310,13 @@ timowi.de: could not connect to host
timowi.net: could not connect to host
timroes.de: did not receive HSTS header
timschubert.net: max-age too low: 172800
-timtj.ca: could not connect to host
timvandekamp.nl: did not receive HSTS header
-timweb.ca: could not connect to host
timwhite.io: did not receive HSTS header
timwittenberg.com: could not connect to host
-tinchbear.xyz: did not receive HSTS header
+tinchbear.xyz: could not connect to host
tindewen.net: could not connect to host
tink.network: could not connect to host
+tinkerers-trunk.co.za: did not receive HSTS header
tipiakers.club: could not connect to host
tipps-fuer-den-haushalt.de: could not connect to host
tippspiel.cc: could not connect to host
@@ -15031,6 +15328,7 @@ tism.in: could not connect to host
tiste.org: could not connect to host
titanlab.de: could not connect to host
titanleaf.com: could not connect to host
+titanous.com: could not connect to host
titanpointe.org: did not receive HSTS header
tittarpuls.se: could not connect to host
titties.ml: could not connect to host
@@ -15040,13 +15338,11 @@ tjeckien.guide: could not connect to host
tjs.me: could not connect to host
tju.me: could not connect to host
tkappertjedemetamorfose.nl: could not connect to host
-tkarstens.de: did not receive HSTS header
+tkarstens.de: could not connect to host
tkhw.tk: could not connect to host
tkonstantopoulos.tk: could not connect to host
tkts.cl: could not connect to host
-tlach.cz: did not receive HSTS header
tlcdn.net: could not connect to host
-tlcnet.info: could not connect to host
tlo.hosting: could not connect to host
tlo.link: could not connect to host
tlo.network: could not connect to host
@@ -15056,6 +15352,7 @@ tlshost.net: could not connect to host
tm-solutions.eu: could not connect to host
tm.id.au: did not receive HSTS header
tmaward.net: could not connect to host
+tmconnects.com: could not connect to host
tmhlive.com: could not connect to host
tmin.cf: could not connect to host
tmitchell.io: could not connect to host
@@ -15068,6 +15365,7 @@ to2mbn.org: could not connect to host
tobaby.com.br: could not connect to host
tobaccore.eu: could not connect to host
tobaccore.sk: could not connect to host
+tobedo.net: could not connect to host
tobias-bielefeld.de: did not receive HSTS header
tobiasbergius.se: could not connect to host
tobiasmathes.com: could not connect to host
@@ -15107,9 +15405,9 @@ tokoyo.biz: could not connect to host
tollmanz.com: did not receive HSTS header
tollsjekk.no: could not connect to host
tolud.com: could not connect to host
+tom-maxwell.com: did not receive HSTS header
tom.run: did not receive HSTS header
tomandshirley.com: could not connect to host
-tomaz.eu: could not connect to host
tomcort.com: could not connect to host
tomeara.net: could not connect to host
tomevans.io: did not receive HSTS header
@@ -15121,17 +15419,16 @@ tommsy.com: did not receive HSTS header
tommy-bordas.fr: did not receive HSTS header
tommyads.com: could not connect to host
tommyweber.de: did not receive HSTS header
+tomoyaf.com: did not receive HSTS header
tomphill.co.uk: could not connect to host
tomy.icu: could not connect to host
tonburi.jp: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
tongmu.me: could not connect to host
toniharant.de: could not connect to host
-tono.us: could not connect to host
toomanypillows.com: could not connect to host
top-solar-info.de: could not connect to host
top-stage.net: could not connect to host
top10mountainbikes.info: could not connect to host
-top9.fr: did not receive HSTS header
topanlage.de: could not connect to host
topbargains.com.au: did not receive HSTS header
topbestsellerproduct.com: did not receive HSTS header
@@ -15149,6 +15446,7 @@ topshelfguild.com: could not connect to host
topshoptools.com: could not connect to host
toptenthebest.com: did not receive HSTS header
toptranslation.com: did not receive HSTS header
+topwin.la: could not connect to host
topyx.com: did not receive HSTS header
tor2web.org: could not connect to host
torbay.ga: could not connect to host
@@ -15168,7 +15466,6 @@ torv.rocks: did not receive HSTS header
tosecure.link: could not connect to host
toshnix.com: could not connect to host
toshub.com: could not connect to host
-totaku.ru: could not connect to host
totalle.com.br: could not connect to host
totallynotaserver.com: could not connect to host
totalsystemcare.com: could not connect to host
@@ -15185,14 +15482,14 @@ touchinformatica.com: did not receive HSTS header
touchpointidg.us: could not connect to host
touchscreen-handy.de: did not receive HSTS header
touchstonefms.co.uk: did not receive HSTS header
+touchtable.nl: did not receive HSTS header
touray-enterprise.ch: could not connect to host
tournaire.fr: did not receive HSTS header
tourpeer.com: did not receive HSTS header
toursandtransfers.it: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+touslesdrivers.com: could not connect to host
tousproducteurs.fr: did not receive HSTS header
towaway.ru: could not connect to host
-town-farm.surrey.sch.uk: max-age too low: 0
-townofbridgewater.ca: could not connect to host
tox.im: did not receive HSTS header
toxicboot.com: could not connect to host
toxicip.com: could not connect to host
@@ -15201,12 +15498,13 @@ toymania.de: could not connect to host
toyotamotala.se: could not connect to host
tpansino.com: could not connect to host
tpbcdn.com: could not connect to host
-tpblist.xyz: could not connect to host
+tpblist.xyz: max-age too low: 0
tpbunblocked.org: could not connect to host
tpe-edu.com: could not connect to host
tpms4u.at: did not receive HSTS header
tppdebate.org: did not receive HSTS header
trabajarenperu.com: did not receive HSTS header
+tracalada.cl: did not receive HSTS header
tracetracker.com: did not receive HSTS header
tracetracker.no: did not receive HSTS header
tracewind.top: could not connect to host
@@ -15241,20 +15539,23 @@ trakfusion.com: could not connect to host
tranos.de: did not receive HSTS header
transbike.es: did not receive HSTS header
transcendmotor.sg: could not connect to host
+transcricentro.pt: could not connect to host
transcriptionwave.com: did not receive HSTS header
transdirect.com.au: did not receive HSTS header
transformify.org: did not receive HSTS header
transgendernetwerk.nl: did not receive HSTS header
transl8.eu: did not receive HSTS header
translate.googleapis.com: did not receive HSTS header (error ignored - included regardless)
+translateblender.ru: could not connect to host
+translatoruk.co.uk: could not connect to host
transmithe.net: could not connect to host
transportal.sk: did not receive HSTS header
transsexualpantyhose.com: could not connect to host
-tratamentoparacelulite.biz: did not receive HSTS header
-tratamentoparacelulite.net: did not receive HSTS header
+tratamentoparacelulite.biz: could not connect to host
trauertexte.info: could not connect to host
traumhuetten.de: did not receive HSTS header
travality.ru: could not connect to host
+travel-dealz.de: did not receive HSTS header
travel-kuban.ru: did not receive HSTS header
travel1x1.com: did not receive HSTS header
traveling-thailand.info: could not connect to host
@@ -15263,6 +15564,7 @@ travelling.expert: could not connect to host
travotion.com: could not connect to host
trazosdearte.com: did not receive HSTS header
treasuredinheritanceministry.com: did not receive HSTS header
+treatment.org: could not connect to host
treatprostatewithhifu.com: could not connect to host
treeby.net: could not connect to host
treehousebydesign.com: did not receive HSTS header
@@ -15270,15 +15572,18 @@ treeremovaljohannesburg.co.za: could not connect to host
treino.blog.br: could not connect to host
treker.us: could not connect to host
trell.co.in: did not receive HSTS header
+tremolosoftware.com: did not receive HSTS header
tremoureux.fr: could not connect to host
trendberry.ru: could not connect to host
trendingpulse.com: could not connect to host
trendisland.de: did not receive HSTS header
trendydips.com: could not connect to host
+trentmaydew.com: could not connect to host
trewe.eu: could not connect to host
triadwars.com: did not receive HSTS header
triageo.com.au: could not connect to host
trialmock.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+trianon.xyz: could not connect to host
trickedguys.com: could not connect to host
triddi.com: could not connect to host
tridimage.com: did not receive HSTS header
@@ -15297,7 +15602,7 @@ trixati.org.ua: did not receive HSTS header
trixies-wish.nz: could not connect to host
trixy.com.br: could not connect to host
trizone.com.au: did not receive HSTS header
-troi.de: did not receive HSTS header
+troisdorf-gestalten.de: did not receive HSTS header
trollme.me: could not connect to host
trollscave.xyz: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
tronflix.com: did not receive HSTS header
@@ -15308,7 +15613,9 @@ trpg.wiki: could not connect to host
truckgpsreviews.com: did not receive HSTS header
true.ink: did not receive HSTS header
truebred-labradors.com: did not receive HSTS header
+trueessayhelp.co.uk: did not receive HSTS header
truejob.com: did not receive HSTS header
+truessl.shop: could not connect to host
trumeet.top: did not receive HSTS header
trunkjunk.co: could not connect to host
trush.in: could not connect to host
@@ -15324,9 +15631,10 @@ trynowrinkleseyeserum.com: could not connect to host
tryoneday.co: did not receive HSTS header
tryti.me: could not connect to host
ts2.se: could not connect to host
-ts3-dns.me: could not connect to host
+ts3-dns.me: did not receive HSTS header
ts3.consulting: could not connect to host
tsaro.io: could not connect to host
+tscqmalawi.info: did not receive HSTS header
tsdom.net: could not connect to host
tsecy.com: could not connect to host
tsgbit.net: could not connect to host
@@ -15341,10 +15649,10 @@ tsumi.moe: could not connect to host
tsura.org: could not connect to host
tsurezurematome.ga: could not connect to host
tsurimap.com: could not connect to host
-tsutsumi-kogyo.jp: could not connect to host
ttackmedical.com.br: could not connect to host
-ttb.gov: did not receive HSTS header
+ttrade.ga: could not connect to host
tts.co.nz: did not receive HSTS header
+ttspttsp.com: could not connect to host
tty.space: could not connect to host
ttz.im: could not connect to host
tuamoronline.com: could not connect to host
@@ -15356,6 +15664,7 @@ tubex.ga: could not connect to host
tucidi.net: could not connect to host
tucker.wales: could not connect to host
tucnak.eu: could not connect to host
+tucsonpcrepair.com: did not receive HSTS header
tudorapido.com.br: did not receive HSTS header
tueche.com.ar: did not receive HSTS header
tufilo.com: could not connect to host
@@ -15368,6 +15677,7 @@ tunebitfm.de: could not connect to host
tungstenroyce.com: did not receive HSTS header
tunity.be: did not receive HSTS header
tupizm.com: could not connect to host
+turdnagel.com: could not connect to host
turismo.cl: could not connect to host
turkiet.guide: could not connect to host
turkrock.com: did not receive HSTS header
@@ -15379,7 +15689,7 @@ turtlementors.com: could not connect to host
turtles.ga: could not connect to host
tusb.ml: did not receive HSTS header
tussengelegenwoningverkopen.nl: could not connect to host
-tuthowto.com: did not receive HSTS header
+tuthowto.com: could not connect to host
tutiendaroja.com: did not receive HSTS header
tutiendarosa.com: did not receive HSTS header
tutorio.ga: could not connect to host
@@ -15391,7 +15701,8 @@ tv.search.yahoo.com: could not connect to host
tvc.red: could not connect to host
tverdohleb.com: could not connect to host
tvoru.com.ua: did not receive HSTS header
-tvtubeflix.com: could not connect to host
+tvs-virtual.cz: did not receive HSTS header
+tvtubeflix.com: did not receive HSTS header
tvz-materijali.com: could not connect to host
tw2-tools.ga: could not connect to host
twarog.cc: could not connect to host
@@ -15412,7 +15723,6 @@ tweetify.io: could not connect to host
twelve.rocks: could not connect to host
twelve.today: could not connect to host
twelverocks.com: could not connect to host
-twem.ddns.net: could not connect to host
twillionmas.com: could not connect to host
twinkieman.com: could not connect to host
twinkseason.ca: could not connect to host
@@ -15442,7 +15752,6 @@ tycjt.vip: did not receive HSTS header
tykoon.com: could not connect to host
tyler.coach: could not connect to host
tylercoach.com: could not connect to host
-tylerharcourt.ca: max-age too low: 86400
tylerharcourt.com: could not connect to host
tylerharcourt.org: did not receive HSTS header
tylerharcourt.xyz: could not connect to host
@@ -15459,8 +15768,6 @@ tyreis.com: did not receive HSTS header
tyrelius.com: could not connect to host
tyroproducts.eu: did not receive HSTS header
tyskland.guide: could not connect to host
-tysye.ca: could not connect to host
-tyuo-keibi.co.jp: did not receive HSTS header
tz56789.com: did not receive HSTS header
tzappa.net: could not connect to host
tzwe.com: could not connect to host
@@ -15480,7 +15787,6 @@ ubuntuhot.com: did not receive HSTS header
uc.ac.id: did not receive HSTS header
uclanmasterplan.co.uk: did not receive HSTS header
udbhav.me: could not connect to host
-ueba1085.jp: could not connect to host
uefeng.com: did not receive HSTS header
uega.net: did not receive HSTS header
uerdingen.info: did not receive HSTS header
@@ -15507,7 +15813,7 @@ ukkeyholdingcompany.co.uk: could not connect to host
ukrgadget.com: could not connect to host
ulabox.cat: did not receive HSTS header
ulabox.es: did not receive HSTS header
-ulalau.com: could not connect to host
+ulalau.com: did not receive HSTS header
ullamodaintima.com.br: could not connect to host
ulmo.dk: could not connect to host
ulti.gq: did not receive HSTS header
@@ -15515,6 +15821,8 @@ ultimate-garcinia-plus.com: could not connect to host
ultimate-glow-skin.com: could not connect to host
ultimate-memoryplus.com: could not connect to host
ultimate-neuroplus.com: could not connect to host
+ultramax.biz: could not connect to host
+ultraporn.biz: could not connect to host
ultrasteam.net: could not connect to host
ultros.io: did not receive HSTS header
umaimise.info: did not receive HSTS header
@@ -15524,7 +15832,6 @@ umgardi.ca: could not connect to host
umidev.com: could not connect to host
umie.cc: did not receive HSTS header
ump45.moe: did not receive HSTS header
-unapolegetic.co: did not receive HSTS header
unart.info: could not connect to host
unbanthe.net: could not connect to host
unblockat.tk: did not receive HSTS header
@@ -15542,7 +15849,7 @@ unblocked.win: could not connect to host
unblocked.works: could not connect to host
unblocked.world: could not connect to host
unblockedall.site: could not connect to host
-unblockedbay.info: could not connect to host
+unblockedbay.info: max-age too low: 0
unblockerproxy.site: could not connect to host
unblockerproxy.top: could not connect to host
unblockmy.party: could not connect to host
@@ -15553,22 +15860,25 @@ unblockthe.site: could not connect to host
unblockthe.top: could not connect to host
unccdesign.club: could not connect to host
unclegen.xyz: could not connect to host
-undeadbrains.de: could not connect to host
+undecidable.de: could not connect to host
under30stravelinsurance.com.au: did not receive HSTS header
undercovercondoms.com: could not connect to host
underkin.com: could not connect to host
+undo.co.il: could not connect to host
unefuite.ch: could not connect to host
unfiltered.nyc: could not connect to host
ungern.guide: could not connect to host
unhu.fr: could not connect to host
uni-games.com: could not connect to host
uni2share.com: could not connect to host
+unicefcards.at: did not receive HSTS header
unicefkaarten.be: did not receive HSTS header
unicefkort.dk: did not receive HSTS header
unicooo.com: could not connect to host
unicorn.li: could not connect to host
unicorncloud.org: could not connect to host
unifiednetwork.me: could not connect to host
+uniformebateriasheliar.com.br: could not connect to host
uniformecomgas.com.br: could not connect to host
uniformehope.com.br: did not receive HSTS header
uniformehumboldt.com.br: did not receive HSTS header
@@ -15578,7 +15888,7 @@ unikrn.com: could not connect to host
unionstationapp.com: could not connect to host
unirenter.ru: did not receive HSTS header
unison.com: did not receive HSTS header
-unisyssecurity.com: did not receive HSTS header
+unisyssecurity.com: could not connect to host
unitedcyberdevelopment.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
unitlabs.net: could not connect to host
unitrade-425.co.za: did not receive HSTS header
@@ -15586,10 +15896,13 @@ university4industry.com: did not receive HSTS header
universogay.com: could not connect to host
univstore.win: could not connect to host
univz.com: could not connect to host
+unix.se: did not receive HSTS header
unixtime.pro: could not connect to host
unknownbreakup.com: max-age too low: 2592000
unknownphenomena.net: could not connect to host
+unlogis.ch: could not connect to host
unmanaged.space: could not connect to host
+uno.fi: did not receive HSTS header
unplugg3r.dk: could not connect to host
unpossible.xyz: could not connect to host
unravel.ie: could not connect to host
@@ -15616,12 +15929,13 @@ uprotect.it: could not connect to host
upstats.eu: could not connect to host
uptakedigital.com.au: max-age too low: 2592000
uptic.net: did not receive HSTS header
+uptimed.com: could not connect to host
+uptogood.org: could not connect to host
upupming.site: did not receive HSTS header
ur-lauber.de: did not receive HSTS header
urban-garden.lt: could not connect to host
urban-garden.lv: could not connect to host
urbanmic.com: could not connect to host
-urbanstylestaging.com: did not receive HSTS header
urbpic.com: could not connect to host
urcentral.org: could not connect to host
url.cab: could not connect to host
@@ -15647,12 +15961,15 @@ useevlo.com.br: could not connect to host
user-new.com: did not receive HSTS header
usercare.com: did not receive HSTS header
useresponse.com: did not receive HSTS header
-userify.com: max-age too low: 0
+userify.com: did not receive HSTS header
uslab.io: could not connect to host
usparklodging.com: did not receive HSTS header
usportsgo.com: could not connect to host
usr.nz: did not receive HSTS header
+usuluddin.ga: could not connect to host
utdscanner.com: did not receive HSTS header
+uteam.it: could not connect to host
+utilio.nl: max-age too low: 2592000
utilitronium-shockwave.com: could not connect to host
utleieplassen.no: could not connect to host
utopiagalaxy.space: could not connect to host
@@ -15681,7 +15998,8 @@ v0rtex.xyz: could not connect to host
v0tti.com: did not receive HSTS header
v12.co.uk: did not receive HSTS header
v1sit0r.ru: could not connect to host
-v2.pw: did not receive HSTS header
+v2.pw: could not connect to host
+v2bv.win: could not connect to host
v2ex.us: could not connect to host
v4s.ro: did not receive HSTS header
v4veedu.com: could not connect to host
@@ -15702,8 +16020,8 @@ vaddder.com: could not connect to host
vadennissanofhinesvilleparts.com: could not connect to host
vadik.me: could not connect to host
vadodesign.nl: did not receive HSTS header
-vagaerg.com: could not connect to host
-vagaerg.net: could not connect to host
+vagaerg.com: did not receive HSTS header
+vagaerg.net: did not receive HSTS header
vaibhavchatarkar.com: could not connect to host
val-sec.com: could not connect to host
valaeris.de: did not receive HSTS header
@@ -15732,6 +16050,7 @@ vanessabalibridal.com: could not connect to host
vanestack.com: could not connect to host
vanetv.com: could not connect to host
vangeluwedeberlaere.be: did not receive HSTS header
+vanhove.biz: could not connect to host
vanitas.xyz: did not receive HSTS header
vanitynailworkz.com: could not connect to host
vanlaanen.com: did not receive HSTS header
@@ -15749,6 +16068,8 @@ vastgoedcultuurfonds.nl: did not receive HSTS header
vastkustenrunt.se: did not receive HSTS header
vavai.net: did not receive HSTS header
vavouchers.com: could not connect to host
+vawlt.io: did not receive HSTS header
+vawltstorage.com: could not connect to host
vayaport.com: could not connect to host
vbest.net: could not connect to host
vbhelp.org: did not receive HSTS header
@@ -15771,6 +16092,7 @@ vega-rumia.com.pl: max-age too low: 2592000
vega.dyndns.info: could not connect to host
vegalayer.com: did not receive HSTS header
vegalengd.com: did not receive HSTS header
+vegane-proteine.com: could not connect to host
vegangaymer.blog: could not connect to host
veganosonline.com: could not connect to host
vegasdocs.com: did not receive HSTS header
@@ -15802,7 +16124,6 @@ veraandsteve.date: could not connect to host
verdeandco.co.uk: could not connect to host
verifiedinvesting.com: could not connect to host
verifikatorindonesia.com: could not connect to host
-veriny.tf: could not connect to host
veriomed.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
veristor.com: did not receive HSTS header
verliefde-jongens.nl: could not connect to host
@@ -15812,6 +16133,7 @@ versbeton.nl: max-age too low: 864000
versfin.net: could not connect to host
versia.ru: did not receive HSTS header
versolslapeyre.fr: did not receive HSTS header
+veryapt.com: did not receive HSTS header
veryhax.de: could not connect to host
veryyounglesbians.com: could not connect to host
ves.vn.ua: could not connect to host
@@ -15826,11 +16148,9 @@ vfree.org: could not connect to host
vgatest.nl: could not connect to host
vglimg.com: could not connect to host
vhost.co.id: could not connect to host
-via-shire-krug.ru: could not connect to host
viabemestar.com.br: could not connect to host
viadeux.com: did not receive HSTS header
vialibido.com.br: could not connect to host
-viasinc.com: did not receive HSTS header
vibrashop.com.br: did not receive HSTS header
vicenage.com: could not connect to host
viceversa.xyz: did not receive HSTS header
@@ -15842,8 +16162,9 @@ victoriaville.ca: did not receive HSTS header
vid.me: did not receive HSTS header
vidb.me: could not connect to host
vidbuchanan.co.uk: did not receive HSTS header
-viddiaz.com: did not receive HSTS header
+viddiaz.com: could not connect to host
videnskabsklubben.dk: did not receive HSTS header
+videoload.co: could not connect to host
videomuz.com: could not connect to host
videorullen.se: could not connect to host
videosxgays.com: could not connect to host
@@ -15861,6 +16182,7 @@ viennan.net: could not connect to host
vietnam-lifer.com: could not connect to host
vietnamchevrolet.net: did not receive HSTS header
vietnamphotographytours.com: did not receive HSTS header
+vieux.pro: could not connect to host
viewsea.com: max-age too low: 0
vigilo.cf: could not connect to host
vigilo.ga: could not connect to host
@@ -15872,6 +16194,7 @@ viktorsvantesson.net: did not receive HSTS header
viladochurrasco.com.br: could not connect to host
vilaydin.com: did not receive HSTS header
vilight.com.br: could not connect to host
+villa-anna-cilento.de: could not connect to host
villa-bellarte.de: did not receive HSTS header
villacarmela.com.br: did not receive HSTS header
villainsclothing.com.au: could not connect to host
@@ -15895,6 +16218,7 @@ vinesauce.info: could not connect to host
vinetalk.net: could not connect to host
vinicius.sl: could not connect to host
viniferawineclub.com: did not receive HSTS header
+vinihk.com: could not connect to host
vinogradovka.com: did not receive HSTS header
vio.no: did not receive HSTS header
violenceinterrupted.org: did not receive HSTS header
@@ -15913,9 +16237,9 @@ virginiacrimeanalysisnetwork.org: did not receive HSTS header
viris.si: max-age too low: 536000
virtualhealth.com: did not receive HSTS header
virtualstrongbox.ca: did not receive HSTS header
-virtusaero.com: could not connect to host
visa-shinsei.com: did not receive HSTS header
visanhigia.com: could not connect to host
+visaya.com.co: could not connect to host
viserproject.com: did not receive HSTS header
vision-painting.com: did not receive HSTS header
visiongamestudios.com: could not connect to host
@@ -15930,6 +16254,7 @@ vissersgrootboek.nl: did not receive HSTS header
vistarait.com: could not connect to host
visualvotes.co.uk: could not connect to host
vitagenda.nl: could not connect to host
+vital-tel.co.uk: did not receive HSTS header
vitalamin.at: could not connect to host
vitalamin.ch: could not connect to host
vitalita.cz: did not receive HSTS header
@@ -15945,7 +16270,7 @@ vivasports.com.br: could not connect to host
vivocloud.com: could not connect to host
vivoregularizafacil.com.br: did not receive HSTS header
vivoseg.com: could not connect to host
-vivremoinscher.fr: did not receive HSTS header
+vivremoinscher.fr: could not connect to host
viza.io: could not connect to host
vizeat.com: did not receive HSTS header
vkino.com: could not connect to host
@@ -15954,6 +16279,8 @@ vladimiroff.org: did not receive HSTS header
vldkn.net: could not connect to host
vleij.family: could not connect to host
vlogge.com: did not receive HSTS header
+vlsk.eu: could not connect to host
+vlvvl.com: could not connect to host
vlzbazar.ru: could not connect to host
vmrdev.com: could not connect to host
vmstan.com: did not receive HSTS header
@@ -15963,7 +16290,8 @@ vocalsynth.space: could not connect to host
voceinveste.com: did not receive HSTS header
vogt.tech: could not connect to host
voicesuk.co.uk: did not receive HSTS header
-void-it.nl: could not connect to host
+void-it.nl: did not receive HSTS header
+voidark.com: could not connect to host
voidi.ca: could not connect to host
voidserv.net: could not connect to host
voidshift.com: could not connect to host
@@ -15972,11 +16300,13 @@ voilodaisuki.club: could not connect to host
voipkb.com: did not receive HSTS header
voiro.club: could not connect to host
voirodaisuki.club: could not connect to host
+vokalsystem.com: did not receive HSTS header
volatimer.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
volbyzive.cz: did not receive HSTS header
volcain.io: could not connect to host
volcrado.com: could not connect to host
volkden.com: could not connect to host
+volkerwesselswave.nl: did not receive HSTS header
volkswurst.de: did not receive HSTS header
voltimax.com: did not receive HSTS header
voltotc.com: did not receive HSTS header
@@ -16027,25 +16357,29 @@ vrlaid.com: could not connect to host
vrobert.fr: could not connect to host
vrsgames.com.mx: did not receive HSTS header
vrtak-cz.net: could not connect to host
+vrtouring.org: could not connect to host
vrzl.pro: could not connect to host
vsamsonov.com: could not connect to host
vsc-don-stocksport.de: did not receive HSTS header
vsestiralnie.com: did not receive HSTS header
+vtuber-schedule.info: could not connect to host
vucdn.com: could not connect to host
-vulndetect.com: did not receive HSTS header
vulnerabilities.io: could not connect to host
vuosaarenmontessoritalo.fi: did not receive HSTS header
vvl.me: did not receive HSTS header
+vw-touranclub.cz: could not connect to host
vwoforangeparts.com: could not connect to host
vwt-event.nl: could not connect to host
vxapps.com: could not connect to host
vxml.club: could not connect to host
+vxz.me: could not connect to host
vykup-car.ru: could not connect to host
vynedmusic.com: could not connect to host
vyshivanochka.in.ua: could not connect to host
vysvetluju.cz: could not connect to host
vyvybean.cf: could not connect to host
vyvygen.com: did not receive HSTS header
+vzce.cn: could not connect to host
vzk.io: could not connect to host
w10club.com: could not connect to host
w2gshop.com.br: could not connect to host
@@ -16058,6 +16392,7 @@ w9rld.com: did not receive HSTS header
wabifoggynuts.com: could not connect to host
wachtwoordencheck.nl: could not connect to host
waelti.xxx: could not connect to host
+wafa4hw.com: could not connect to host
wafairhaven.com.au: did not receive HSTS header
wafni.com: could not connect to host
wai-in.com: could not connect to host
@@ -16083,6 +16418,7 @@ wanda79.com: could not connect to host
wanda96.com: could not connect to host
wanda97.com: could not connect to host
wanda98.com: could not connect to host
+wandercue.com: did not receive HSTS header
wangjiatun.com.tw: could not connect to host
wangkezun.com: could not connect to host
wangqiliang.xn--fiqs8s: could not connect to host
@@ -16092,13 +16428,12 @@ wantshow.com.br: did not receive HSTS header
wanybug.cn: could not connect to host
wapgu.cc: could not connect to host
wapjt.cn: could not connect to host
-wapking.co: could not connect to host
wapking.live: could not connect to host
wapt.fr: did not receive HSTS header
warandpeace.xyz: could not connect to host
warcraftjournal.org: could not connect to host
wardsegers.be: did not receive HSTS header
-warehost.de: did not receive HSTS header
+warehost.de: could not connect to host
warekon.com: could not connect to host
warekon.dk: could not connect to host
warezaddict.com: could not connect to host
@@ -16112,10 +16447,10 @@ warsentech.com: did not receive HSTS header
warumsuchen.at: did not receive HSTS header
wasatchconstables.com: did not receive HSTS header
wasatchcrest.com: did not receive HSTS header
-wasfuereintheater.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
wasserburg.dk: did not receive HSTS header
wassim.is: did not receive HSTS header
watashi.bid: could not connect to host
+watchinventory.com: could not connect to host
watchium.com: did not receive HSTS header
watchtv-online.pw: max-age too low: 0
watchweasel.com: could not connect to host
@@ -16133,13 +16468,17 @@ wbit.co.il: did not receive HSTS header
wbut.ml: could not connect to host
wdesk.com: did not receive HSTS header
wdmg.com.ua: max-age too low: 604800
+wdrl.info: did not receive HSTS header
wdt.io: did not receive HSTS header
we.serveftp.net: could not connect to host
+wealthcentral.com.au: did not receive HSTS header
wealthformyhealth.com: did not receive HSTS header
wear2work.nl: could not connect to host
weareincognito.org: could not connect to host
wearewithyou.org: could not connect to host
+weather-and-climate.com: did not receive HSTS header
weaverhairextensions.nl: could not connect to host
+web-adminy.co.uk: could not connect to host
web-advisor.co.uk: could not connect to host
web-demarche.com: could not connect to host
web-industry.fr: could not connect to host
@@ -16161,13 +16500,12 @@ webdesign-kronberg.de: did not receive HSTS header
webdesignssussex.co.uk: could not connect to host
webdev-quiz.de: did not receive HSTS header
webdev.mobi: could not connect to host
-webdevxp.com: could not connect to host
webdosh.com: did not receive HSTS header
webeconomia.it: did not receive HSTS header
webelement.sk: did not receive HSTS header
weberjulia.com: could not connect to host
webfronten.dk: did not receive HSTS header
-webgaff.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+webgaff.com: could not connect to host
webgreat.de: max-age too low: 3600
webhackspro.com: could not connect to host
webhelyesarcu.hu: did not receive HSTS header
@@ -16194,7 +16532,6 @@ webnosql.com: could not connect to host
webperformance.ru: could not connect to host
webproshosting.tk: could not connect to host
webpublica.pt: could not connect to host
-webqueens.com: could not connect to host
webreslist.com: could not connect to host
websandbox.uk: could not connect to host
websectools.com: could not connect to host
@@ -16202,7 +16539,6 @@ webseo.de: did not receive HSTS header
websiteadvice.com.au: did not receive HSTS header
websitedesign.bg: did not receive HSTS header
websitesabq.com: did not receive HSTS header
-websmartmedia.co.uk: did not receive HSTS header
webspotter.nl: could not connect to host
webstationservice.fr: could not connect to host
webstellung.com: could not connect to host
@@ -16212,7 +16548,7 @@ webtar.info: could not connect to host
webtech.com.br: could not connect to host
webtechgadgetry.com: could not connect to host
webtek.nu: could not connect to host
-webthings.com.br: did not receive HSTS header
+webthings.com.br: could not connect to host
webtiles.co.uk: could not connect to host
webtobesocial.de: could not connect to host
webukhost.com: could not connect to host
@@ -16220,7 +16556,6 @@ webuni.hu: did not receive HSTS header
webveloper.com: did not receive HSTS header
webwork.pw: could not connect to host
webypass.xyz: could not connect to host
-webz.one: could not connect to host
webzanem.com: could not connect to host
wecanfindit.co.za: could not connect to host
wecanvisit.com: could not connect to host
@@ -16230,16 +16565,18 @@ weddingibiza.nl: could not connect to host
wedotrains.club: did not receive HSTS header
weebsr.us: could not connect to host
weed.ren: could not connect to host
-weedlandia.org: did not receive HSTS header
+weedlandia.org: could not connect to host
weekly.fyi: could not connect to host
-weerstationgiethoorn.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
+weeknummers.be: could not connect to host
wegenaer.nl: could not connect to host
+wegner.no: could not connect to host
weicn.org: did not receive HSTS header
weightreviews.com: did not receive HSTS header
weiji.ga: could not connect to host
weiler.xyz: could not connect to host
weinhandel-preissler.de: could not connect to host
weirdserver.com: could not connect to host
+weixiaojun.org: could not connect to host
weiyuz.com: max-age too low: 6585555
weizenke.im: could not connect to host
wejumall.com: could not connect to host
@@ -16253,7 +16590,7 @@ welldrake.com: could not connect to host
wellmarts.com: did not receive HSTS header
wellness.so: could not connect to host
wellopp.com: did not receive HSTS header
-wellproducedwines.com: did not receive HSTS header
+wellproducedwines.com: could not connect to host
wellsplasticsurgery.com: did not receive HSTS header
wellspringcamps.com: did not receive HSTS header
welovejobs.com: did not receive HSTS header
@@ -16264,7 +16601,6 @@ weltentreff.com: could not connect to host
weltmeisterschaft.net: could not connect to host
weme.eu: could not connect to host
wendalyncheng.com: did not receive HSTS header
-wendigo.pl: could not connect to host
wengebowuguan.com: could not connect to host
wenode.net: did not receive HSTS header
wentu.ml: could not connect to host
@@ -16300,7 +16636,7 @@ wetthost.com: could not connect to host
wetttipps.com: could not connect to host
wetttipps.de: could not connect to host
wevahoo.com: could not connect to host
-wevg.org: could not connect to host
+wevg.org: did not receive HSTS header
wevolver.com: did not receive HSTS header
wewillgo.com: could not connect to host
wewillgo.org: did not receive HSTS header
@@ -16326,15 +16662,17 @@ whilsttraveling.com: could not connect to host
whisker.network: could not connect to host
whiskyglazen.nl: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
whistler-transfers.com: did not receive HSTS header
-whitehat.id: did not receive HSTS header
+whitehat.id: could not connect to host
whiterabbit.org: did not receive HSTS header
whiterabbitcakery.com: could not connect to host
whiteroom.agency: did not receive HSTS header
whitestagforge.com: did not receive HSTS header
+whitewinterwolf.com: could not connect to host
whoclicks.net: could not connect to host
whoisamitsingh.com: did not receive HSTS header
whoisapi.online: could not connect to host
wholebites.com: max-age too low: 7889238
+wholelotofbounce.co.uk: did not receive HSTS header
wholikes.us: could not connect to host
whoneedstobeprimaried.today: could not connect to host
whoownsmyavailability.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
@@ -16353,10 +16691,12 @@ wifimapa.cz: could not connect to host
wiiaam.com: could not connect to host
wiiforum.no: did not receive HSTS header
wiire.me: could not connect to host
+wikibulz.com: did not receive HSTS header
wikiclash.info: could not connect to host
wikipeter.nl: did not receive HSTS header
-wikisports.eu: could not connect to host
+wikisports.eu: did not receive HSTS header
wild-emotion-events.de: could not connect to host
+wild-turtles.com: did not receive HSTS header
wildbee.org: could not connect to host
wildbirds.dk: did not receive HSTS header
wildcard.hu: could not connect to host
@@ -16367,11 +16707,10 @@ wilhelm-nathan.de: could not connect to host
willcipriano.com: could not connect to host
willeminfo.ch: did not receive HSTS header
willemsjort.be: did not receive HSTS header
+william.gg: did not receive HSTS header
william.si: did not receive HSTS header
williamboundsltd.com: could not connect to host
-williamle.com: did not receive HSTS header
williamsapiens.com: could not connect to host
-williamsonshore.com: max-age too low: 0
williamtm.design: could not connect to host
willkommen-fuerstenberg.de: could not connect to host
willosagiede.com: did not receive HSTS header
@@ -16382,6 +16721,7 @@ windholz.us: could not connect to host
windowsforum.com: did not receive HSTS header
windowstech.it: did not receive HSTS header
windowwellexperts.com: did not receive HSTS header
+windrunner.se: could not connect to host
winds.cf: could not connect to host
windwoodmedia.com: could not connect to host
windwoodweb.com: could not connect to host
@@ -16389,7 +16729,7 @@ wine-importer.ru: did not receive HSTS header
winebid.com: could not connect to host
winecodeavocado.com: could not connect to host
wineworksonline.com: could not connect to host
-winfield.me.uk: did not receive HSTS header
+winfield.me.uk: could not connect to host
winfieldchen.me: did not receive HSTS header
winged.io: did not receive HSTS header
wingos.net: could not connect to host
@@ -16397,6 +16737,7 @@ wingumd.net: could not connect to host
winnersports.co: could not connect to host
winpack.cf: could not connect to host
winpack.eu.org: could not connect to host
+winportal.cz: did not receive HSTS header
winsec.nl: could not connect to host
winshiplending.com: could not connect to host
winsufi.biz: could not connect to host
@@ -16406,6 +16747,7 @@ wipply.com: could not connect to host
wirbatz.org: did not receive HSTS header
wirc.gr: could not connect to host
wiredcut.com: did not receive HSTS header
+wireframesoftware.com: could not connect to host
wireless-emergency-stop.com: did not receive HSTS header
wirelesswatch.com.au: did not receive HSTS header
wiretrip.io: did not receive HSTS header
@@ -16418,6 +16760,7 @@ wishesbee.com: could not connect to host
wissl.org: could not connect to host
witae.com: could not connect to host
withgoogle.com: did not receive HSTS header (error ignored - included regardless)
+withlocals.com: did not receive HSTS header
withmy.beer: could not connect to host
withoutacrystalball.com: did not receive HSTS header
withustrading.com: did not receive HSTS header
@@ -16442,6 +16785,7 @@ wnmm.nl: could not connect to host
wnnc.co.uk: could not connect to host
wobblylang.org: could not connect to host
wochenentwicklung.com: did not receive HSTS header
+wochennummern.de: could not connect to host
wod-stavby.cz: could not connect to host
wodice.com: could not connect to host
wohnungsbau-ludwigsburg.de: did not receive HSTS header
@@ -16451,6 +16795,7 @@ woktoss.com: could not connect to host
wolfemg.com: could not connect to host
wolfenland.net: did not receive HSTS header
wolfesden.com: could not connect to host
+wolfgang-braun.info: could not connect to host
wolfram.io: could not connect to host
wolkenspeicher.org: could not connect to host
wollekorb.de: could not connect to host
@@ -16461,6 +16806,7 @@ wonderfall.xyz: could not connect to host
wonderhost.info: could not connect to host
wondershift.biz: did not receive HSTS header
wondy.com: could not connect to host
+woodcoin.org: could not connect to host
woodlandschurch.net: max-age too low: 43200
woodmafia.com.au: could not connect to host
woodworkertip.com: did not receive HSTS header
@@ -16471,11 +16817,12 @@ wootton95.com: could not connect to host
wooviet.com: could not connect to host
wopen.org: could not connect to host
wordbits.net: did not receive HSTS header
-wordlessecho.com: could not connect to host
+wordlessecho.com: did not receive HSTS header
wordplay.one: could not connect to host
wordpress-test.site: could not connect to host
-wordpresspro.cl: did not receive HSTS header
+wordpresspro.cl: could not connect to host
wordsofamaster.com: could not connect to host
+worf.in: could not connect to host
work-and-jockel.de: did not receive HSTS header
workemy.com: could not connect to host
workfone.io: could not connect to host
@@ -16489,7 +16836,9 @@ worldfree4.org: did not receive HSTS header
worldlist.org: could not connect to host
worldpovertysolutions.org: did not receive HSTS header
worldsbeststory.com: did not receive HSTS header
+worldsoccerclips.com: could not connect to host
worldwhisperer.net: could not connect to host
+wormdisk.net: could not connect to host
wormholevpn.net: could not connect to host
worshapp.com: did not receive HSTS header
wow-travel.eu: could not connect to host
@@ -16504,6 +16853,8 @@ wpblog.com.tw: could not connect to host
wpcarer.pro: could not connect to host
wpcheck.io: could not connect to host
wpcontrol.se: could not connect to host
+wpdesigner.ir: did not receive HSTS header
+wpenhance.com: could not connect to host
wpfast.net: could not connect to host
wpfortify.com: could not connect to host
wpg-inc.com: did not receive HSTS header
@@ -16527,6 +16878,7 @@ wrfu.co.nz: did not receive HSTS header
wriedts.de: did not receive HSTS header
wrightdoumawedding.com: could not connect to host
writeapp.me: did not receive HSTS header
+writemyessay.info: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
writemytermpapers.com: could not connect to host
writing-expert.com: could not connect to host
wrldevelopment.com: did not receive HSTS header
@@ -16538,16 +16890,18 @@ wsdcap.com: could not connect to host
wsor.group: did not receive HSTS header
wss.com.ve: could not connect to host
wsscompany.com.ve: could not connect to host
+wstudio.ch: could not connect to host
wsup.social: could not connect to host
wtwk.com: could not connect to host
wubify.com: did not receive HSTS header
wubocong.com: could not connect to host
wubthecaptain.eu: could not connect to host
wuchipc.com: could not connect to host
+wuerfelmail.de: could not connect to host
wufupay.com: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
wuhengmin.com: could not connect to host
wulpi.it: did not receive HSTS header
-wumai.cloud: did not receive HSTS header
+wumai.cloud: could not connect to host
wumbo.kiwi: could not connect to host
wundtherapie-schulung.de: could not connect to host
wurzelzwerg.net: could not connect to host
@@ -16555,6 +16909,7 @@ wusx.club: could not connect to host
wutianxian.com: did not receive HSTS header
wvr-law.de: did not receive HSTS header
wvw698.com: max-age too low: 2592000
+wwjd.dynu.net: could not connect to host
www-001133.com: could not connect to host
www-0385.com: could not connect to host
www-1116.com: could not connect to host
@@ -16567,7 +16922,8 @@ www-66136.com: did not receive HSTS header
www-68277.com: could not connect to host
www-746.com: could not connect to host
www-771122.com: did not receive HSTS header
-www-8003.com: could not connect to host
+www-8003.com: did not receive HSTS header
+www-8522.am: did not receive HSTS header
www-88599.com: did not receive HSTS header
www-8887999.com: could not connect to host
www-9995.com: could not connect to host
@@ -16588,7 +16944,6 @@ 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: 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.gpo.gov: did not receive HSTS header
@@ -16597,7 +16952,7 @@ www.icann.org: 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
-www.makeyourlaws.org: could not connect to host
+www.makeyourlaws.org: did not receive HSTS header
www.moneybookers.com: did not receive HSTS header
www.neonisi.com: could not connect to host
www.paycheckrecords.com: did not receive HSTS header
@@ -16605,12 +16960,13 @@ www.rme.li: did not receive HSTS header
www.sandbox.mydigipass.com: could not connect to host
www.simbolo.co.uk: could not connect to host
www.surfeasy.com: did not receive HSTS header
-www.viasinc.com: did not receive HSTS header
www.zenpayroll.com: did not receive HSTS header
www3.info: could not connect to host
+www68277.com: could not connect to host
wxrlab.com: could not connect to host
wxukang.cn: could not connect to host
wxyz.buzz: could not connect to host
+wxzm.sx: could not connect to host
wy6.org: did not receive HSTS header
wybmabiity.com: could not connect to host
wygluszanie.eu: could not connect to host
@@ -16618,8 +16974,7 @@ wylog.ph: could not connect to host
wyu.cc: could not connect to host
wyzphoto.nl: did not receive HSTS header
wyzwaniemilosci.com: could not connect to host
-wzrd.in: did not receive HSTS header
-x-iweb.ru: did not receive HSTS header
+x-iweb.ru: could not connect to host
x-pertservice.com: did not receive HSTS header
x-power-detox.com: could not connect to host
x-ripped-hd.com: could not connect to host
@@ -16630,14 +16985,14 @@ x2w.io: could not connect to host
x3led.com: could not connect to host
x509.pub: could not connect to host
x509.pw: could not connect to host
-x64architecture.com: could not connect to host
x69.biz: could not connect to host
x69x.net: could not connect to host
xanderweaver.com: did not receive HSTS header
xandocs.com: could not connect to host
xat.re: did not receive HSTS header
+xatr0z.org: could not connect to host
+xavier.is: could not connect to host
xavierbarroso.com: did not receive HSTS header
-xawen.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
xbc.nz: could not connect to host
xbind.io: could not connect to host
xchangeinfo.com: could not connect to host
@@ -16668,11 +17023,10 @@ xiaody.me: could not connect to host
xiaolan.me: could not connect to host
xiaolvmu.com: could not connect to host
xiaolvmu.me: could not connect to host
-xiaomionline24.pl: could not connect to host
xiaoxiao.im: could not connect to host
xiaxuejin.cn: could not connect to host
+xiazhanjian.com: could not connect to host
xilegames.com: could not connect to host
-xiliant.com: did not receive HSTS header
ximage.me: could not connect to host
ximens.me: could not connect to host
xinbiji.cn: could not connect to host
@@ -16687,12 +17041,12 @@ xisa.it: could not connect to host
xivpn.com: could not connect to host
xiyu.it: did not receive HSTS header
xiyu.moe: did not receive HSTS header
-xjoi.net: could not connect to host
+xjoi.net: did not receive HSTS header
xlaff.com: could not connect to host
xlboo.com: did not receive HSTS header
xlfblog.com: did not receive HSTS header
xlinar.com: could not connect to host
-xmerak.com: could not connect to host
+xmerak.com: did not receive HSTS header
xmiui.com: could not connect to host
xmonk.org: did not receive HSTS header
xmr.my: could not connect to host
@@ -16733,7 +17087,6 @@ xn--e--4h4axau6ld4lna0g.com: could not connect to host
xn--e--ig4a4c3f6bvc5et632i.com: could not connect to host
xn--e--k83a5h244w54gttk.xyz: could not connect to host
xn--ekr87w7se89ay98ezcs.biz: did not receive HSTS header
-xn--gfrr-7qa.li: could not connect to host
xn--gmq92k.nagoya: could not connect to host
xn--grnderlehrstuhl-0vb.de: could not connect to host
xn--hfk-allgu-schwaben-stb.de: could not connect to host
@@ -16748,7 +17101,6 @@ xn--lgb3a8bcpn.gq: could not connect to host
xn--lgb3a8bcpn.ml: could not connect to host
xn--lna-2000-9za.nu: could not connect to host
xn--lna-4000-9za.nu: could not connect to host
-xn--lnakuten-9za.com: did not receive HSTS header
xn--ls8hi7a.tk: could not connect to host
xn--maraa-rta.org: could not connect to host
xn--mensenges-o1a8c.gq: could not connect to host
@@ -16767,9 +17119,7 @@ xn--r77hya.ga: could not connect to host
xn--rt-cja.eu: could not connect to host
xn--sdkwa9azd389v01ya.com: did not receive HSTS header
xn--srenpind-54a.dk: could not connect to host
-xn--sz8h.ml: could not connect to host
xn--t8j2a3042d.xyz: could not connect to host
-xn--t8j4aa4nyhxa7duezbl49aqg5546e264d.net: could not connect to host
xn--tda.ml: could not connect to host
xn--thorme-6uaf.ca: could not connect to host
xn--u9jy16ncfao19mo8i.nagoya: could not connect to host
@@ -16782,7 +17132,6 @@ xn--vck8crcu789ajtaj92eura.xyz: could not connect to host
xn--w22a.jp: could not connect to host
xn--werner-schffer-fib.de: did not receive HSTS header
xn--wmq.jp: could not connect to host
-xn--wq9h.ml: could not connect to host
xn--xdtx3pfzbiw3ar8e7yedqrhui.com: could not connect to host
xn--xz1a.jp: could not connect to host
xn--y8j2eb5631a4qf5n0h.com: could not connect to host
@@ -16806,9 +17155,9 @@ xpj.bet: did not receive HSTS header
xpj.sx: could not connect to host
xpjcunkuan.com: could not connect to host
xpressprint.com.br: max-age too low: 90
-xpwn.cz: could not connect to host
-xq55.com: did not receive HSTS header
+xpwn.cz: did not receive HSTS header
xqin.net: could not connect to host
+xroot.org: did not receive HSTS header
xrp.pw: could not connect to host
xscancun.com: could not connect to host
xscapers.com: did not receive HSTS header
@@ -16821,6 +17170,7 @@ 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
xtrim.ru: did not receive HSTS header
xtzone.be: could not connect to host
xuanmeishe.top: could not connect to host
@@ -16829,9 +17179,10 @@ xujan.com: could not connect to host
xuntaosms.com: could not connect to host
xupeng.me: did not receive HSTS header
xuyh0120.win: did not receive HSTS header
-xxbase.com: did not receive HSTS header
+xxbase.com: could not connect to host
xxx3dbdsm.com: could not connect to host
xxxladyboysporn.com: could not connect to host
+xxxred.net: could not connect to host
xy1919.com: could not connect to host
xy6161.com: could not connect to host
xy6262.com: could not connect to host
@@ -16843,6 +17194,7 @@ xyndrac.net: max-age too low: 2592000
xynex.us: could not connect to host
xynta.ch: could not connect to host
xzoneadventure.com: did not receive HSTS header
+xzy.one: did not receive HSTS header
y-o-w.com: did not receive HSTS header
y-s.pw: could not connect to host
y3451.com: could not connect to host
@@ -16855,15 +17207,13 @@ yahoo.ax: could not connect to host
yalla.jp: did not receive HSTS header
yamamo10.com: could not connect to host
yameveo.com: did not receive HSTS header
-yangmaodang.org: did not receive HSTS header
yanwh.xyz: did not receive HSTS header
yaoidreams.com: could not connect to host
yaporn.tv: could not connect to host
-yarchives.jp: could not connect to host
+yarchives.jp: max-age too low: 0
yard-fu.com: could not connect to host
yardbird.us: could not connect to host
yarnhookup.com: did not receive HSTS header
-yarogneva.ru: could not connect to host
yasinaydin.net: did not receive HSTS header
yasutomonodokoiko.com: did not receive HSTS header
yaucy.win: could not connect to host
@@ -16884,7 +17234,6 @@ 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
-yenpape.com: did not receive HSTS header
yepbitcoin.com: could not connect to host
yesdevnull.net: did not receive HSTS header
yesfone.com.br: could not connect to host
@@ -16896,10 +17245,10 @@ ygcdyf.com: did not receive HSTS header
yggdar.ga: could not connect to host
yh35.net: max-age too low: 86400
yhori.xyz: could not connect to host
-yhrd.org: did not receive HSTS header
yibaoweilong.top: could not connect to host
yibin0831.com: could not connect to host
yikzu.cn: could not connect to host
+yimgo.fr: could not connect to host
yin.roma.it: did not receive HSTS header
yin8888.tv: did not receive HSTS header
ying299.com: could not connect to host
@@ -16908,7 +17257,6 @@ yinga.ga: did not receive HSTS header
yingsuo.ltd: could not connect to host
yingyj.com: did not receive HSTS header
yinhe12.net: did not receive HSTS header
-yipingguo.com: did not receive HSTS header
yippie.nl: could not connect to host
yizhu.com: could not connect to host
yjsoft.me: could not connect to host
@@ -16943,7 +17291,7 @@ youcaitian.com: did not receive HSTS header
youcancraft.de: could not connect to host
youcanfuckoff.xyz: could not connect to host
youcontrol.ru: could not connect to host
-youdowell.com: could not connect to host
+youdowell.com: did not receive HSTS header
youfencun.com: did not receive HSTS header
youjizz.bz: could not connect to host
youlend.com: did not receive HSTS header
@@ -16953,12 +17301,11 @@ youmonit.me: could not connect to host
youngandunited.nl: did not receive HSTS header
younl.net: could not connect to host
youon.tokyo: did not receive HSTS header
-youran.me: could not connect to host
yourbapp.ch: could not connect to host
yourgame.co.il: did not receive HSTS header
youri.me: could not connect to host
yourlovesong.com.mx: could not connect to host
-yourname.xyz: could not connect to host
+yourname.xyz: did not receive HSTS header
yoursbookstore.jp: max-age too low: 0
yoursecondphone.co: could not connect to host
yourself.today: could not connect to host
@@ -16973,10 +17320,13 @@ youtubeviews.ml: could not connect to host
youwatchporn.com: could not connect to host
youyoulemon.com: could not connect to host
ypcs.fi: did not receive HSTS header
+ypiresia.fr: could not connect to host
yryz.net: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsISiteSecurityService.processHeader]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame :: /home/trava90/REPO/UXP/security/manager/tools/getHSTSPreloadList.js :: processStsHeader :: line 131" data: no]
-ysicing.net: could not connect to host
yslbeauty.com: did not receive HSTS header
yspeo.com: max-age too low: 2592000
+ytb.zone: did not receive HSTS header
+ytbmp3.com: did not receive HSTS header
+ytbmp4.com: did not receive HSTS header
ytcuber.xyz: could not connect to host
ythyth.com: max-age too low: 2592000
ytvwld.de: did not receive HSTS header
@@ -16990,6 +17340,7 @@ yugege.cf: could not connect to host
yuhen.ru: did not receive HSTS header
yui.cat: did not receive HSTS header
yuka.one: could not connect to host
+yuki-portfolio.com: did not receive HSTS header
yukijinji.moe: did not receive HSTS header
yukiminami.net: could not connect to host
yukimochi.com: could not connect to host
@@ -17013,6 +17364,7 @@ yuqi.me: could not connect to host
yurinet.org: could not connect to host
yuriykuzmin.com: did not receive HSTS header
yutabon.com: could not connect to host
+yutaron.tokyo: did not receive HSTS header
yuushou.com: could not connect to host
yux.fr: could not connect to host
yux.io: did not receive HSTS header
@@ -17020,6 +17372,9 @@ yuxingxin.com: did not receive HSTS header
yuzu.tk: did not receive HSTS header
ywei.org: could not connect to host
ywyz.tech: could not connect to host
+yya.bid: could not connect to host
+yya.men: could not connect to host
+yyrss.com: could not connect to host
z-coder.com: could not connect to host
z0rro.net: could not connect to host
z33.ch: did not receive HSTS header
@@ -17028,16 +17383,17 @@ z3liff.com: could not connect to host
z3liff.net: could not connect to host
zacharopoulos.me: could not connect to host
zachbolinger.com: could not connect to host
+zachpeters.org: did not receive HSTS header
zadieheimlich.com: did not receive HSTS header
+zadroweb.com: did not receive HSTS header
zaem.tv: could not connect to host
zahnrechner-staging.azurewebsites.net: could not connect to host
zahyantechnologies.com: did not receive HSTS header
-zaidan.de: could not connect to host
-zaidan.eu: could not connect to host
-zaidanfood.com: could not connect to host
-zaidanfood.eu: could not connect to host
-zaidanlebensmittelhandel.de: could not connect to host
-zakoncontrol.com: did not receive HSTS header
+zaidan.de: did not receive HSTS header
+zaidan.eu: did not receive HSTS header
+zaidanfood.com: did not receive HSTS header
+zaidanfood.eu: did not receive HSTS header
+zaidanlebensmittelhandel.de: did not receive HSTS header
zalan.do: could not connect to host
zalohovaniburian.cz: could not connect to host
zamis.net: did not receive HSTS header
@@ -17049,6 +17405,7 @@ zaoext.com: could not connect to host
zaoshanghao-dajia.rhcloud.com: could not connect to host
zap.yt: could not connect to host
zapatoshechoamano.pe: did not receive HSTS header
+zapmaster14.com: could not connect to host
zargaripour.com: did not receive HSTS header
zarooba.com: could not connect to host
zavca.com: did not receive HSTS header
@@ -17075,7 +17432,7 @@ zelfmoord.ga: could not connect to host
zelfstandigemakelaars.net: could not connect to host
zellari.ru: could not connect to host
zeloz.xyz: could not connect to host
-zenghx.tk: could not connect to host
+zenfusion.fr: could not connect to host
zenhaiku.com: could not connect to host
zeno-system.com: did not receive HSTS header
zenpayroll.com: did not receive HSTS header
@@ -17088,7 +17445,6 @@ zentralwolke.de: did not receive HSTS header
zenvite.com: could not connect to host
zenwears.com: could not connect to host
zenycosta.com: could not connect to host
-zeparadox.com: did not receive HSTS header
zepect.com: did not receive HSTS header
zera.com.au: could not connect to host
zerekin.net: max-age too low: 86400
@@ -17115,7 +17471,7 @@ zh1.li: could not connect to host
zhang.wtf: could not connect to host
zhangcheng.org: did not receive HSTS header
zhangruilin.com: did not receive HSTS header
-zhangsir.net: could not connect to host
+zhangsir.net: did not receive HSTS header
zhaochen.xyz: could not connect to host
zhaojin97.cn: could not connect to host
zhendingresources.com: did not receive HSTS header
@@ -17126,6 +17482,7 @@ zhihua-lai.com: did not receive HSTS header
zhiin.net: could not connect to host
zhikin.com: could not connect to host
zhimajk.com: could not connect to host
+zhiwei.me: did not receive HSTS header
zhome.info: could not connect to host
zhoujiashu.com: could not connect to host
zhuji.com: could not connect to host
@@ -17133,13 +17490,14 @@ zhuji.com.cn: could not connect to host
zhuji5.com: could not connect to host
zhujicaihong.com: could not connect to host
zhuweiyou.com: did not receive HSTS header
-zi.is: could not connect to host
zi0r.com: did not receive HSTS header
zian.online: could not connect to host
zicklam.com: could not connect to host
zigcore.com.br: could not connect to host
zii.bz: could not connect to host
zikirakhirzaman.com: could not connect to host
+zilon.com.co: did not receive HSTS header
+zimiao.moe: could not connect to host
zinc-x.com: did not receive HSTS header
zinenapse.info: could not connect to host
zippy-download.com: could not connect to host
@@ -17198,19 +17556,20 @@ zq789.com: could not connect to host
zqhong.com: could not connect to host
zqjs.tk: could not connect to host
zqwqz.com: could not connect to host
+zrhdwz.cn: could not connect to host
zrkr.de: could not connect to host
zrn.in: did not receive HSTS header
ztan.tk: could not connect to host
ztcaoll222.cn: could not connect to host
ztytian.com: could not connect to host
zuan-in.com: could not connect to host
-zubro.net: could not connect to host
zuckerfloh.de: did not receive HSTS header
zudomc.me: could not connect to host
zuehlcke.de: could not connect to host
zukix.com: could not connect to host
zulu7.com: did not receive HSTS header
zunftmarke.de: did not receive HSTS header
+zurickrelogios.com.br: did not receive HSTS header
zutsu-raku.com: did not receive HSTS header
zuviel.space: could not connect to host
zvejonys.lt: did not receive HSTS header
diff --git a/security/manager/ssl/nsSTSPreloadList.inc b/security/manager/ssl/nsSTSPreloadList.inc
index 8dab9a1ee..52eea0cb3 100644
--- a/security/manager/ssl/nsSTSPreloadList.inc
+++ b/security/manager/ssl/nsSTSPreloadList.inc
@@ -8,7 +8,7 @@
/*****************************************************************************/
#include <stdint.h>
-const PRTime gPreloadListExpirationTime = INT64_C(1547572131850000);
+const PRTime gPreloadListExpirationTime = INT64_C(1549103672034000);
class nsSTSPreload
{
@@ -61,18 +61,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "026122.com", true },
{ "02638.net", true },
{ "02smh.com", true },
- { "0311buy.cn", true },
{ "03170317.com", true },
{ "0391315.com", true },
{ "046569.com", true },
- { "04sun.com", true },
{ "050.ca", true },
{ "050media.nl", true },
{ "0511315.net", true },
+ { "0513c.com", true },
{ "0573wk.com", true },
{ "06091994.xyz", true },
{ "06se.com", true },
- { "07733.win", true },
{ "0788yh.com", true },
{ "0792112.com", true },
{ "0809yh.com", true },
@@ -101,7 +99,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "083912.com", true },
{ "083957.com", true },
{ "083960.com", true },
- { "083962.com", true },
{ "083965.com", true },
{ "083967.com", true },
{ "09115.com", true },
@@ -142,6 +139,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "100-downloads.com", true },
{ "10000v.ru", true },
{ "1000minds.com", true },
+ { "1000serien.com", true },
{ "1001carats.fr", true },
{ "1001kartini.com", true },
{ "1001kerstpakketten.com", false },
@@ -174,18 +172,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "10og.de", true },
{ "10ppm.com", true },
{ "10seos.com", true },
- { "1100.so", true },
{ "110110110.net", true },
{ "112112112.net", true },
{ "112app.nl", true },
{ "112hz.com", true },
{ "113113113.net", true },
- { "114514ss.com", true },
{ "1177107.com", true },
{ "118118118.net", true },
{ "11dzon.com", true },
{ "11loc.de", true },
- { "11scc.com", true },
{ "11thstreetcoffee.com", true },
{ "11urss.com", true },
{ "1212873467.rsc.cdn77.org", true },
@@ -257,6 +252,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "156433.com", true },
{ "1590284872.rsc.cdn77.org", true },
{ "1600esplanade.com", true },
+ { "160887.com", true },
{ "1644091933.rsc.cdn77.org", true },
{ "1661237.com", true },
{ "166166.com", true },
@@ -285,7 +281,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "1a-werkstattgeraete.de", true },
{ "1ab-machinery.com", true },
{ "1aim.com", true },
- { "1b1.pl", true },
{ "1c-power.ru", true },
{ "1cover.co.nz", true },
{ "1cover.com.au", true },
@@ -313,11 +308,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "1password.com", true },
{ "1password.eu", true },
{ "1px.tv", true },
- { "1q2w.nl", true },
{ "1r.is", true },
{ "1rs.nl", true },
{ "1salland.nl", true },
{ "1scope.com", true },
+ { "1se.co", true },
{ "1se2or3.com", true },
{ "1st-bounce.co.uk", true },
{ "1st-community.de", true },
@@ -331,18 +326,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "1wl.uk", true },
{ "2.wtf", true },
{ "200.network", true },
- { "200fcw.com", true },
{ "2048-spiel.de", true },
{ "20at.com", true },
{ "20denier.com", true },
- { "21.co.uk", true },
{ "215dy.net", true },
{ "21sthammersmith.org.uk", true },
{ "21x9.org", true },
{ "2222yh.com", true },
{ "22digital.agency", true },
- { "22scc.com", true },
{ "230beats.com", true },
+ { "23333.link", true },
+ { "2333666.xyz", true },
{ "2333blog.com", true },
{ "233abc.com", true },
{ "233blog.com", true },
@@ -351,12 +345,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "233hugo.com", true },
{ "233vps.com", true },
{ "24-7.jp", true },
+ { "245meadowvistaway.com", true },
{ "246060.ru", true },
{ "247exchange.com", true },
{ "247healthshop.com", true },
{ "247medplan.com", true },
{ "24dian30.com", true },
{ "24hour-locksmithsanantonio.com", true },
+ { "24hourcyclist.co.uk", true },
{ "24hourlocksmithbaltimore.com", true },
{ "24hourlocksmithdallastx.com", true },
{ "24hourlocksmithdetroit.com", true },
@@ -372,11 +368,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "25reinyan25.net", true },
{ "2600edinburgh.org", true },
{ "2600hq.com", true },
+ { "260887.com", true },
{ "263.info", true },
{ "28-industries.com", true },
{ "281180.de", true },
{ "2858958.com", true },
- { "286.com", true },
{ "288da.com", true },
{ "28peaks.com", true },
{ "28spots.net", true },
@@ -387,11 +383,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "298da.com", true },
{ "2991236.com", true },
{ "2au.ru", true },
+ { "2bad2c0.de", true },
{ "2bas.nl", true },
{ "2bcompany.ch", true },
{ "2bis10.de", true },
{ "2bougie.com", true },
- { "2bouncy.com", true },
{ "2c-b.com", true },
{ "2c-d.com", true },
{ "2c-e.com", true },
@@ -411,6 +407,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "2li.ch", true },
{ "2manydots.nl", true },
{ "2mb.solutions", true },
+ { "2mir.com", true },
{ "2nains.ch", true },
{ "2nerds1bit.com", true },
{ "2nics.net", true },
@@ -469,7 +466,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "33445333.com", true },
{ "33445444.com", true },
{ "33836.com", true },
- { "33scc.com", true },
{ "340422.com", true },
{ "340622.com", true },
{ "340922.com", true },
@@ -518,9 +514,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "354922.com", true },
{ "354933.com", true },
{ "356433.com", true },
- { "360live.fr", true },
+ { "357maelai.co", true },
{ "360rail.nl", true },
- { "360woodworking.com", true },
+ { "360vrs.com", true },
{ "364553.com", true },
{ "365365.com", true },
{ "365daysreview.com", true },
@@ -529,6 +525,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "365skulls.com", true },
{ "370422.com", true },
{ "371422.com", true },
+ { "371cloud.com", true },
{ "373422.com", true },
{ "374933.com", true },
{ "375422.com", true },
@@ -549,7 +546,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "396422.com", true },
{ "398.info", true },
{ "39sihu.com", false },
- { "3aandl.com", true },
{ "3ags.de", true },
{ "3amtoolbox.se", true },
{ "3ank.in", true },
@@ -575,7 +571,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "3logic.ru", true },
{ "3lot.ru", true },
{ "3n5b.com", true },
- { "3os.ooo", true },
{ "3phase.pw", true },
{ "3plusdesign.gr", true },
{ "3prn.com", true },
@@ -599,16 +594,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "3tribes.co.uk", true },
{ "3typen.tv", true },
{ "3v4l.org", true },
- { "3weekdietworks.com", true },
{ "4-1-where.com", true },
{ "4-it.de", true },
- { "4000milestare.com", true },
+ { "4000milestare.com", false },
{ "403.ch", true },
{ "404notfound.com.br", true },
{ "4096b.com", true },
{ "4096bit.de", false },
{ "40acts.org.uk", true },
{ "41-where.com", true },
+ { "411416.com", true },
{ "41199.com", true },
{ "411film.com", true },
{ "411movie.com", true },
@@ -617,14 +612,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "41where.com", true },
{ "420java.com", true },
{ "439050.com", true },
+ { "440887.com", true },
{ "441jj.com", false },
+ { "442887.com", true },
+ { "443887.com", true },
{ "4444yh.com", true },
+ { "444887.com", true },
+ { "445887.com", true },
{ "448da.com", true },
- { "44scc.com", true },
{ "451.ooo", true },
{ "4553s.com", true },
{ "4553vip.com", true },
+ { "4706666.com", true },
+ { "4716666.com", true },
+ { "4726666.com", true },
{ "4736666.com", true },
+ { "4756666.com", true },
+ { "4786666.com", true },
{ "47essays.com", true },
{ "491mhz.net", true },
{ "49889.com", true },
@@ -640,7 +644,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "4garage.com.br", true },
{ "4host.ch", true },
{ "4kprojektory.cz", true },
- { "4mm.org", true },
{ "4plebs.moe", true },
{ "4project.co.il", true },
{ "4share.tv", true },
@@ -654,6 +657,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "4x.fi", true },
{ "4x4.lk", true },
{ "4xlabs.co", true },
+ { "50.gd", true },
{ "50.pe", true },
{ "500a500.com", true },
{ "500b500.com", true },
@@ -661,7 +665,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "500d500.com", true },
{ "500e500.com", true },
{ "500f500.com", true },
- { "500fcw.com", true },
{ "500g500.com", true },
{ "500h500.com", true },
{ "500i500.com", true },
@@ -690,7 +693,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "506pay.com", true },
{ "508088.com", true },
{ "50lakeshore.com", true },
- { "50ma.xyz", true },
{ "50north.de", true },
{ "50plusnet.nl", true },
{ "514122.com", true },
@@ -724,6 +726,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "5364b.com", true },
{ "5364c.com", true },
{ "5364d.com", true },
+ { "5364jc.com", true },
{ "53ningen.com", true },
{ "540922.com", true },
{ "541022.com", true },
@@ -736,9 +739,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "5518k3.com", true },
{ "5533445.com", true },
{ "5555yh.com", true },
+ { "55639.com", true },
{ "55797.com", true },
{ "558da.com", true },
- { "55scc.com", true },
{ "576422.com", true },
{ "579422.com", true },
{ "57he.com", true },
@@ -766,8 +769,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "5kraceforals.com", true },
{ "5percentperweek.com", true },
{ "5starbouncycastlehire.co.uk", true },
- { "5thchichesterscouts.org.uk", true },
- { "5w5.la", true },
{ "5y.fi", true },
{ "602422.com", true },
{ "604122.com", true },
@@ -833,6 +834,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "64970.com", true },
{ "649722.com", true },
{ "649822.com", true },
+ { "64bitservers.net", false },
{ "651422.com", true },
{ "652422.com", true },
{ "6541166.com", true },
@@ -860,6 +862,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "666668722.com", true },
{ "6666yh.com", true },
{ "666omg.com", true },
+ { "6677.us", true },
{ "668da.com", true },
{ "66bwf.com", true },
{ "670422.com", true },
@@ -882,13 +885,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "6997896.com", true },
{ "69butterfly.com", true },
{ "69fps.gg", true },
+ { "69wasted.net", true },
{ "6lo.zgora.pl", true },
{ "6pm.com", true },
{ "6t-montjoye.org", true },
- { "6w6.la", true },
{ "700.az", true },
{ "704233.com", true },
+ { "7045.com", true },
{ "704533.com", true },
+ { "7045h.com", true },
{ "704633.com", true },
{ "712433.com", true },
{ "713433.com", true },
@@ -909,6 +914,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "736433.com", true },
{ "738433.com", true },
{ "739433.com", true },
+ { "73info.com", false },
{ "740833.com", true },
{ "741833.com", true },
{ "742833.com", true },
@@ -940,7 +946,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "7thcircledesigns.com", true },
{ "7trade8.com", true },
{ "7x24servis.com", true },
- { "80036.com", true },
{ "804322.com", true },
{ "8086.cf", true },
{ "809422.com", true },
@@ -949,8 +954,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "8189196.com", true },
{ "818bwf.com", true },
{ "818da.com", true },
- { "8522.com", true },
- { "8522club.com", true },
+ { "8349822.com", true },
{ "8522hk.com", true },
{ "8522ph.com", true },
{ "8522tw.com", true },
@@ -961,7 +965,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "8649966.com", true },
{ "8649977.com", true },
{ "8688fc.com", true },
- { "86metro.ru", true },
{ "8722.am", true },
{ "8722am.com", true },
{ "8722cn.com", true },
@@ -972,12 +975,68 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "8818k3.com", true },
{ "8833445.com", true },
{ "88522am.com", true },
+ { "887.ag", true },
+ { "8876138.com", true },
+ { "8876520.com", true },
+ { "8876578.com", true },
+ { "8876598.com", true },
+ { "8876655.com", true },
+ { "8876660.com", true },
+ { "8876687.com", true },
+ { "8876770.com", true },
+ { "8876775.com", true },
+ { "8876776.com", true },
+ { "8876779.com", true },
+ { "8876818.com", true },
+ { "8876822.com", true },
+ { "8876838.com", true },
+ { "8876858.com", true },
+ { "8876866.com", true },
+ { "8876879.com", true },
+ { "8876881.com", true },
+ { "8876882.com", true },
+ { "8876883.com", true },
+ { "8876898.com", true },
+ { "8876900.com", true },
+ { "8876991.com", true },
+ { "8876992.com", true },
+ { "8876996.com", true },
+ { "8880013.com", true },
+ { "8880021.com", true },
+ { "8880023.com", true },
+ { "8880025.com", true },
+ { "8880057.com", true },
+ { "8880059.com", true },
+ { "8880067.com", true },
+ { "8880083.com", true },
+ { "8880100.com", true },
+ { "8884553.com", true },
+ { "8886737.com", true },
+ { "8886739.com", true },
+ { "8886793.com", true },
+ { "8886806.com", true },
+ { "8886860.com", true },
{ "888888722.com", true },
{ "88889822.com", true },
{ "8888esb.com", true },
{ "8888yh.com", true },
+ { "8889457.com", true },
+ { "8889458.com", true },
+ { "8889466.com", true },
+ { "8889563.com", true },
+ { "8889709.com", true },
+ { "8889729.com", true },
+ { "8889792.com", true },
+ { "8889807.com", true },
+ { "8889809.com", true },
+ { "8889819.com", true },
+ { "8889870.com", true },
+ { "8889881.com", true },
+ { "8889890.com", true },
+ { "8889893.com", true },
+ { "8889903.com", true },
+ { "8889910.com", true },
{ "888bwf.com", true },
- { "888msc.vip", true },
{ "88bwf.com", true },
{ "8901178.com", true },
{ "8901178.net", true },
@@ -1008,7 +1067,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "8tech.com.hk", true },
{ "8thportsmouth.org.uk", true },
{ "8tuffbeers.com", true },
- { "8ung.online", true },
{ "8xx.bet", true },
{ "8xx.io", true },
{ "8xx888.com", true },
@@ -1108,7 +1166,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "a7m2.me", true },
{ "aa-tour.ru", true },
{ "aa1718.net", true },
- { "aa43d.cn", true },
{ "aa6688.net", true },
{ "aaapl.com", true },
{ "aabanet.com.br", true },
@@ -1127,9 +1184,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aanmpc.com", true },
{ "aaomidi.com", true },
{ "aapas.org.ar", true },
- { "aardvarksolutions.co.za", true },
- { "aarkue.eu", true },
- { "aaron.cm", false },
+ { "aaron.cm", true },
{ "aaron.xin", true },
{ "aaronhorler.com", true },
{ "aaronkimmig.de", true },
@@ -1139,15 +1194,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aati.be", true },
{ "aati.info", true },
{ "aavienna.com", true },
- { "ab-bauservice-berlin.de", true },
{ "abaapplianceservice.com", true },
{ "abaaustin.com", true },
- { "abacus-events.co.uk", true },
{ "abacusbouncycastle.co.uk", true },
{ "abacustech.co.jp", true },
{ "abacustech.net", true },
{ "abacustech.org", true },
{ "abandonedmines.gov", true },
+ { "abateroad66.it", true },
{ "abbadabbabouncycastles.co.uk", true },
{ "abbas.ch", true },
{ "abborsjo.fi", true },
@@ -1185,9 +1239,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "abilitycaresoftware.com", true },
{ "abilitynet.org.uk", true },
{ "abilityone.gov", true },
+ { "abilma.com", true },
{ "abilymp06.net", true },
{ "abimelec.com", true },
{ "abinyah.com", true },
+ { "abitidalavoro.roma.it", true },
{ "abitur97ag.de", true },
{ "abiturma.de", true },
{ "ablak-nyilaszaro.info", true },
@@ -1236,6 +1292,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aboutyou.nl", true },
{ "abox-kb.com", true },
{ "abpis.hr", true },
+ { "abracadabra.co.jp", false },
{ "abrakidabra.com.br", true },
{ "abraxan.pro", true },
{ "abrilect.com", true },
@@ -1268,6 +1325,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "academicexperts.us", true },
{ "academichealthscience.net", true },
{ "academie-de-police.ch", true },
+ { "academkin.com", true },
{ "academytv.com.au", true },
{ "acaeum.com", true },
{ "acampar.com.br", true },
@@ -1329,6 +1387,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "acheter-ethylotest.fr", true },
{ "achromatisch.de", true },
{ "achterblog.de", true },
+ { "achterstieg.dedyn.io", true },
{ "achtzehn.eu", true },
{ "achtzehnterachter.de", true },
{ "achtzig20.de", true },
@@ -1339,6 +1398,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aciksite.com", true },
{ "ackermann.ch", true },
{ "ackis.duckdns.org", false },
+ { "acklandstainless.com.au", true },
{ "aclu.org", false },
{ "acluva.org", false },
{ "acme.beer", true },
@@ -1384,6 +1444,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "actc81.fr", true },
{ "actgruppe.de", true },
{ "actiefgeld.nl", true },
+ { "actioncleaningnd.com", true },
{ "actionlabs.net", true },
{ "actionmadagascar.ch", true },
{ "actionsack.com", true },
@@ -1404,7 +1465,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "actors-cafe.net", true },
{ "actorsroom.com", true },
{ "actserv.co.ke", true },
+ { "actualidadecommerce.com", true },
+ { "actualidadgadget.com", true },
{ "actualidadiphone.com", true },
+ { "actualidadkd.com", true },
{ "actualidadmotor.com", true },
{ "acuica.co.uk", false },
{ "acul.me", true },
@@ -1412,8 +1476,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "acus.gov", true },
{ "acwcerts.co.uk", true },
{ "acwi.gov", true },
+ { "acy.com", true },
{ "acyfxasia.com", true },
- { "acyume.com", true },
{ "ad-notam.asia", true },
{ "ad-notam.ch", true },
{ "ad-notam.co.uk", true },
@@ -1433,7 +1497,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "adambalogh.net", true },
{ "adambyers.com", true },
{ "adamek.online", true },
- { "adamfontenot.com", true },
{ "adamh.us", true },
{ "adamjoycegames.co.uk", true },
{ "adamkaminski.com", true },
@@ -1443,6 +1506,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "adams.dk", true },
{ "adamsbouncycastles.co.uk", true },
{ "adamstas.com", true },
+ { "adamwallington.co.uk", true },
{ "adamwilcox.org", true },
{ "adamyuan.xyz", true },
{ "adapt-elektronik.com", true },
@@ -1458,7 +1522,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "addeekt.com", true },
{ "adderall.space", true },
{ "addicional.com", true },
+ { "addictionresource.com", true },
{ "addictively.com", true },
+ { "addiko.net", true },
{ "addisoncrump.info", true },
{ "addnine.com", true },
{ "addon.watch", true },
@@ -1471,6 +1537,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "adentalsolution.com", true },
{ "adept.org.pl", true },
{ "adesa.co.uk", true },
+ { "adevel.eu", true },
{ "adex.network", true },
{ "adf-safetytools.com", true },
{ "adftrasporti.it", true },
@@ -1489,7 +1556,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "adlerosn.com.br", true },
{ "adlershop.ch", true },
{ "adm-sarov.ru", true },
- { "adme.co.il", true },
{ "admin-serv.net", true },
{ "admin.casa", true },
{ "admin.fedoraproject.org", true },
@@ -1538,6 +1604,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "adurra.com", true },
{ "aduvi.de", true },
{ "advance.hr", true },
+ { "advanced-fleet-services.com", true },
{ "advanced-scribes.com", true },
{ "advanced.info", true },
{ "advancedoneroofing.com", true },
@@ -1562,6 +1629,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "adventurenow.nl", true },
{ "adventures.de", true },
{ "adventureswithlillie.ca", true },
+ { "advertis.biz", true },
{ "advicepro.org.uk", true },
{ "advocate-europe.eu", true },
{ "advocaten-avocats.be", true },
@@ -1594,6 +1662,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aebian.org", true },
{ "aecexpert.fr", true },
{ "aegee-utrecht.nl", true },
+ { "aegialis.com", true },
{ "aegisalarm.co.uk", true },
{ "aegisalarm.com", true },
{ "aegisalarms.co.uk", true },
@@ -1614,6 +1683,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aerobasegroup.com", true },
{ "aerobotz.com", true },
{ "aerosimexperience.com", true },
+ { "aerospace-schools.com", true },
{ "aertel.ie", true },
{ "aessencia.com.br", true },
{ "aestheticdr.org", true },
@@ -1621,7 +1691,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aestore.by", true },
{ "aeternus.tech", true },
{ "aetherc0r3.eu", true },
- { "aethonan.pro", true },
{ "aetoscg.com", true },
{ "aetoscg.com.au", true },
{ "aextron.com", true },
@@ -1629,7 +1698,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aextron.org", true },
{ "af-internet.nl", true },
{ "afavre.io", true },
- { "afb24.de", true },
{ "afbeelding.im", true },
{ "afbeeldinguploaden.nl", true },
{ "afcompany.it", true },
@@ -1642,6 +1710,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "affinitysync.com", true },
{ "affissioni.roma.it", true },
{ "affittacamere.roma.it", true },
+ { "affloc.com", true },
{ "affordableazdivorce.com", true },
{ "affordableblindsexpress.com", true },
{ "affordableenergyadvocates.com", true },
@@ -1684,6 +1753,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "agamsecurity.ch", true },
{ "agatajanik.de", true },
{ "agate.pw", true },
+ { "age.hk", true },
{ "agechecker.net", true },
{ "ageg.ca", true },
{ "agenceklic.com", true },
@@ -1706,7 +1776,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "agiapelagia.com", true },
{ "agic-geneve.ch", true },
{ "agilebits.com", true },
- { "agilebits.net", false },
{ "agilecraft.com", true },
{ "agileui.com", true },
{ "agiley.se", true },
@@ -1744,8 +1813,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "agrarshop4u.de", true },
{ "agrekov.ru", true },
{ "agreor.com", true },
- { "agrichamber.com.ua", true },
{ "agricolo.ch", true },
+ { "agriculture-schools.com", true },
{ "agridir.site", true },
{ "agrilinks.org", true },
{ "agrios.de", true },
@@ -1757,12 +1826,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "agscinemasapp.com", true },
{ "agung-furniture.com", true },
{ "agwa.name", true },
+ { "agy.cl", true },
{ "ahd.com", false },
{ "aheng.me", true },
{ "ahero4all.org", true },
- { "ahiru3.com", true },
{ "ahkubiak.ovh", true },
{ "ahlaejaba.com", true },
+ { "ahlz.sk", true },
{ "ahmad.works", true },
{ "ahmadly.com", true },
{ "ahmedabadflowermall.com", true },
@@ -1780,6 +1850,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ai.gov", true },
{ "aia.de", true },
{ "aibenzi.com", true },
+ { "aibiying.com", true },
{ "aicial.co.uk", true },
{ "aidanapple.com", true },
{ "aidanmontare.net", true },
@@ -1788,7 +1859,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aidhan.net", true },
{ "aids.gov", true },
{ "aie.de", true },
- { "aiforsocialmedia.com", true },
{ "aifriccampbell.com", true },
{ "aigcev.org", true },
{ "aigenpul.se", true },
@@ -1805,9 +1875,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aikido-kiel.de", true },
{ "aikido-linz.at", true },
{ "aikido-wels.at", true },
+ { "ailitonia.com", true },
+ { "ailitonia.xyz", true },
{ "aimax.com", true },
{ "aimeeandalec.com", true },
{ "aimgroup.co.tz", true },
+ { "aimi-salon.com", true },
{ "aimotive.com", true },
{ "aimstoreglobal.com", true },
{ "aintevenmad.ch", true },
@@ -1824,6 +1897,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "airbnb.cat", true },
{ "airbnb.ch", true },
{ "airbnb.cl", true },
+ { "airbnb.cn", true },
{ "airbnb.co.cr", true },
{ "airbnb.co.id", true },
{ "airbnb.co.il", true },
@@ -1838,6 +1912,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "airbnb.com.bo", true },
{ "airbnb.com.br", true },
{ "airbnb.com.bz", true },
+ { "airbnb.com.cn", true },
{ "airbnb.com.co", true },
{ "airbnb.com.ec", true },
{ "airbnb.com.gt", true },
@@ -1880,10 +1955,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "airbnb.pt", true },
{ "airbnb.ru", true },
{ "airbnb.se", true },
+ { "airbnb.tools", true },
+ { "airbnbchina.cn", true },
{ "airbnbopen.com", true },
{ "airborne-inflatables.co.uk", true },
{ "airclass.com", true },
{ "aircomms.com", true },
+ { "airconsalberton.co.za", true },
+ { "airconssandton.co.za", true },
{ "airductclean.com", false },
{ "airductcleaning-fresno.com", true },
{ "airductcleaninggrandprairie.com", true },
@@ -1904,13 +1983,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "airpbx.com", true },
{ "airplay-inflatable-hire.co.uk", true },
{ "airplayradio.nl", true },
- { "airportlimototoronto.com", true },
{ "airpurifierproductsonline.com", true },
{ "airrestoration.ch", true },
{ "airsoft.ch", true },
{ "airtimerewards.co.uk", true },
{ "airvpn.org", true },
{ "airvuz.com", true },
+ { "airwaystorage.net", true },
{ "airwegobouncycastles.co.uk", true },
{ "airwolfthemes.com", true },
{ "ais.fashion", true },
@@ -1926,7 +2005,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aivd.lol", true },
{ "aiwdirect.com", true },
{ "aixvox.com", false },
- { "aixxe.net", true },
{ "aizxxs.com", true },
{ "aizxxs.net", true },
{ "ajapaik.ee", true },
@@ -1962,6 +2040,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "akilli-devre.com", true },
{ "akita-boutique.com", true },
{ "akiym.com", true },
+ { "akj.io", true },
{ "akkbouncycastles.co.uk", true },
{ "akkeylab.com", true },
{ "akostecki.de", true },
@@ -1978,6 +2057,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aksehir.bel.tr", true },
{ "akselinurmio.fi", false },
{ "akshi.in", true },
+ { "aktin.cz", true },
{ "aktiv-naturheilmittel.at", true },
{ "aktiv-naturheilmittel.ch", true },
{ "aktiv-naturheilmittel.de", true },
@@ -1986,9 +2066,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aktuelle-uhrzeit.at", true },
{ "akuislam.com", true },
{ "akukas.com", true },
+ { "akul.co.in", true },
{ "akustik.tech", true },
{ "akutun.cl", true },
{ "akvorrat.at", true },
+ { "al3366.tech", true },
{ "al3xpro.com", true },
{ "alab.space", true },
{ "alabamadebtrelief.org", true },
@@ -2026,6 +2108,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "albertinum-goettingen.de", true },
{ "albion2.org", true },
{ "alboweb.nl", true },
+ { "albrocar.com", true },
{ "albuic.tk", true },
{ "alca31.com", true },
{ "alchimic.ch", true },
@@ -2054,11 +2137,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alertwire.com", true },
{ "alesia-formation.fr", true },
{ "alessandroonline.com.br", true },
- { "alessandroz.ddns.net", true },
{ "aletm.it", true },
{ "alex-ross.co.uk", true },
{ "alex97000.de", true },
- { "alexander-beck.eu", true },
{ "alexanderb.info", true },
{ "alexandermuetzel.de", true },
{ "alexanderneng.de", true },
@@ -2068,6 +2149,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alexandrastorm.com", true },
{ "alexandrastylist.com", true },
{ "alexandre-blond.fr", true },
+ { "alexandros.io", true },
{ "alexbaker.org", true },
{ "alexberts.ch", true },
{ "alexbresnahan.com", true },
@@ -2127,14 +2209,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alienflight.com", true },
{ "alienslab.net", true },
{ "alienstat.com", true },
+ { "alignrs.com", true },
{ "aliim.gdn", true },
{ "alijammusic.com", true },
+ { "alikulov.me", true },
{ "alinasmusicstudio.com", true },
{ "alinode.com", true },
{ "aliorange.com", true },
{ "alisonisrealestate.com", true },
{ "alisonlitchfield.com", true },
- { "alistairholland.me", true },
{ "alistairstowing.com", true },
{ "alisync.com", true },
{ "alix-board.de", true },
@@ -2142,8 +2225,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aljaspod.com", true },
{ "aljaspod.hu", true },
{ "aljaspod.net", true },
- { "aljweb.com", true },
{ "all-connect.net", false },
+ { "all-fashion-schools.com", true },
{ "all-markup-news.com", true },
{ "all4hardware4u.de", true },
{ "allaboutfunuk.com", true },
@@ -2171,6 +2254,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alldigitalsolutions.com", true },
{ "alle.bg", true },
{ "allemobieleproviders.nl", true },
+ { "allemoz.com", true },
+ { "allemoz.fr", true },
{ "allenosgood.com", true },
{ "allenscaravans.co.uk", true },
{ "allensun.org", true },
@@ -2189,6 +2274,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "allincoin.shop", true },
{ "allinone-ranking150.com", true },
{ "allis.studio", true },
+ { "allius.de", true },
{ "alljamin.com", true },
{ "allmebel.ru", true },
{ "allmend-ru.de", true },
@@ -2224,14 +2310,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "alluvion.studio", true },
{ "almaatlantica.com", true },
{ "almavios.com", true },
+ { "almorafestival.com", true },
{ "aloesoluciones.com.ar", true },
{ "alohapartyevents.co.uk", true },
{ "alonetone.com", true },
- { "alorenzi.eu", true },
- { "alp.net.cn", true },
{ "alp.od.ua", true },
{ "alpca.org", true },
- { "alpe-d-or.dyn-o-saur.com", true },
{ "alpencam.com", true },
{ "alpencams.com", true },
{ "alpengreis.ch", true },
@@ -2343,6 +2427,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "amaresq.com", true },
{ "amateurchef.co.uk", true },
{ "amateurradionotes.com", true },
+ { "amateurvoicetalent.com", true },
{ "amati.solutions", true },
{ "amato.tk", true },
{ "amatsuka.com", true },
@@ -2377,9 +2462,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "amend-friseur-schwabing.de", true },
{ "america.gov", true },
{ "americafamilylawcenter.org", true },
+ { "american-school-search.com", true },
{ "american.dating", true },
{ "americandetour.com", true },
{ "americanfoundationbr.com", true },
+ { "americanindiannursing.com", true },
{ "americanmediainstitute.com", true },
{ "americasbasementcontractor.com", true },
{ "americkykongres.cz", true },
@@ -2388,7 +2475,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "amerika-forum.de", true },
{ "amerimarkdirect.com", true },
{ "amerimex.cc", true },
- { "ameschristian.net", true },
{ "amesgen.de", true },
{ "amesvacuumrepair.com", true },
{ "amethystdevelopment.co.uk", true },
@@ -2399,6 +2485,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ami-de-bastanes.fr", true },
{ "amicalecanyon.ch", true },
{ "amiciidogrescue.org.uk", true },
+ { "amicimar.it", true },
{ "amielucha.com", true },
{ "amifoundation.net", true },
{ "amikootours.com", true },
@@ -2465,6 +2552,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "anarchyrp.life", true },
{ "anassiriphotography.com", false },
{ "anastasia-shamara.ru", true },
+ { "anaveragehuman.eu.org", true },
{ "ancestramil.fr", true },
{ "anchev.net", true },
{ "anchovy.nz", false },
@@ -2486,6 +2574,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "andisadhdspot.com", true },
{ "andiscyber.space", true },
{ "anditi.com", true },
+ { "andoms.fi", true },
{ "andre-ballensiefen.de", true },
{ "andre-lategan.com", true },
{ "andre-otto.com", true },
@@ -2509,11 +2598,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "andrefaber.nl", true },
{ "andrehansen.de", true },
{ "andrei-nakov.org", true },
- { "andrejbenz.com", true },
{ "andreoliveira.io", true },
- { "andrepicard.de", true },
{ "andrespaz.com", true },
{ "andreundnina.de", true },
+ { "andrew.fi", true },
{ "andrew.london", true },
{ "andrewbdesign.com", true },
{ "andrewdaws.io", true },
@@ -2544,11 +2632,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "androidtelefony.cz", true },
{ "androidzone.me", true },
{ "andromedacenter.com", true },
+ { "andronika.net", false },
{ "androticsdirect.com", true },
{ "andruvision.cz", true },
{ "andsat.org", true },
- { "andschwa.com", false },
+ { "andschwa.com", true },
{ "andso.cn", true },
+ { "anduril.de", true },
+ { "anduril.eu", true },
{ "andybrett.com", true },
{ "andyc.cc", true },
{ "andycloud.dynu.net", true },
@@ -2576,7 +2667,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "angelremigene.com", true },
{ "angelsgirl.eu.org", true },
{ "anginf.de", true },
- { "anglertanke.de", true },
{ "anglesgirl.eu.org", true },
{ "anglesya.win", true },
{ "anglictina-sojcak.cz", true },
@@ -2587,7 +2677,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "angristan.fr", true },
{ "angristan.xyz", true },
{ "angry.im", true },
- { "angrylab.com", true },
{ "angrysnarl.com", true },
{ "angryteeth.net", false },
{ "anguiao.com", true },
@@ -2597,7 +2686,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ani-man.de", true },
{ "aniaimichal.eu", true },
{ "aniforprez.net", true },
- { "anim.ee", true },
{ "animacurse.moe", true },
{ "animaemundi.be", true },
{ "animal-liberation.com", true },
@@ -2605,7 +2693,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "animalistic.io", true },
{ "animaltesting.fr", true },
{ "animan.ca", true },
- { "animatelluris.nl", true },
{ "animationsmusicales.ch", true },
{ "anime-culture.com", true },
{ "anime-rg.com", true },
@@ -2628,6 +2715,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "anjoola.com", true },
{ "ankarakart.com.tr", true },
{ "ankaraprofesyonelwebtasarim.com", true },
+ { "ankaraseo.name.tr", true },
{ "ankarauzmanlarnakliyat.com", true },
{ "ankarayilmaznakliyat.com", true },
{ "ankarayucelnakliyat.com", true },
@@ -2658,7 +2746,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "annetta.com", true },
{ "annettewindlin.ch", true },
{ "annevankesteren.nl", true },
- { "annicascakes.nl", true },
{ "anniversary-cruise.com", true },
{ "annmariewaltsphotography.com", true },
{ "annonasoftware.com", true },
@@ -2707,13 +2794,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "antennista.milano.it", true },
{ "antennista.pavia.it", true },
{ "antennista.roma.it", true },
+ { "antennista.tv", true },
{ "antennisti.milano.it", true },
{ "antennisti.roma.it", true },
{ "anteprima.info", true },
{ "anthedesign.fr", true },
{ "anthisis.tv", true },
{ "anthony.codes", true },
- { "anthonyaires.com", true },
{ "anthonycarbonaro.com", true },
{ "anthonyfontanez.com", true },
{ "anthonygaidot.fr", true },
@@ -2751,7 +2838,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "antroposofica.com.br", true },
{ "antyblokada.pl", true },
{ "anulowano.pl", true },
- { "anvartay.com", true },
+ { "anvartay.com", false },
{ "anwaltsindex.com", true },
{ "anxietyspace.com", true },
{ "anxiolytics.com", true },
@@ -2783,6 +2870,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "apac-tech.com", false },
{ "apache-portal.com", true },
{ "apachehaus.de", false },
+ { "apachelounge.com", true },
{ "apadvantage.com", true },
{ "aparaatti.org", true },
{ "apartmanicg.me", true },
@@ -2833,7 +2921,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aplpackaging.co.uk", true },
{ "aplu.fr", true },
{ "aplus-usa.net", true },
- { "apmpproject.org", true },
{ "apn-dz.org", true },
{ "apn-einstellungen.de", true },
{ "apo-deutschland.biz", true },
@@ -2873,6 +2960,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "appgeek.com.br", true },
{ "appharbor.com", true },
{ "appify.org", true },
+ { "appinn.com", true },
{ "applelife.ru", true },
{ "applemon.com", true },
{ "appleoosa.com", true },
@@ -2900,12 +2988,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "appscloudplus.com", true },
{ "appseccalifornia.org", false },
{ "appshuttle.com", true },
- { "appson.co.uk", false },
{ "appt.ch", true },
{ "apptomics.com", true },
{ "appuals.com", true },
{ "appui-de-fenetre.fr", true },
{ "appveyor.com", true },
+ { "appxcrypto.com", true },
{ "appzoojoo.be", true },
{ "apratimsaha.com", true },
{ "aprefix.com", true },
@@ -2945,11 +3033,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aquelarreweb.com", true },
{ "aquila.co.uk", true },
{ "aquitainebrasserie.com.au", true },
- { "aquitroc.com", true },
{ "ar-informatique.ch", true },
{ "arab.dating", true },
{ "arabicxz.com", true },
{ "arachina.com", true },
+ { "arackiralama.name.tr", true },
{ "arados.de", true },
{ "arai21.net", true },
{ "araleeniken.com", true },
@@ -2970,14 +3058,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arbejdsdag.dk", true },
{ "arbitrarion.com", true },
{ "arbitrary.ch", true },
- { "arboleda-hurtado.com", true },
{ "arboworks.com", true },
+ { "arbu.eu", false },
{ "arcaik.net", true },
{ "arcbouncycastles.co.uk", true },
{ "arcenergy.co.uk", true },
{ "archimedicx.com", true },
{ "archined.nl", true },
{ "architectryan.com", true },
+ { "architecture-colleges.com", true },
{ "archivero.es", true },
{ "archivesdelavieordinaire.ch", true },
{ "archlinux.de", true },
@@ -2989,6 +3078,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arcueil-cachan.fr", false },
{ "arcusnova.de", true },
{ "arda-audio.pt", true },
+ { "ardor.noip.me", true },
{ "ardtrade.ru", true },
{ "area4pro.com", true },
{ "area536.com", true },
@@ -3007,7 +3097,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ares-trading.de", true },
{ "arfad.ch", true },
{ "arg.zone", true },
- { "argama-nature.com", true },
{ "arganaderm.ch", true },
{ "argb.de", true },
{ "argekultur.at", true },
@@ -3018,6 +3107,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arian.io", true },
{ "arias.re", true },
{ "ariba.info", true },
+ { "ariege-pyrenees.net", true },
{ "arieswdd.com", true },
{ "arigato-java.download", true },
{ "arijitdg.net", true },
@@ -3027,7 +3117,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arinde.ee", true },
{ "arise19.com", true },
{ "arisevendor.net", true },
- { "aristilabs.com", true },
{ "aritec-la.com", true },
{ "arivo.com.br", true },
{ "arizer.com", true },
@@ -3047,16 +3136,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arlenarmageddon.com", true },
{ "arlet.click", true },
{ "arletalibrary.com", true },
- { "arm-host.com", true },
{ "armadaquadrat.com", true },
{ "armandsdiscount.com", true },
{ "armanozak.com", true },
{ "armansfinejewellery.com", true },
{ "armansfinejewellery.com.au", true },
{ "armarinhovirtual.com.br", true },
+ { "armazemgourmetbrasil.com.br", true },
{ "armbrust.me", true },
{ "armedpoet.com", true },
- { "armeni-jewellery.gr", true },
{ "armil.it", true },
{ "arminc.tk", true },
{ "arminpech.de", true },
@@ -3106,25 +3194,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "arrowheadflats.com", true },
{ "arrowwebprojects.nl", true },
{ "arschkrebs.org", true },
+ { "arswb.men", true },
{ "art-auction.jp", true },
{ "art-et-culture.ch", true },
- { "artansoft.com", true },
{ "artboja.com", true },
{ "artdeco-photo.com", true },
+ { "arte-soft.co", true },
+ { "artea.ga", true },
+ { "arteaga.co.uk", true },
+ { "arteaga.eu", true },
+ { "arteaga.me", true },
+ { "arteaga.tech", true },
+ { "arteaga.uk", true },
+ { "arteaga.xyz", true },
{ "artecat.ch", true },
{ "artedellavetrina.it", true },
{ "artedona.com", true },
+ { "arteequipamientos.com.uy", true },
{ "artefakt.es", true },
{ "artefeita.com.br", true },
{ "arteinstudio.it", true },
{ "artelt.com", true },
- { "artemis.re", true },
{ "arterienundvenen.ch", true },
{ "arteshow.ch", true },
{ "artetrama.com", false },
{ "artforum.sk", true },
{ "artfullyelegant.com", true },
{ "arthermitage.org", true },
+ { "arthur.cn", true },
{ "arthurlaw.ca", true },
{ "artificial.army", true },
{ "artik.cloud", true },
@@ -3171,7 +3268,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aryan-nation.com", true },
{ "aryasenna.net", true },
{ "arzid.com", true },
- { "arzinfo.pw", true },
{ "as200753.com", true },
{ "as200753.net", true },
{ "as44222.net", true },
@@ -3189,17 +3285,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ascensori.biz", true },
{ "ascgathering.com", true },
{ "ascii.moe", true },
+ { "asciitable.tips", true },
{ "asciiwwdc.com", true },
{ "asd.gov.au", true },
{ "asdyx.de", true },
{ "asec01.net", true },
+ { "asegem.es", true },
{ "aseith.com", true },
{ "aseko.gr", true },
{ "asenno.com", true },
{ "aserver.co", true },
{ "asexualitat.cat", true },
{ "asgapps.co.za", true },
- { "asge-handel.de", true },
{ "ashd1.goip.de", true },
{ "ashd2.goip.de", true },
{ "ashd3.goip.de", true },
@@ -3213,6 +3310,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "asiaheavens.com", true },
{ "asialeonding.at", true },
{ "asian-industry.eu", true },
+ { "asianodor.com", true },
{ "asianshops.net", true },
{ "asianspa.co.uk", true },
{ "asiba.com.au", true },
@@ -3239,8 +3337,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aspcl.ch", true },
{ "aspectcontext.com", true },
{ "asperti.com", true },
+ { "aspformacion.com", true },
{ "asphyxia.su", true },
{ "aspiescentral.com", true },
+ { "aspiradorasbaratas.net", true },
{ "aspirateur-anti-pollution.fr", true },
{ "aspires.co.jp", true },
{ "aspisdata.com", true },
@@ -3294,8 +3394,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "asystent-dzierzawy.pl", true },
{ "at-one.ca", true },
{ "at.search.yahoo.com", false },
+ { "ataber.pw", true },
{ "atac.no", true },
{ "atacadocervejeiro.com.br", true },
+ { "atacadodesandalias.com.br", true },
{ "ataton.ch", true },
{ "atc.io", true },
{ "atchleyjazz.com", true },
@@ -3322,7 +3424,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "atelierssud.swiss", true },
{ "atencionbimbo.com", false },
{ "atendimentodelta.com.br", true },
- { "atg.soy", true },
{ "atgoetschel.ch", true },
{ "atgroup.gr", true },
{ "atgseed.co.uk", true },
@@ -3332,7 +3433,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "athena-garage.co.uk", true },
{ "athenadynamics.com", true },
{ "athenaneuro.com", true },
- { "atheoryofchange.com", true },
{ "atherosense.ga", true },
{ "athlin.de", true },
{ "atigerseye.com", true },
@@ -3395,6 +3495,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "atulhost.com", true },
{ "atviras.lt", false },
{ "atvirtual.at", true },
+ { "atwar-mod.com", true },
{ "atwonline.org", true },
{ "atxchirocoverage.com", true },
{ "atyourprice.net", true },
@@ -3415,12 +3516,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "aucubin.de", true },
{ "audialbuquerqueparts.com", true },
{ "audiblox.co.za", true },
+ { "audiense.com", false },
{ "audio-detector.com", true },
{ "audiobookstudio.com", true },
{ "audiolibri.org", true },
{ "audiolot.com", true },
+ { "audion.cc", true },
{ "audion.hr", true },
- { "audioonly.stream", true },
{ "audiophile.ch", true },
{ "audiophix.com", true },
{ "audiorecording.me", true },
@@ -3437,7 +3539,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "auf-feindgebiet.de", true },
{ "augen-seite.de", true },
{ "augiero.it", true },
- { "augmentable.de", true },
+ { "augmentable.de", false },
{ "augmented-portal.com", true },
{ "august-don.site", true },
{ "august.black", true },
@@ -3466,6 +3568,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "auroz.video", true },
{ "aus-ryugaku.info", true },
{ "ausmwoid.de", true },
+ { "auspicacious.org", true },
+ { "ausschreibungen-suedtirol.it", true },
{ "aussiefunadvisor.com", true },
{ "aussiegreenmarks.com.au", true },
{ "aussieservicedown.com", true },
@@ -3491,9 +3595,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "authinfo-bestellen.de", true },
{ "authinity.com", true },
{ "author24.biz", true },
+ { "author24.info", true },
{ "authoritysolutions.com", true },
{ "autimatisering.nl", true },
{ "auto-anleitung.de", true },
+ { "auto-dealership-news.com", true },
{ "auto-motor-i-sport.pl", true },
{ "auto-plus.tn", true },
{ "auto-spurgo.com", true },
@@ -3528,12 +3634,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "automotivegroup-usedcars.be", true },
{ "automotivemechanic.org", true },
{ "automoto-tom.net", true },
+ { "autonewssite.com", true },
{ "autoosijek.com", true },
{ "autopapo.com.br", true },
{ "autoparts.im", true },
{ "autoparts.sh", true },
{ "autoparts.wf", true },
- { "autoprice.info", true },
+ { "autoprice.info", false },
{ "autoprogconsortium.ga", true },
{ "autorando.com", true },
{ "autoschadeschreuder.nl", true },
@@ -3548,6 +3655,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "autospurgo.milano.it", true },
{ "autostodulky.cz", true },
{ "autotechschool.com", true },
+ { "autoteplo.org", true },
{ "autoterminus-used.be", true },
{ "autoverzekeringafsluiten.com", true },
{ "autowerkstatt-puchheim.de", true },
@@ -3568,9 +3676,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "avalon-island.ru", true },
{ "avalon-rpg.com", true },
{ "avalon-studios.de", true },
+ { "avalyuan.com", true },
{ "avanet.ch", true },
{ "avanet.com", true },
{ "avanovum.de", true },
+ { "avantitualatin.com", true },
{ "avarty.com", true },
{ "avarty.net", true },
{ "avatardiffusion.com", true },
@@ -3602,6 +3712,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "avietech.com", true },
{ "aviv.nyc", true },
{ "avlhostel.com", true },
+ { "avnet.ws", true },
{ "avocadooo.stream", true },
{ "avocatbeziau.com", true },
{ "avocode.com", true },
@@ -3610,6 +3721,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "avpres.net", true },
{ "avptp.org", true },
{ "avqueen.cn", true },
+ { "avs-building-services.co.uk", true },
{ "avsox.com", true },
{ "avticket.ru", false },
{ "avtoforex.ru", true },
@@ -3626,7 +3738,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "awen.me", true },
{ "awesomebouncycastles.co.uk", true },
{ "awesomesit.es", true },
- { "awin.la", true },
{ "awk.tw", true },
{ "awksolutions.com", true },
{ "awningsaboveus.com", true },
@@ -3647,10 +3758,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "axiomer.org", true },
{ "axis-stralis.co.uk", true },
{ "axisfleetmanagement.co.uk", true },
- { "axka.com", false },
{ "axonholdingse.eu", true },
{ "axrec.de", true },
- { "axtudo.com", false },
+ { "ay-net.jp", true },
+ { "ayahya.me", true },
+ { "ayamchikchik.com", true },
{ "ayanomimi.com", true },
{ "aycomba.de", true },
{ "ayesh.me", true },
@@ -3719,7 +3831,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "b303.me", true },
{ "b4bouncycastles.co.uk", true },
{ "b4ckbone.de", true },
- { "b4r7.de", true },
{ "b4z.eu", true },
{ "b5189.com", true },
{ "b5189.net", true },
@@ -3801,7 +3912,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "b9948.com", true },
{ "b9948.net", true },
{ "b9960.com", true },
- { "b99886.com", true },
{ "b9best.cc", true },
{ "b9best.net", true },
{ "b9king.cc", true },
@@ -3815,6 +3925,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "babai.ru", true },
{ "babarkata.com", true },
{ "babeleo.com", true },
+ { "baby-bath-tub.com", true },
{ "baby-digne.com", true },
{ "baby-fotografie-muenchen.de", true },
{ "babybauch-shooting-muenchen.de", true },
@@ -3822,7 +3933,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "babycamapp.com", true },
{ "babyfotograf-schweiz.ch", true },
{ "babymasaze.cz", true },
- { "babyphototime.com", true },
{ "babypibu.com", true },
{ "babyshoprimini.com", true },
{ "bacgrouppublishing.com", true },
@@ -3835,10 +3945,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "backschues.com", true },
{ "backschues.de", true },
{ "backschues.net", true },
+ { "backseatbandits.com", true },
{ "backsideverbier.ch", true },
{ "backterris.com", true },
{ "backtest.org", true },
- { "backupcloud.ru", true },
{ "bacon-monitoring.org", true },
{ "baconismagic.ca", true },
{ "bacontreeconsulting.com", true },
@@ -3877,10 +3987,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bageluncle.com", true },
{ "baggy.me.uk", true },
{ "bagheera.me.uk", true },
+ { "baglu.com", true },
{ "bagsofbounce.co.uk", true },
{ "bagspecialist.nl", true },
{ "bagstage.de", true },
{ "bah.im", false },
+ { "bahaiprayers.io", true },
{ "bahnbonus-praemienwelt.de", true },
{ "bahnenimbild.de", true },
{ "bahnenimbild.eu", true },
@@ -3893,6 +4005,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bailakomigo.com.br", true },
{ "baildonbouncycastles.co.uk", true },
{ "baileebee.com", true },
+ { "bailonga.com", true },
{ "baitulongbaycruises.com", true },
{ "baiyangliu.com", true },
{ "bajajfinserv.in", true },
@@ -3918,6 +4031,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "balcaonet.com.br", true },
{ "balconnr.com", true },
{ "balconsverdun.com", true },
+ { "baldur.cc", true },
{ "balia.de", true },
{ "balicekzdravi.cz", true },
{ "balidesignshop.com.br", true },
@@ -3928,9 +4042,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "balkonien.org", true },
{ "ball.holdings", true },
{ "ball3d.es", true },
+ { "ballarin.cc", true },
{ "ballejaune.com", true },
+ { "balletcenterofhouston.com", true },
{ "ballinarsl.com.au", true },
- { "ballitolocksmith.com", true },
{ "ballmerpeak.org", true },
{ "ballonsportclub-erlangen.de", true },
{ "ballotapi.com", true },
@@ -3938,6 +4053,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ballparkbuns.com", false },
{ "ballroom.info", true },
{ "balslev.io", true },
+ { "balticer.de", true },
{ "balticnetworks.com", true },
{ "bamahammer.com", true },
{ "bambooforest.nl", true },
@@ -3945,6 +4061,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bambumania.com.br", true },
{ "bamily.rocks", true },
{ "bananavapes.com", true },
+ { "banburybid.com", true },
{ "bancacrs.it", true },
{ "bancaolhares.com.br", true },
{ "bancobai.ao", true },
@@ -3956,6 +4073,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bandiga.it", true },
{ "bandito.re", true },
{ "banes.ch", true },
+ { "bangdream.ga", true },
{ "bangkok-dark-night.com", true },
{ "bangkok.dating", true },
{ "bangkokcity.de", true },
@@ -3968,6 +4086,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bankcardoffer.com", true },
{ "bankee.us", true },
{ "bankerbuch.de", true },
+ { "bankersonline.com", true },
{ "banketbesteld.nl", true },
{ "bankfreeoffers.com", true },
{ "bankgradesecurity.com", true },
@@ -3982,7 +4101,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "banned-bitches.tk", true },
{ "bannermarquees.ie", true },
{ "bannsecurity.com", true },
- { "banoviny.sk", true },
{ "banquevanbreda.be", true },
{ "banter.city", true },
{ "bao-in.com", true },
@@ -4056,7 +4174,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "basementdoctor.com", true },
{ "basementdoctornorthwest.com", true },
{ "basementfinishingohio.com", true },
- { "basercap.co.ke", true },
{ "bashing-battlecats.com", true },
{ "bashstreetband.co.uk", true },
{ "basicapparel.de", true },
@@ -4071,7 +4188,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bassresource.com", true },
{ "bassrider.eu", true },
{ "bassys.com.co", true },
- { "bastadigital.com", true },
{ "bastelzauberwelt.de", true },
{ "bastianstalder.ch", true },
{ "bastiv.com", true },
@@ -4128,7 +4244,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "baywatch.io", true },
{ "bayz.de", true },
{ "bazaarbhaav.com", true },
- { "bazaarcompass.com", true },
{ "bazdell.com", true },
{ "bazos.at", true },
{ "bazos.cz", true },
@@ -4144,6 +4259,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bbka.org.uk", true },
{ "bbkaforum.co.uk", true },
{ "bbkworldwide.jp", true },
+ { "bbld.de", true },
{ "bblove.me", true },
{ "bblsa.ch", true },
{ "bbnbb.de", true },
@@ -4157,7 +4273,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bbxin9.net", true },
{ "bc-bd.org", false },
{ "bc-diffusion.com", true },
- { "bc-personal.ch", true },
{ "bcansw.com.au", true },
{ "bcbulle.ch", true },
{ "bcdonadio.com", true },
@@ -4232,6 +4347,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "beautyby.tv", true },
{ "beautyevent.fr", true },
{ "beautykat.ru", true },
+ { "beaverdamautos.com", true },
{ "bebef.de", true },
{ "bebefofuxo.com.br", true },
{ "bebes.uno", true },
@@ -4242,7 +4358,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "beckenhamcastles.co.uk", true },
{ "beckerantiques.com", true },
{ "beckon.com", true },
- { "becoast.fr", true },
{ "becs.ch", true },
{ "becydog.cz", true },
{ "bedamedia.com", true },
@@ -4259,7 +4374,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bee-creative.nl", true },
{ "bee-line.org.uk", true },
{ "bee.clothing", true },
- { "bee.supply", true },
{ "bee.tools", true },
{ "beechwoodmetalworks.com", true },
{ "beehive.govt.nz", true },
@@ -4278,6 +4392,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "beekeeping.clothing", true },
{ "beekeeping.tools", true },
{ "beeksnetwork.nl", true },
+ { "beelen.fr", true },
{ "beelit.com", true },
{ "beeming.net", true },
{ "beercandle.com", true },
@@ -4323,6 +4438,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "beimchristoph.de", true },
{ "beinad.com", true },
{ "beinad.ru", true },
+ { "bejarano.io", true },
{ "belacapa.com.br", true },
{ "belanglos.de", true },
{ "belani.eu", true },
@@ -4375,7 +4491,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "benburwell.com", true },
{ "benc.io", true },
{ "benceskorka.com", true },
- { "benchcast.com", true },
{ "benchling.com", true },
{ "benchmarkmonument.com", true },
{ "bencorby.com", true },
@@ -4431,7 +4546,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bentonweatherstone.co.uk", true },
{ "bentrask.com", true },
{ "benz-hikaku.com", true },
- { "benzi.io", true },
{ "beoordelingen.be", true },
{ "bephoenix.org.uk", true },
{ "bequiia.com", true },
@@ -4439,6 +4553,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "berasavocate.com", true },
{ "berdaguermontes.eu", false },
{ "bergenhave.nl", true },
+ { "berger-chiro.com", true },
{ "bergevoet-fa.nl", true },
{ "bergfreunde.de", true },
{ "bergfreunde.dk", true },
@@ -4459,6 +4574,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bergmann-fotografin-koeln.de", true },
{ "bergmann-fotografin-muenchen.de", true },
{ "bergmann-fotografin-stuttgart.de", true },
+ { "bergstoneware.com", true },
{ "berichtsheft-vorlage.de", true },
{ "berikod.ru", true },
{ "berliancom.com", false },
@@ -4469,6 +4585,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bernadetteanderes.ch", true },
{ "bernardcontainers.be", true },
{ "bernarddickens.com", true },
+ { "bernardez-photo.com", true },
{ "bernardfischer.fr", true },
{ "bernardgo.com", true },
{ "bernat.ch", true },
@@ -4476,6 +4593,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bernd-leitner-fotodesign.com", true },
{ "bernd-leitner-fotodesign.de", true },
{ "bernd-leitner.de", true },
+ { "berndklaus.at", true },
{ "bernhard-seidenspinner.de", true },
{ "bernhardkau.de", true },
{ "bernhardluginbuehl.ch", true },
@@ -4501,15 +4619,34 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "besb.io", true },
{ "besb66.com", true },
{ "beschriftung-metz.de", true },
+ { "bescover.com", true },
{ "beserberg.tk", true },
{ "besole.ch", true },
{ "bespaarenergie.click", true },
- { "bespaarnu.click", true },
{ "bespokestraps.com", true },
{ "besser-beissen.de", true },
{ "bessettenotaire.com", true },
+ { "best-accounting-schools.com", true },
+ { "best-art-colleges.com", true },
+ { "best-baptist-colleges.com", true },
+ { "best-beauty-schools.com", true },
+ { "best-business-colleges.com", true },
+ { "best-catholic-colleges.com", true },
+ { "best-community-colleges.com", true },
+ { "best-culinary-colleges.com", true },
+ { "best-education-schools.com", true },
+ { "best-engineering-colleges.com", true },
{ "best-essay-service.com", true },
+ { "best-graduate-programs.com", true },
+ { "best-hvac-schools.com", true },
+ { "best-lutheran-colleges.com", true },
+ { "best-management-schools.com", true },
+ { "best-marketing-schools.com", true },
+ { "best-music-colleges.com", true },
+ { "best-nursing-colleges.com", true },
{ "best-of-bounce.co.uk", true },
+ { "best-pharmacy-schools.com", true },
+ { "best-trucking-schools.com", true },
{ "best-wallpaper.net", true },
{ "best10websitebuilders.com", true },
{ "best2pay.net", true },
@@ -4518,11 +4655,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bestattungshaus-kammerer.de", true },
{ "bestautoinsurance.com", true },
{ "bestbatteriesonline.com", true },
+ { "bestbefore.com", true },
{ "bestbrakes.com", true },
{ "bestbridal.top", true },
{ "bestbyte.com.br", true },
{ "bestcellular.com", false },
{ "bestdating.today", true },
+ { "bestelectricnd.com", true },
{ "bestemailmarketingsoftware.org", true },
{ "bestesb.com", true },
{ "bestesb.net", true },
@@ -4540,10 +4679,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bestmotherfucking.website", true },
{ "bestoffert.club", true },
{ "bestoliveoils.com", true },
- { "bestparking.xyz", true },
+ { "bestpal.eu", true },
{ "bestpartyhire.com", true },
{ "bestperfumebrands.com", true },
- { "bestpig.fr", true },
{ "bestschools.io", true },
{ "bestseries.tv", true },
{ "bestshoesmix.com", true },
@@ -4675,6 +4813,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "biblioblog.fr", true },
{ "bibliomarkt.ch", true },
{ "biblionaut.net", true },
+ { "biblioporn.com", true },
{ "bibliotekarien.se", true },
{ "biboumail.fr", true },
{ "bibuch.com", true },
@@ -4718,12 +4857,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bigjohn.ru", true },
{ "biglou.com", false },
{ "bignumworks.com", true },
+ { "bigorbitgallery.org", true },
{ "bigsisterchannel.com", true },
{ "bigskymontanalandforsale.com", true },
{ "bigwiseguide.com", true },
{ "bihub.io", true },
{ "biilo.com", true },
- { "bijouxbrasil.com.br", true },
{ "bijouxcherie.com", true },
{ "bijuteriicualint.ro", true },
{ "bike-discount.de", true },
@@ -4752,7 +4891,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bilibili.red", true },
{ "bilimoe.com", true },
{ "bilke.org", true },
- { "billaud.eu.org", true },
{ "billgoldstein.name", true },
{ "billhartzer.com", true },
{ "billiger-mietwagen.de", true },
@@ -4764,7 +4902,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "billionkiaparts.com", true },
{ "billogram.com", true },
{ "billpro.com", false },
- { "billpro.com.au", true },
{ "billrhodesbakery.com", true },
{ "billy.pictures", true },
{ "billyoh.com", true },
@@ -4790,7 +4927,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "binaryappdev.com", true },
{ "binarycreations.scot", true },
{ "binarydream.fi", true },
- { "binaryevolved.com", true },
{ "binaryrebel.net", true },
{ "binarystud.io", true },
{ "binbin9.com", true },
@@ -4803,6 +4939,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "binkanhada.biz", true },
{ "binkconsulting.be", true },
{ "binnenmeer.de", true },
+ { "binsp.net", true },
{ "binti.com", true },
{ "bintooshoots.com", true },
{ "bio-disinfestazione.it", true },
@@ -4828,7 +4965,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "biohappiness.com", true },
{ "bioharmony.ca", true },
{ "biointelligence-explosion.com", true },
+ { "bioknowme.com", true },
{ "bioligo.ch", true },
+ { "biologis.ch", true },
+ { "biology-colleges.com", true },
{ "biomasscore.com", true },
{ "biometrics.es", true },
{ "biomodra.cz", true },
@@ -4838,6 +4978,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "biosbits.org", true },
{ "bioshine.com.sg", true },
{ "biosignalanalytics.com", true },
+ { "biospeak.solutions", true },
{ "biosphere.cc", true },
{ "biotechware.com", true },
{ "bipyo.com", true },
@@ -4862,14 +5003,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "birthright.website", true },
{ "birzan.org", true },
{ "bisa-sis.net", true },
+ { "bischoff-mathey.family", true },
{ "biscoint.io", true },
{ "biser-borisov.eu", true },
{ "bismarck-tb.de", true },
{ "biso.ga", true },
{ "bison.co", true },
+ { "bisq.community", true },
{ "bissalama.org", true },
{ "bisschopssteeg.nl", true },
{ "bistrocean.com", true },
+ { "bistrodeminas.com", true },
{ "bistrotdelagare.fr", true },
{ "bit-cloud.de", true },
{ "bit-rapid.com", true },
@@ -4888,7 +5032,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bitburner.de", true },
{ "bitcalt.eu.org", true },
{ "bitcalt.ga", true },
- { "bitclubfun.com", true },
{ "bitcoin-india.net", true },
{ "bitcoin-india.org", true },
{ "bitcoin.asia", true },
@@ -4932,12 +5075,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bitmainwarranty.com", true },
{ "bitmarket.net", true },
{ "bitmarket.pl", true },
+ { "bitmask.me", true },
{ "bitmessage.ch", true },
{ "bitmidi.com", true },
{ "bitminter.com", true },
{ "bitmoe.com", true },
{ "bitmon.net", true },
{ "bitok.com", true },
+ { "bitpoll.de", true },
+ { "bitpoll.org", true },
{ "bitpumpe.net", true },
{ "bitref.com", true },
{ "bitrush.nl", true },
@@ -4946,6 +5092,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bitshaker.net", true },
{ "bitskins.co", true },
{ "bitskrieg.net", true },
+ { "bitsoffreedom.nl", true },
{ "bitstorm.nl", true },
{ "bitstorm.org", true },
{ "bitsum.com", true },
@@ -4972,6 +5119,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bjarnerest.de", true },
{ "bjl5689.com", true },
{ "bjl5689.net", true },
+ { "bjmun.cn", true },
{ "bjornhelmersson.se", true },
{ "bjornjohansen.no", true },
{ "bjs.gov", true },
@@ -4989,6 +5137,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bl4ckb0x.info", true },
{ "bl4ckb0x.net", true },
{ "bl4ckb0x.org", true },
+ { "blaauwgeers.pro", true },
+ { "blaauwgeers.travel", true },
{ "blabber.im", true },
{ "blablacar.co.uk", true },
{ "blablacar.com", true },
@@ -5032,6 +5182,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "blackgate.org", true },
{ "blackhat.dk", true },
{ "blackhelicopters.net", true },
+ { "blackhell.xyz", true },
{ "blackhillsinfosec.com", true },
{ "blackilli.de", true },
{ "blackislegroup.com", true },
@@ -5079,16 +5230,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "blendr.com", true },
{ "blenheimears.com", true },
{ "blenneros.net", false },
- { "blessedearth.com.au", true },
{ "blessedguy.com", true },
{ "blessedguy.net", false },
+ { "bleutecmedia.com", true },
{ "blewebprojects.com", true },
{ "blichmann.eu", true },
{ "blidz.com", true },
{ "blieque.co.uk", true },
{ "bliesekow.net", true },
- { "bliker.ga", true },
{ "blikk.no", true },
+ { "blinder.com.co", true },
{ "blindpigandtheacorn.com", true },
{ "blinds-unlimited.com", true },
{ "bling9.com", true },
@@ -5117,7 +5268,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "block65.com", true },
{ "blockchain.com", true },
{ "blockchain.info", true },
- { "blockchainced.com", true },
{ "blockchaindaigakko.jp", true },
{ "blockchainwhiz.com", true },
{ "blockcheck.network", true },
@@ -5176,11 +5326,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bluecon.ninja", true },
{ "bluecrazii.nl", true },
{ "blued.moe", true },
+ { "bluedata.ltd", true },
{ "bluedeck.org", true },
{ "blueflare.org", true },
{ "bluefrag.com", true },
{ "bluefuzz.nl", true },
- { "bluehelixmusic.com", true },
{ "blueimp.net", true },
{ "blueliquiddesigns.com.au", true },
{ "bluemeda.web.id", true },
@@ -5192,7 +5342,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "blueperil.de", true },
{ "bluepoint.one", true },
{ "bluepostbox.de", true },
- { "blueprintloans.co.uk", true },
{ "bluerootsmarketing.com", true },
{ "blues-and-pictures.com", true },
{ "blueskycoverage.com", true },
@@ -5203,7 +5352,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bluex.info", true },
{ "bluex.net", true },
{ "bluex.org", true },
- { "blueyed.eu", true },
{ "blui.ml", true },
{ "bluiandaj.ml", true },
{ "bluimedia.com", true },
@@ -5214,10 +5362,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "blupig.net", true },
{ "bluproducts.com.es", true },
{ "blurringexistence.net", true },
+ { "blusens.com", true },
{ "blusmurf.net", true },
{ "blyat.science", true },
{ "blyth.me.uk", true },
{ "blzrk.com", true },
+ { "bm-immo.ch", true },
{ "bmhglobal.com.au", true },
{ "bmone.net", true },
{ "bmriv.com", true },
@@ -5250,6 +5400,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "boattrader.com.au", true },
{ "bobaly.es", true },
{ "bobancoamigo.com", true },
+ { "bobaobei.net", true },
{ "bobazar.com", true },
{ "bobcopeland.com", true },
{ "bobiji.com", false },
@@ -5299,6 +5450,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "boldt-metallbau.de", true },
{ "bolektro.de", true },
{ "bolgarnyelv.hu", true },
+ { "bolivarfm.com.ve", true },
{ "bollywood.uno", true },
{ "bologna-disinfestazioni.it", true },
{ "bolovegna.it", true },
@@ -5313,6 +5465,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bonami.pl", true },
{ "bonami.ro", true },
{ "bonami.sk", true },
+ { "bonawehouse.co.uk", true },
{ "bonbonmania.com", true },
{ "bondank.com", true },
{ "bondarenko.dn.ua", true },
@@ -5321,8 +5474,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bondoer.fr", true },
{ "bondskampeerder.nl", true },
{ "bonebunny.de", true },
- { "bonesserver.com", true },
{ "bonfi.net", true },
+ { "bongo.cat", true },
{ "bonibuty.com", true },
{ "bonifacius.be", true },
{ "bonita.com.br", true },
@@ -5340,8 +5493,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bonqoeur.ca", true },
{ "bonrecipe.com", true },
{ "bonsaimedia.nl", true },
+ { "bonux.co", true },
{ "boodaah.com", true },
{ "boodmo.com", true },
+ { "boogaerdtmakelaars.nl", true },
{ "boogiebouncecastles.co.uk", true },
{ "book-in-hotel.com", true },
{ "booker.ly", true },
@@ -5353,17 +5508,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bookingworldspeakers.com", true },
{ "bookluk.com", true },
{ "bookmein.in", true },
- { "bookourdjs.com", true },
{ "booksearch.jp", true },
{ "bookshopofindia.com", true },
{ "booksinthefridge.at", true },
{ "booktracker-org.appspot.com", true },
{ "bool.be", true },
+ { "boombv.com", true },
{ "boomersurf.com", true },
{ "boomshelf.com", true },
{ "boomshelf.org", true },
{ "boonbox.com", true },
- { "boonehenry.co.uk", true },
{ "booox.biz", true },
{ "booox.cc", true },
{ "booox.info", true },
@@ -5377,7 +5531,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "boosinflatablegames.co.uk", true },
{ "boost.fyi", true },
{ "boost.ink", true },
- { "boostgame.win", true },
{ "booter.pw", true },
{ "bootjp.me", false },
{ "bopiweb.com", true },
@@ -5409,8 +5562,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bosun.io", true },
{ "bosworthdental.co.uk", true },
{ "bot-manager.pl", true },
+ { "botezdepoveste.ro", true },
{ "botguard.net", true },
{ "botserver.de", true },
+ { "botsindiscord.me", true },
{ "botstack.host", true },
{ "bottaerisposta.net", true },
{ "bottineauneighborhood.org", true },
@@ -5466,7 +5621,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bouncetasticuk.co.uk", true },
{ "bouncetheparty.co.uk", true },
{ "bounceunlimited.co.uk", true },
- { "bouncewithbovells.com", false },
{ "bouncewrightcastles.co.uk", true },
{ "bouncincastles.co.uk", true },
{ "bouncing-bugs.co.uk", true },
@@ -5488,6 +5642,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bouncycastlehire-norwich.com", true },
{ "bouncycastlehire-sheffield.co.uk", true },
{ "bouncycastlehire.co.uk", true },
+ { "bouncycastlehireauckland.co.nz", true },
{ "bouncycastlehirebarnstaple.co.uk", true },
{ "bouncycastlehirebexley.co.uk", true },
{ "bouncycastlehirechelmsford.org.uk", true },
@@ -5503,7 +5658,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bouncycastleman.co.uk", true },
{ "bouncycastlemangloucestershire.co.uk", true },
{ "bouncycastleparade.com", true },
- { "bouncycastles.me", true },
{ "bouncycastlesgalway.com", true },
{ "bouncycastleshire.co.uk", true },
{ "bouncycastleshireleeds.co.uk", true },
@@ -5628,7 +5782,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brandbuilderwebsites.com", true },
{ "brandcodeconsulting.com", true },
{ "brandcodestyle.com", true },
- { "brando753.xyz", true },
{ "brandongomez.me", true },
{ "brandonhubbard.com", true },
{ "brandonlui.ml", true },
@@ -5646,6 +5799,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brashear.me", true },
{ "brasilbombas.com.br", true },
{ "brasildxn.com.br", true },
+ { "brasileiro.ca", true },
{ "brasserie-mino.fr", true },
{ "brasspipedreams.org", true },
{ "bratislava-airport-taxi.com", true },
@@ -5698,13 +5852,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bremerfriedensforum.de", true },
{ "brendanbatliner.com", true },
{ "brendanscherer.com", true },
+ { "brenden.net.au", true },
{ "brentacampbell.com", true },
{ "brentnewbury.com", true },
{ "bressier.fr", true },
{ "bretcarmichael.com", true },
{ "brettabel.com", true },
{ "brettelliff.com", true },
- { "brettw.xyz", true },
{ "bretz-hufer.de", true },
{ "bretzner.fr", true },
{ "brevboxar.se", true },
@@ -5732,6 +5886,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brid.gy", false },
{ "bridalshoes.com", true },
{ "brideandgroomdirect.ie", true },
+ { "bridgedirectoutreach.com", true },
{ "bridgeglobalmarketing.com", true },
{ "bridgement.com", true },
{ "bridgevest.com", true },
@@ -5740,6 +5895,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "briefassistant.com", true },
{ "briefhansa.de", true },
{ "briefvorlagen-papierformat.de", true },
+ { "briffoud.fr", true },
+ { "briggsleroux.com", true },
{ "brighouse-leisure.co.uk", true },
{ "brightday.bz", true },
{ "brightendofleasecleaning.com.au", true },
@@ -5778,7 +5935,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brockmeyer.net", true },
{ "brockmeyer.org", true },
{ "brodowski.cc", true },
- { "broersma.com", true },
{ "broeselei.at", true },
{ "brokenhands.io", true },
{ "brokenjoysticks.net", true },
@@ -5801,6 +5957,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brownfieldstsc.org", true },
{ "brownihc.com", true },
{ "browsemycity.com", true },
+ { "browserleaks.com", true },
{ "brring.com", true },
{ "bru6.de", true },
{ "brucekovner.com", true },
@@ -5813,16 +5970,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "brunn.email", true },
{ "brunner.ninja", true },
{ "brunohenc.from.hr", true },
+ { "brunoproduit.ch", true },
+ { "brunosouza.org", true },
{ "brush.ninja", true },
{ "bruun.co", true },
{ "bryankaplan.com", true },
{ "bryanquigley.com", true },
{ "bryansmith.net", true },
{ "bryansmith.tech", true },
+ { "brycecanyonnationalpark.com", true },
{ "brzy-svoji.cz", true },
{ "bs-network.net", true },
{ "bs-security.com", true },
- { "bs.sb", true },
{ "bs.to", true },
{ "bs12v.ru", true },
{ "bsa157.org", true },
@@ -5846,6 +6005,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bsidessf.com", true },
{ "bsimerch.com", true },
{ "bslim-e-boutique.com", true },
+ { "bso-buitengewoon.nl", true },
{ "bsociabl.com", true },
{ "bsp-southpool.com", true },
{ "bsquared.org", true },
@@ -5867,11 +6027,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "btorrent.xyz", true },
{ "btrb.ml", true },
{ "btsapem.com", true },
- { "btserv.de", true },
{ "btsoft.eu", true },
{ "btsow.com", true },
{ "bttc.co.uk", true },
- { "btth.live", true },
{ "btth.pl", true },
{ "btth.tv", true },
{ "btth.xyz", true },
@@ -5879,15 +6037,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bturboo.com", true },
{ "bubblegumblog.com", true },
{ "bubblespetspa.com", true },
+ { "bubblin.io", true },
{ "bubblinghottubs.co.uk", true },
{ "bubblybouncers.co.uk", true },
{ "bubhub.io", true },
{ "buch-angucken.de", true },
{ "buchhandlungkilgus.de", true },
{ "buchwegweiser.com", true },
- { "buck.com", true },
{ "buckypaper.com", true },
- { "budaev-shop.ru", true },
{ "buddhismus.net", true },
{ "buddie5.com", true },
{ "buddlycrafts.com", true },
@@ -5906,11 +6063,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "buehnenbande.ch", false },
{ "bueltge.de", true },
{ "buena.me", true },
- { "buergerdialog.net", true },
- { "buergerhaushalt.com", true },
{ "bueroplus.de", true },
{ "bueroschwarz.design", true },
{ "bueroshop24.de", true },
+ { "buettgens.net", true },
{ "buffaloautomation.com", true },
{ "buffaloturf.com.au", true },
{ "buffetbouc.com", true },
@@ -5950,7 +6106,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bulldog-hosting.de", true },
{ "bulledair-savons.ch", true },
{ "bullettags.com", true },
- { "bullpay.com", true },
{ "bullshitmail.nl", true },
{ "bullterrier.nu", true },
{ "bulwarkhost.com", true },
@@ -5985,13 +6140,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "buronwater.com", true },
{ "burotec-sarl.com", true },
{ "burr.is", true },
+ { "bursa3bydgoszcz.pl", true },
{ "bursaries-southafrica.co.za", true },
{ "burtplasticsurgery.com", true },
{ "burtrum.family", true },
{ "burtrum.me", true },
{ "burtrum.name", true },
{ "burtrum.org", true },
+ { "burzcast.ro", true },
{ "burzmali.com", true },
+ { "burzstudios.com", true },
{ "busanhs.bid", true },
{ "busanhs.win", true },
{ "buserror.cn", true },
@@ -6005,6 +6163,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "businessfactors.de", true },
{ "businessimmigration-eu.com", true },
{ "businessimmigration-eu.ru", true },
+ { "businessmadeeasypodcast.com", true },
{ "businessplanexperts.ca", true },
{ "businessradar.com.au", true },
{ "businesswebadmin.com", true },
@@ -6017,21 +6176,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "butarque.es", true },
{ "buthowdoyoubuygroceries.com", true },
{ "butikvip.ru", true },
- { "buttercupstraining.co.uk", true },
+ { "buttermilk.cf", true },
{ "buttonline.ch", true },
{ "buttonrun.com", true },
{ "buturyu.net", true },
{ "buurtgenotencollectief.nl", true },
{ "buurtpreventiefraneker.nl", true },
{ "buxum-communication.ch", true },
+ { "buy-out.jp", true },
{ "buy-thing.com", true },
{ "buyaccessible.gov", true },
+ { "buybike.shop", true },
{ "buycarpet.shop", true },
{ "buycbd.store", true },
{ "buycook.shop", true },
{ "buydissertations.com", true },
{ "buyerdocs.com", true },
- { "buyessayscheap.com", true },
{ "buyhealth.shop", true },
{ "buyinginvestmentproperty.com", true },
{ "buyjewel.shop", true },
@@ -6065,18 +6225,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bwilkinson.co.uk", true },
{ "bwl-earth.club", true },
{ "bws16.de", true },
+ { "bwwb.nu", true },
{ "bx-n.de", true },
{ "bxp40.at", true },
{ "by.cx", true },
{ "byange.pro", true },
{ "byatte.com", true },
- { "bydisk.com", false },
{ "byeskille.no", true },
{ "bygningsregistrering.dk", true },
- { "byiu.info", true },
+ { "byhe.me", true },
+ { "byiu.info", false },
{ "bymark.co", true },
{ "bymike.co", true },
{ "bynder.com", true },
+ { "bynet.cz", true },
{ "bynumlaw.net", true },
{ "bypass.sh", true },
{ "byrko.cz", true },
@@ -6112,6 +6274,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "bythisverse.com", true },
{ "byvshie.com", true },
{ "bywin9.com", true },
+ { "bzhub.bid", true },
{ "bziaks.xyz", true },
{ "bzsparks.com", true },
{ "bztech.com.br", true },
@@ -6126,11 +6289,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "c-webdesign.net", true },
{ "c-world.co.uk", true },
{ "c.cc", true },
- { "c0rn3j.com", true },
{ "c0rporation.com", true },
{ "c2design.it", true },
{ "c2o-library.net", true },
- { "c3hv.cn", true },
{ "c3vo.de", true },
{ "c3w.at", true },
{ "c3wien.at", true },
@@ -6161,9 +6322,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cacaumidade.com.br", true },
{ "caceis.bank", true },
{ "cachetagalong.com", true },
- { "cachethome.com", true },
{ "cachetur.no", true },
- { "cackette.com", true },
{ "cad-noerdlingen.de", true },
{ "cadams.io", true },
{ "cadetsge.ch", true },
@@ -6177,6 +6336,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cadsys.net", true },
{ "cadusilva.com", true },
{ "caesarkabalan.com", true },
+ { "cafe-service.ru", false },
{ "cafedupont.be", true },
{ "cafedupont.co.uk", true },
{ "cafedupont.de", true },
@@ -6190,10 +6350,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cainhosting.com", false },
{ "caitcs.com", true },
{ "caiwenjian.xyz", true },
- { "caizx.com", false },
{ "caja-pdf.es", true },
{ "cajio.ru", true },
{ "cajunuk.co.uk", true },
+ { "cake-time.co.uk", true },
{ "cakestart.net", true },
{ "caketoindia.com", true },
{ "cakingandbaking.com", true },
@@ -6219,9 +6379,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "calculator.tf", true },
{ "calcworkshop.com", true },
{ "caldecotevillagehall.co.uk", true },
- { "caleb.cx", true },
- { "caleb.host", true },
+ { "caldoletto.com", true },
+ { "caleb.cx", false },
{ "calebthompson.io", true },
+ { "calendar.cf", true },
{ "calendarr.com", true },
{ "calendarsnow.com", true },
{ "calendly.com", true },
@@ -6261,6 +6422,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cambodian.dating", true },
{ "cambridge-security.com", true },
{ "cambridgebouncers.co.uk", true },
+ { "cambridgesecuritygroup.org", true },
{ "camcapital.com", true },
{ "camconn.cc", true },
{ "camdesign.pl", true },
@@ -6269,20 +6431,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cameraviva.com.br", true },
{ "camerweb.es", true },
{ "camilomodzz.net", true },
- { "camjobs.net", true },
{ "camolist.com", true },
+ { "camomile.desi", true },
{ "camp-pleinsoleil.ch", true },
{ "camp.co.uk", true },
{ "campaign-ad.com", true },
{ "campaign.gov.uk", true },
{ "campaignagent.com.au", true },
+ { "campaignhelpdesk.org", true },
{ "campaignwiki.org", true },
{ "campamentos.info", true },
{ "campbellapplianceheatingandair.com", true },
{ "campbrainybunch.com", true },
{ "campcambodia.org", true },
{ "campcanada.org", true },
- { "campeoesdofutebol.com.br", true },
{ "campeonatoalemao.com.br", true },
{ "camperdays.de", true },
{ "camperlist.com", true },
@@ -6298,11 +6460,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "campus-discounts.com", true },
{ "campus-finance.com", true },
{ "campusdrugprevention.gov", true },
- { "campusportalng.com", true },
{ "campuswire.com", true },
{ "campvana.com", true },
{ "campwabashi.org", true },
{ "camshowstorage.com", true },
+ { "camshowverse.com", true },
{ "camsky.de", false },
{ "canada-tourisme.ch", true },
{ "canadabread.com", false },
@@ -6318,6 +6480,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "canarymod.net", true },
{ "cancerdata.nhs.uk", true },
{ "candaceplayforth.com", true },
+ { "candeo-books.nl", true },
{ "candex.com", true },
{ "candicecity.com", true },
{ "candidasa.com", true },
@@ -6337,6 +6500,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "canlidoviz.com", true },
{ "canmipai.com", true },
{ "cannabis-marijuana.com", true },
+ { "cannabismd.com", true },
{ "cannacards.ca", true },
{ "cannahealth.com", true },
{ "cannoli.london", true },
@@ -6355,11 +6519,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cao.la", true },
{ "caodesantohumberto.com.br", true },
{ "caoshan60.com", true },
- { "capacent.is", true },
{ "capachitos.cl", true },
{ "capacityproject.org", true },
{ "capekeen.com", true },
- { "capellidipremoli.com", true },
{ "caphane.com", true },
{ "capimlimaoflores.com.br", true },
{ "capitainebaggy.ch", true },
@@ -6383,8 +6545,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "capstansecurity.com", true },
{ "capstoneinsights.com", true },
{ "captain-dandelion.com", true },
+ { "captainark.net", true },
{ "captainsinn.com", true },
{ "captalize.com", true },
+ { "captivationtheory.com", true },
{ "capturapp.com", false },
{ "capture-app.com", true },
{ "captured-symphonies.com", true },
@@ -6418,9 +6582,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "carddreams.es", true },
{ "carddreams.nl", true },
{ "cardelmar.com", true },
- { "cardelmar.de", true },
{ "cardelmar.es", true },
- { "cardexchangesolutions.com", true },
{ "cardgames.com", true },
{ "cardios.srv.br", true },
{ "cardranking.jp", true },
@@ -6443,6 +6605,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "carey.li", false },
{ "careyshop.cn", true },
{ "carezone.com", false },
+ { "carfinancehelp.com", true },
+ { "carfraemill.co.uk", true },
{ "cargobay.net", true },
{ "cargorestraintsystems.com.au", true },
{ "carhunters.cz", true },
@@ -6461,6 +6625,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "carlili.fr", true },
{ "carlingfordapartments.com.au", true },
{ "carlmjohnson.net", true },
+ { "carlo.mx", false },
{ "carlobiagi.de", true },
{ "carlocksmith--dallas.com", true },
{ "carlocksmithbaltimore.com", true },
@@ -6476,6 +6641,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "carnet-du-voyageur.com", true },
{ "carnildo.com", true },
{ "caroes.be", true },
+ { "caroffer.ch", true },
+ { "carol-lambert.com", true },
{ "carolcappelletti.com", true },
{ "carolcestas.com", true },
{ "caroli.com", true },
@@ -6524,6 +6691,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cartouche-deal.fr", true },
{ "cartouche24.eu", true },
{ "cartucce24.it", true },
+ { "carun.us", true },
{ "carusorealestate.com", true },
{ "caryefurd.com", true },
{ "casa-due-pur.com", true },
@@ -6531,6 +6699,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "casa-due.com", true },
{ "casa-mea-inteligenta.ro", true },
{ "casa-su.casa", true },
+ { "casaanastasia.ro", true },
{ "casabouquet.com", true },
{ "casacameo.com", false },
{ "casacochecurro.com", true },
@@ -6564,12 +6733,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "casino-trio.com", true },
{ "casinobonuscodes.online", true },
{ "casinocashflow.ru", true },
- { "casinolegal.pt", true },
{ "casinomucho.com", true },
+ { "casinomucho.org", true },
+ { "casinomucho.se", true },
{ "casinoonlinesicuri.com", true },
{ "casio-caisses-enregistreuses.fr", true },
{ "casjay.cloud", true },
- { "casjay.com", true },
{ "casjay.info", true },
{ "casjay.us", true },
{ "casjaygames.com", true },
@@ -6582,7 +6751,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "castle-engine.io", true },
{ "castlecapers.com.au", true },
{ "castlecms.io", true },
- { "castlejackpot.com", true },
{ "castleking.net", true },
{ "castlekingdomstockport.co.uk", true },
{ "castlekingkent.co.uk", true },
@@ -6650,6 +6818,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "caxalt.com", true },
{ "caylercapital.com", true },
{ "cazaviajes.es", true },
+ { "cazes.info", true },
{ "cb-crochet.com", true },
{ "cbbank.com", true },
{ "cbc-hire.co.uk", true },
@@ -6659,6 +6828,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cbdev.de", true },
{ "cbdmarket.space", true },
{ "cbecrft.net", true },
+ { "cbhq.net", true },
{ "cbin168.com", true },
{ "cbintermountainrealty.com", true },
{ "cbk-connect.com", true },
@@ -6677,6 +6847,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ccsource.org", true },
{ "ccss-cces.com", true },
{ "ccsys.com", true },
+ { "cctvcanada.net", true },
{ "cctvview.info", true },
{ "ccu.io", true },
{ "ccu.plus", true },
@@ -6695,7 +6866,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cdbtech.com", true },
{ "cdburnerxp.se", true },
{ "cdda.ch", true },
- { "cdeck.net", true },
{ "cdepot.eu", true },
{ "cdkeykopen.com", true },
{ "cdlcenter.com", true },
@@ -6704,16 +6874,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cdncompanies.com", true },
{ "cdnjs.com", true },
{ "cdns.cloud", true },
+ { "cdnsys.net", true },
{ "cdom.de", true },
{ "cdsdigital.de", true },
{ "cdshining.com", true },
{ "cdu-wilgersdorf.de", true },
{ "cduckett.net", true },
{ "ce-pimkie.fr", true },
+ { "ceagriproducts.com", true },
{ "cebz.org", true },
{ "ceciliacolombara.com", true },
{ "cecipu.gob.cl", true },
{ "ced-services.nl", true },
+ { "cedarcitydining.com", true },
{ "cedarslodge.com", true },
{ "cedriccassimo.ch", true },
{ "cedriccassimo.com", true },
@@ -6725,12 +6898,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "celebrityhealthcritic.com", true },
{ "celebrityscope.net", true },
{ "celectro-pro.com", true },
+ { "celeraindustries.tk", true },
{ "celiendev.ch", true },
{ "celine-patisserie.fr", true },
{ "celltek-server.de", false },
{ "celluliteorangeskin.com", true },
{ "celluliteremovaldiet.com", true },
- { "celtadigital.com", true },
{ "celti.ie.eu.org", true },
{ "celti.name", true },
{ "celuliteonline.com", true },
@@ -6763,6 +6936,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "centrobill.com", true },
{ "centrojovencuenca.es", true },
{ "centromasterin.com", true },
+ { "centroperugia.gr", true },
{ "centrosocialferrel.pt", true },
{ "centrumhodinek.cz", true },
{ "centruvechisv.ro", true },
@@ -6775,7 +6949,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "centurioninfosec.hk", true },
{ "centurioninfosec.sg", true },
{ "centurionunderground.com", true },
- { "century-group.com", true },
{ "ceopedia.org", true },
{ "ceoptique.com", true },
{ "ceramixcoating.nl", true },
@@ -6868,12 +7041,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chaifeng.com", true },
{ "chainedunion.info", true },
{ "chaip.org", true },
- { "chairinstitute.com", true },
{ "chaisystems.net", true },
{ "chaletdemontagne.org", true },
{ "chaletmanager.com", true },
{ "chaletpierrot.ch", true },
{ "chaleur.com", true },
+ { "chalker.io", true },
{ "challengeblog.org", true },
{ "challstrom.com", true },
{ "chamathellawala.com", true },
@@ -6885,7 +7058,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "championcastles.ie", true },
{ "champions.co", true },
{ "championsofpowerfulliving.com", true },
+ { "championweb.co.nz", true },
{ "championweb.com.au", true },
+ { "championweb.nz", true },
{ "champonthis.de", true },
{ "champserver.net", false },
{ "chanddriving.co.uk", true },
@@ -6896,6 +7071,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "changesfor.life", true },
{ "changethislater.com", true },
{ "channeladam.com", true },
+ { "chanoyu-gakkai.jp", true },
{ "chantalguggenbuhl.ch", true },
{ "chanz.com", true },
{ "chaos-games.org", true },
@@ -6925,7 +7101,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "charl.eu", true },
{ "charlenevondell.com", true },
{ "charles-darwin.com", true },
- { "charlesbwise.com", true },
{ "charlesjay.com", true },
{ "charlesmilette.net", true },
{ "charlespitonltd.com", true },
@@ -6962,7 +7137,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chat2.cf", true },
{ "chat40.net", true },
{ "chatbelgie.eu", true },
- { "chatbot.one", true },
{ "chatbotclic.com", true },
{ "chatbotclick.com", true },
{ "chatbots.systems", true },
@@ -6970,6 +7144,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chateau-de-lisle.fr", true },
{ "chateaudestrainchamps.com", true },
{ "chatfacile.org", true },
+ { "chatint.com", true },
{ "chatitaly.org", true },
{ "chatme.im", false },
{ "chatnederland.eu", true },
@@ -6999,6 +7174,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chcoc.gov", true },
{ "chcsct.com", true },
{ "chd-expert.fr", true },
+ { "cheap-colleges.com", true },
{ "cheapalarmparts.com.au", true },
{ "cheapcaribbean.com", true },
{ "cheapessay.net", true },
@@ -7043,6 +7219,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cheez.systems", true },
{ "cheezflix.uk", true },
{ "chefwear.com", true },
+ { "chehalemgroup.com", true },
{ "cheladmin.ru", true },
{ "chelema.xyz", true },
{ "cheltenhambounce.co.uk", true },
@@ -7050,7 +7227,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cheltik.ru", true },
{ "chemicalcrux.org", true },
{ "chemiphys.com", true },
+ { "chemistry-schools.com", true },
{ "chenapartment.com", true },
+ { "chengxindong.com", true },
{ "chenkun.pro", true },
{ "chenky.com", true },
{ "chenna.me", true },
@@ -7059,7 +7238,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chentianyi.cn", true },
{ "chenzhekl.me", true },
{ "chenzhipeng.com.cn", true },
- { "cheolguso.com", true },
{ "cherevoiture.com", true },
{ "cherie-belle.com", true },
{ "cherrett.digital", true },
@@ -7067,7 +7245,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cherryonit.com", true },
{ "cherrywoodtech.com", true },
{ "chertseybouncycastles.co.uk", true },
+ { "chesapeakebaychristmas.com", true },
+ { "chesscoders.com", true },
{ "chesspoint.ch", true },
+ { "chesterlestreetasc.co.uk", true },
{ "chestnut.cf", true },
{ "chevy37.com", true },
{ "chevymotor-occasions.be", true },
@@ -7098,6 +7279,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "childrenandmedia.org.au", true },
{ "childrenfirstalways.org", true },
{ "childreninadversity.gov", true },
+ { "childrens-room.com", true },
{ "childrensentertainmentleicester.co.uk", true },
{ "childrenspartiesrus.com", true },
{ "childstats.gov", true },
@@ -7144,6 +7326,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chl.la", true },
{ "chloescastles.co.uk", true },
{ "chlth.com", true },
+ { "chmielarz.it", true },
{ "chmsoft.com.ua", true },
{ "chmsoft.ru", true },
{ "chmurakotori.ml", true },
@@ -7153,11 +7336,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chocolate13tilias.com.br", true },
{ "chocolatesandhealth.com", true },
{ "chocolatier-tristan.ch", true },
- { "chocotough.nl", false },
{ "choisirmonerp.com", true },
{ "chokladfantasi.net", true },
- { "chollima.pro", true },
{ "chon.io", true },
+ { "chonghe.org", true },
{ "chook.as", true },
{ "choootto.club", true },
{ "choosemypc.net", true },
@@ -7174,6 +7356,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chr0me.sh", true },
{ "chris-edwards.net", true },
{ "chrisaitch.com", true },
+ { "chrisb.me", true },
+ { "chrisb.xyz", true },
{ "chrisbryant.me.uk", true },
{ "chrisburnell.com", true },
{ "chriscarey.com", true },
@@ -7192,7 +7376,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "christadelphiananswers.org", true },
{ "christadelphians.eu", true },
{ "christchurchbouncycastles.co.uk", true },
- { "christec.net", true },
{ "christensenplace.us", true },
{ "christerwaren.fi", true },
{ "christiaanconover.com", true },
@@ -7226,13 +7409,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "christopherkennelly.com", true },
{ "christopherl.com", true },
{ "christopherpritchard.co.uk", true },
+ { "christopherstocks.online", true },
{ "christophertruncer.com", true },
- { "christophkreileder.com", true },
{ "christophsackl.de", true },
{ "christthekingparish.net", true },
{ "christtheredeemer.us", true },
{ "chriswald.com", true },
{ "chriswarrick.com", true },
+ { "chriswbarry.com", true },
{ "chriswells.io", true },
{ "chromcraft-revington.com", true },
{ "chrome-devtools-frontend.appspot.com", true },
@@ -7242,7 +7426,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chromebooksforwork.com", true },
{ "chromiumbugs.appspot.com", true },
{ "chromiumcodereview.appspot.com", false },
- { "chronic101.xyz", true },
{ "chroniclesofgeorge.com", true },
{ "chronology.no", true },
{ "chronoshop.cz", true },
@@ -7263,8 +7446,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "chxdf.net", true },
{ "chyen.cc", true },
{ "chytraauta.cz", true },
- { "chziyue.com", true },
{ "ci-fo.org", true },
+ { "ci-suite.com", true },
{ "ci5.me", true },
{ "ciancode.com", true },
{ "cianmawhinney.me", true },
@@ -7274,7 +7457,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cidersus.com.ec", true },
{ "cie-theatre-montfaucon.ch", true },
{ "cielbleu.org", true },
- { "cielly.com", true },
{ "cifop-numerique.fr", true },
{ "cig-dem.com", true },
{ "cigar-cartel.com", true },
@@ -7285,7 +7467,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cimfax.com", true },
{ "cinafilm.com", true },
{ "cinay.pw", true },
- { "cindey.io", true },
{ "cindydudley.com", true },
{ "cine-music.de", true },
{ "cine.to", true },
@@ -7294,7 +7475,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cinemasetfree.com", true },
{ "cinemysticism.com", true },
{ "cineplex.my", true },
- { "ciner.is", true },
{ "cinnabon.com", true },
{ "cinq-elements.com", true },
{ "cinq-elements.fr", true },
@@ -7310,6 +7490,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cip.md", true },
{ "cipartyhire.co.uk", true },
{ "cipher.team", true },
+ { "cipherboy.com", true },
{ "ciphersuite.info", true },
{ "ciphrex.com", true },
{ "cipri.com", true },
@@ -7324,7 +7505,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "circu.ml", true },
{ "circulatedigital.com", true },
{ "circule.cc", true },
- { "cirfi.com", true },
{ "ciri.com.co", true },
{ "cirope.com", true },
{ "cirrus0.de", true },
@@ -7363,7 +7543,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cityoftitansmmo.com", true },
{ "citysportapp.com", true },
{ "cityworksonline.com", true },
- { "ciubotaru.tk", true },
{ "ciurcasdan.eu", true },
{ "civilg20.org", true },
{ "civillines.nl", true },
@@ -7393,7 +7572,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cktennis.com", true },
{ "cl.search.yahoo.com", false },
{ "clacetandil.com.ar", true },
- { "clad.cf", true },
{ "claimconnect.com", true },
{ "claimconnect.us", true },
{ "claimjeidee.be", true },
@@ -7419,11 +7597,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "classroomconductor.com", true },
{ "classroomcountdown.co.nz", true },
{ "classteaching.com.au", true },
+ { "classyvaper.de", true },
{ "claude-leveille.com", true },
{ "claude.tech", true },
{ "claudia-urio.com", true },
{ "claus-bahr.de", true },
- { "clauseriksen.net", true },
{ "clawe.de", true },
{ "clawhammer.dk", true },
{ "clayandcottonkirkwood.com", true },
@@ -7450,7 +7628,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "clearvoice.com", true },
{ "clemenscompanies.com", true },
{ "clement-beaufils.fr", true },
- { "clementfevrier.fr", true },
{ "cles-asso.fr", true },
{ "cles.jp", true },
{ "clevertarget.ru", true },
@@ -7464,7 +7641,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "clickclock.cc", true },
{ "clickenergy.com.au", true },
{ "clickphish.com", true },
- { "clicksaveandprint.com", true },
{ "clien.net", true },
{ "client.coach", true },
{ "clientboss.com", true },
@@ -7482,6 +7658,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "clinicaltrials.gov", true },
{ "clinicasmedicas.com.br", true },
{ "clinicminds.com", true },
+ { "cliniquecomplementaire.com", true },
{ "cliniquevethuy.be", true },
{ "clintonlibrary.gov", true },
{ "clintonplasticsurgery.com", true },
@@ -7490,7 +7667,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "clive.io", true },
{ "clmde.de", true },
{ "clnc.to", true },
- { "clnet.com.au", true },
{ "clnnet.ch", true },
{ "cloaked.ch", true },
{ "clochix.net", true },
@@ -7511,7 +7687,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cloud.google.com", true },
{ "cloud.gov", true },
{ "cloud42.ch", false },
- { "cloud58.org", true },
{ "cloud9bouncycastlehire.com", true },
{ "cloudapps.digital", true },
{ "cloudbolin.es", true },
@@ -7524,6 +7699,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cloudconsulting.net.za", true },
{ "cloudconsulting.org.za", true },
{ "cloudconsulting.web.za", true },
+ { "cloudcrux.net", true },
{ "cloudey.net", true },
{ "cloudfiles.at", true },
{ "cloudflare-dns.com", true },
@@ -7559,11 +7735,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "clownindeklas.nl", true },
{ "cloxy.com", true },
{ "clr3.com", true },
- { "clsfoundationrepairandwaterproofing.com", true },
{ "clsimage.com", true },
{ "clsoft.ch", true },
{ "clu-in.org", true },
{ "club-adulti.ro", true },
+ { "club-climate.com", true },
{ "club-corsicana.de", true },
{ "club-creole.com", true },
{ "club-duomo.com", true },
@@ -7582,6 +7758,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "clubfamily.de", true },
{ "clubgalaxy.futbol", true },
{ "clubiconkenosha.com", true },
+ { "clubmate.rocks", true },
{ "clubmini.jp", true },
{ "clubnoetig-ink2g.de", true },
{ "clubon.space", true },
@@ -7611,6 +7788,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cmngroup.com", true },
{ "cmngroupe.com", true },
{ "cmplainpalais.ch", true },
+ { "cms-weble.jp", true },
{ "cmskeyholding.co.uk", true },
{ "cmskeyholding.com", true },
{ "cmusical.es", true },
@@ -7626,7 +7804,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cnc-lehrgang.de", true },
{ "cncado.net", true },
{ "cncbazar365.com", true },
- { "cncmachinemetal.com", true },
{ "cncrans.ch", true },
{ "cnet-hosting.com", true },
{ "cni-certing.it", true },
@@ -7643,8 +7820,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "coalitionministries.org", true },
{ "coalpointcottage.com", true },
{ "coastline.net.au", true },
- { "coathangastrangla.com", true },
- { "coathangastrangler.com", true },
{ "coatl-industries.com", true },
{ "cobalt.io", true },
{ "cobaltgp.com", true },
@@ -7685,11 +7860,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "codeferm.com", true },
{ "codefordus.de", true },
{ "codefordus.nrw", true },
+ { "codein.ca", true },
{ "codeine.co.uk", true },
{ "codeit.guru", true },
{ "codeit.us", true },
{ "codejots.com", true },
{ "codejunkie.de", false },
+ { "codemill.se", true },
{ "codemonster.eu", true },
{ "codenode.io", true },
{ "codeofthenorth.com", true },
@@ -7701,12 +7878,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "codereview.appspot.com", false },
{ "codereview.chromium.org", false },
{ "coderme.com", true },
- { "codersbistro.com", true },
{ "codes.pk", true },
{ "codesplain.in", true },
{ "codesport.io", true },
{ "codespromo.be", true },
- { "codestep.io", true },
{ "codestudies.net", true },
{ "codesyncro.com", true },
{ "codetheworld.com", true },
@@ -7745,6 +7920,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cognitip.com", true },
{ "cognitivecomputingconsortium.com", true },
{ "cognitohq.com", true },
+ { "cognixia.com", true },
{ "cogsquad.house", true },
{ "coi-verify.com", true },
{ "coiffeurschnittstelle.ch", true },
@@ -7764,7 +7940,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "coinf.it", true },
{ "coinflux.com", true },
{ "coingate.com", true },
- { "coinjar-sandbox.com", true },
{ "coinlist.co", false },
{ "coinloan.io", true },
{ "coinmewallet.com", true },
@@ -7788,7 +7963,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "colengo.com", true },
{ "colf.online", true },
{ "colibris.xyz", true },
- { "colincampbell.me", true },
{ "colinchartier.com", true },
{ "colincogle.name", true },
{ "colinsnaith.co.uk", true },
@@ -7835,6 +8009,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "coloristcafe.com", true },
{ "colorsbycarin.com", true },
{ "colossal-events.co.uk", true },
+ { "colotimes.com", true },
{ "colourfulcastles.co.uk", true },
{ "colpacpackaging.com", true },
{ "colson-occasions.be", true },
@@ -7842,7 +8017,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "columbuswines.com", true },
{ "colyakootees.com", true },
{ "com-in.de", true },
- { "com-news.io", true },
{ "comalia.com", true },
{ "comandofilmes.club", true },
{ "comarkinstruments.net", true },
@@ -7859,8 +8033,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "comercialtpv.com", true },
{ "comerford.net", true },
{ "comestoarra.com", true },
- { "cometbot.cf", true },
{ "cometcache.com", true },
+ { "cometonovascotia.ca", true },
{ "comevius.com", true },
{ "comevius.org", true },
{ "comevius.xyz", true },
@@ -7891,6 +8065,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "communityflow.info", true },
{ "communote.net", true },
{ "como-se-escribe.com", true },
+ { "comocurarlagastritis24.online", true },
{ "comocurarlagastritistratamientonatural.com", true },
{ "comodesinflamarlashemorroides.org", true },
{ "comodo.nl", true },
@@ -7900,10 +8075,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "comogene.com", true },
{ "comohacerelamoraunhombrenet.com", true },
{ "comohacerpara.com", true },
+ { "comoimportar.net", true },
{ "comopuededejardefumar.net", true },
{ "comoquitarlacaspa24.com", true },
{ "comoquitarlasestriasrapidamente.com", true },
{ "comosatisfaceraunhombreenlacamaydejarloloco.com", true },
+ { "comosecarabarriga.net", true },
+ { "comoseduzir.net", true },
{ "comosefazisto.com.br", true },
{ "comp2go.com.au", true },
{ "compactchess.cc", true },
@@ -7937,9 +8115,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "compostatebien.com.ar", true },
{ "compoundingrxusa.com", true },
{ "compraneta.com", false },
+ { "comprasoffie.com.br", true },
{ "compreautomacao.com.br", true },
{ "compree.com", true },
- { "compros.me", true },
{ "compservice.in.ua", true },
{ "comptu.com", true },
{ "compubench.com", true },
@@ -7949,11 +8127,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "compusolve.nl", true },
{ "computehealth.com", true },
{ "computer-acquisti.com", true },
+ { "computer-science-schools.com", true },
{ "computeracademy.co.za", true },
{ "computerassistance.co.uk", true },
{ "computerbas.nl", true },
{ "computerbase.de", true },
{ "computercraft.net", true },
+ { "computeremergency.com.au", false },
{ "computerhilfe-feucht.de", true },
{ "computernetwerkwestland.nl", true },
{ "computerslotopschool.nl", true },
@@ -7970,6 +8150,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "concertsenboite.fr", true },
{ "concertsto.com", true },
{ "conciliumnotaire.ca", true },
+ { "conclinica.com.br", true },
{ "concordsoftwareleasing.com", true },
{ "concretelevelingsystems.com", true },
{ "concreterepairatlanta.com", true },
@@ -7998,10 +8179,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "confidential.network", true },
{ "config.schokokeks.org", false },
{ "confiwall.de", true },
+ { "conflux.tw", true },
{ "conformax.com.br", true },
{ "conformist.jp", true },
{ "confucio.cl", true },
- { "confuddledpenguin.com", true },
{ "cong5.net", true },
{ "congineer.com", true },
{ "congobunkering.com", true },
@@ -8026,6 +8207,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "connext.de", true },
{ "connictro.de", true },
{ "connorhatch.com", true },
+ { "connorsmith.co", true },
{ "connyduck.at", true },
{ "conociendosalama.com", true },
{ "conocimientosdigitales.com", true },
@@ -8040,7 +8222,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "consec-systems.de", true },
{ "consejosdenutricion.com", true },
{ "consensoprivacy.it", true },
- { "conservados.com.br", true },
{ "conservatoriesincornwall.com", true },
{ "consideredgifts.com", true },
{ "consilium-vitae.ch", true },
@@ -8050,16 +8231,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "console.rest", true },
{ "consommateuraverti.com", true },
{ "consonare.de", true },
+ { "conspiracyservers.com", true },
{ "constancechen.me", true },
{ "constant-rough.de", true },
{ "constares.de", true },
{ "constructexpres.ro", true },
{ "constructieve.nl", true },
+ { "construction-colleges.com", true },
{ "construction-student.co.uk", true },
{ "constructionjobs.com", true },
{ "consul.io", true },
{ "consulenza.pro", true },
- { "consultation.biz.tr", true },
{ "consultimator.com", true },
{ "consultimedia.de", true },
{ "consultoriosodontologicos.com.br", true },
@@ -8131,6 +8313,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "coolbitx.com", true },
{ "cooldan.com", true },
{ "coole-fete.de", true },
+ { "coolerssr.space", true },
{ "coolgifs.de", true },
{ "coolprylar.se", true },
{ "coolrc.me", true },
@@ -8169,7 +8352,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "core.mx", true },
{ "core.org.pt", true },
{ "coreapm.org", true },
- { "corecodec.com", true },
{ "coredump.gr", true },
{ "coreless-stretchfilm.com", true },
{ "corelia.net", true },
@@ -8241,12 +8423,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cosmofunnel.com", true },
{ "cosmundi.de", true },
{ "cosni.co", true },
+ { "cosplayer.com", true },
{ "cospol.ch", true },
{ "costa-rica-reisen.ch", true },
{ "costa-rica-reisen.de", true },
{ "costablanca.villas", true },
{ "costablancavoorjou.com", true },
{ "costcofinance.com", true },
+ { "costellofc.co.uk", true },
{ "costinstefan.eu", true },
{ "costreportdata.com", false },
{ "costulessdirect.com", true },
@@ -8258,7 +8442,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "counstellor.com", true },
{ "counter-team.ch", true },
{ "counterglobal.com", true },
- { "countermail.com", true },
+ { "countermail.com", false },
{ "countermats.net", true },
{ "countersolutions.co.uk", true },
{ "countingto.one", true },
@@ -8271,13 +8455,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "coupe-bordure.com", true },
{ "couponcodesme.com", true },
{ "couragefound.org", true },
- { "coursables.com", true },
{ "coursera.org", true },
{ "courtlistener.com", true },
{ "couscous.recipes", true },
{ "cousincouples.com", true },
{ "coussinsky.net", true },
{ "couvreur-hinault.fr", true },
+ { "covaci.pro", true },
{ "covbounce.co.uk", true },
{ "covenantmatrix.com", true },
{ "covenantoftheriver.org", true },
@@ -8292,7 +8476,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "coweo.cz", true },
{ "coxxs.me", true },
{ "coxxs.moe", true },
- { "cozitop.com.br", true },
{ "cozo.me", true },
{ "cozyeggdesigns.com", true },
{ "cp-st-martin.be", true },
@@ -8314,6 +8497,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cqn.ch", true },
{ "cr.search.yahoo.com", false },
{ "cr0nus.net", true },
+ { "craazzyman21.at", true },
{ "crackcat.de", true },
{ "cracker.in.th", true },
{ "crackle.io", true },
@@ -8346,6 +8530,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "crawler.ninja", true },
{ "crawleybouncycastles.co.uk", true },
{ "crawlspaceandbasementsolutions.com", true },
+ { "crazy-cat.net", true },
{ "crazy-coders.com", true },
{ "crazycastles.ie", true },
{ "crazydomains.ae", true },
@@ -8357,7 +8542,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "crazynoisybizarre.town", true },
{ "crazypaul.com", true },
{ "crbug.com", true },
- { "crc-online.nl", true },
{ "crdmendoza.net", true },
{ "crea-etc.net", true },
{ "crea-shops.ch", true },
@@ -8375,7 +8559,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "creative-wave.fr", true },
{ "creativebites.de", true },
{ "creativecaptiv.es", true },
- { "creativecommons.cl", true },
{ "creativecommons.gr", true },
{ "creativecommons.org", true },
{ "creativeconceptsvernon.com", true },
@@ -8393,7 +8576,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "creativlabor.ch", true },
{ "creatixx-network.de", true },
{ "creators-design.com", true },
- { "creators.co", true },
{ "creators.direct", true },
{ "creatujoya.com", true },
{ "credential.eu", true },
@@ -8403,6 +8585,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "creditkarma.com", true },
{ "creditos-rapidos.com", true },
{ "creditproautos.com", false },
+ { "credittoken.io", true },
{ "creeks-coworking.com", true },
{ "creep.im", true },
{ "creepycraft.nl", true },
@@ -8436,6 +8619,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "crimson.no", true },
{ "crinesdanzantes.be", true },
{ "crip-usk.ba", true },
+ { "criptolog.com", true },
{ "crisisactual.com", true },
{ "crisisnextdoor.gov", true },
{ "crisp.chat", true },
@@ -8446,10 +8630,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cristarta.com", true },
{ "cristau.org", true },
{ "cristiandeluxe.com", false },
+ { "critcola.com", true },
{ "critical.today", false },
{ "criticalsurveys.co.uk", true },
{ "crizin.io", true },
{ "crm.onlime.ch", false },
+ { "crm114d.com", true },
{ "croceverdevb.it", true },
{ "crochetnerd.com", true },
{ "croisedanslemetro.com", true },
@@ -8479,6 +8665,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "crossoverit.com", true },
{ "crosssellguide.com", true },
{ "crow.tw", true },
+ { "crowd.supply", true },
{ "crowdbox.net", true },
{ "crowdcloud.be", true },
{ "crowdliminal.com", true },
@@ -8492,6 +8679,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "croydonapartments.com.au", true },
{ "croydonbouncycastles.co.uk", true },
{ "crrev.com", true },
+ { "crsmsodry.cz", true },
{ "crstat.ru", true },
{ "crt.sh", true },
{ "crt2014-2024review.gov", true },
@@ -8507,24 +8695,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cryothanasia.com", true },
{ "cryp.no", true },
{ "crypt.is-by.us", true },
+ { "cryptagio.com", true },
{ "cryptearth.de", true },
{ "crypted.chat", true },
{ "crypteianetworks.com", true },
{ "crypticshell.co.uk", true },
- { "crypto-navi.org", true },
+ { "crypto-armory.com", true },
{ "crypto.cat", false },
{ "crypto.graphics", true },
{ "crypto.is", false },
{ "crypto.tube", true },
{ "cryptobin.co", true },
{ "cryptocon.org", true },
- { "cryptodyno.ninja", true },
- { "cryptoegg.ca", true },
{ "cryptofan.org", true },
- { "cryptofrog.co", true },
{ "cryptography.ch", true },
{ "cryptography.io", true },
{ "cryptoguidemap.com", true },
+ { "cryptojacks.io", true },
{ "cryptojourney.com", true },
{ "cryptolinc.com", true },
{ "cryptology.ch", true },
@@ -8560,19 +8747,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "csd-sevnica.si", true },
{ "csfcloud.com", true },
{ "csfd.cz", true },
- { "csfloors.co.uk", true },
{ "csfm.com", true },
- { "csgo.su", true },
+ { "csgo.su", false },
{ "csgoswap.com", true },
- { "csgotwister.com", true },
{ "csharpmarc.net", true },
{ "cshopify.com", true },
{ "csi.lk", true },
{ "csinterstargeneve.ch", true },
- { "cskdoc.com", true },
{ "cskentertainment.co.uk", true },
{ "csmainframe.com", true },
{ "csokolade.hu", true },
+ { "csovek-idomok.hu", true },
{ "csp.ch", true },
{ "cspeti.hu", true },
{ "cspvalidator.org", true },
@@ -8589,12 +8774,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "csvalpha.nl", true },
{ "ct.search.yahoo.com", false },
{ "ctc-transportation.com", true },
+ { "ctcom-peru.com", true },
{ "ctcue.com", true },
{ "ctf.link", true },
{ "cthomas.work", true },
{ "cthulhuden.com", true },
{ "ctj.im", true },
{ "ctl.email", true },
+ { "ctliu.com", true },
{ "ctnguyen.de", true },
{ "ctnguyen.net", true },
{ "ctns.de", true },
@@ -8616,6 +8803,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cubia3.com", true },
{ "cubia4.com", true },
{ "cubile.xyz", true },
+ { "cubing.net", true },
{ "cublick.com", true },
{ "cubos.io", false },
{ "cubostecnologia.com", false },
@@ -8636,7 +8824,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cultofperf.org.uk", true },
{ "culturedcode.com", true },
{ "culturerain.com", true },
- { "cultureroll.com", true },
{ "culturesouthwest.org.uk", true },
{ "cumberlandrivertales.com", true },
{ "cumplegenial.com", true },
@@ -8664,6 +8851,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "currentlyusa.com", true },
{ "currentobserver.com", true },
{ "currynissanmaparts.com", true },
+ { "cursos-trabajadores.net", true },
{ "cursos.com", true },
{ "cursosforex.com", true },
{ "cursosgratuitos.com.br", true },
@@ -8712,6 +8900,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cuvva.us", true },
{ "cuxpool.club", true },
{ "cvc.digital", true },
+ { "cvchomes.com", true },
{ "cvcoders.com", true },
{ "cve-le-carrousel.ch", true },
{ "cviip.ca", true },
@@ -8742,6 +8931,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cwrau.tech", true },
{ "cwrcoding.com", true },
{ "cy.ax", true },
+ { "cyanghost.com", true },
{ "cyber.cafe", true },
{ "cyber.je", true },
{ "cyberatlantis.com", true },
@@ -8751,18 +8941,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cybercrime-forschung.de", true },
{ "cybercrime.gov", true },
{ "cybercymru.co.uk", true },
+ { "cyberdos.de", false },
{ "cyberduck.io", true },
{ "cyberexplained.info", true },
- { "cyberfrancais.ro", true },
{ "cybergrx.com", true },
{ "cyberguerrilla.info", true },
{ "cyberguerrilla.org", true },
{ "cyberianhusky.com", true },
{ "cyberkov.com", true },
+ { "cyberlab.kiev.ua", false },
{ "cyberlightapp.com", true },
{ "cybermeldpunt.nl", true },
+ { "cyberogism.com", true },
{ "cyberoptic.de", true },
- { "cyberphaze.com", true },
{ "cyberpioneer.net", false },
{ "cyberpubonline.com", true },
{ "cyberregister.nl", true },
@@ -8775,7 +8966,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cybersecurityketen.nl", true },
{ "cyberseguranca.com.br", true },
{ "cybersins.com", true },
- { "cybersmart.co.uk", true },
{ "cybersmartdefence.com", true },
{ "cyberspace.community", true },
{ "cyberspect.com", true },
@@ -8785,7 +8975,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "cybertu.be", true },
{ "cyberwars.dk", true },
{ "cyberwire.nl", true },
- { "cyberxpert.nl", true },
{ "cybit.io", true },
{ "cybozu.cn", true },
{ "cybozu.com", true },
@@ -8832,6 +9021,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "czbtm.com", true },
{ "czc.cz", true },
{ "czechamlp.com", true },
+ { "czechcrystals.co.uk", true },
{ "czechvirus.cz", true },
{ "czerno.com", true },
{ "czfa.pl", true },
@@ -8852,12 +9042,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "d0g.cc", true },
{ "d0m41n.name", true },
{ "d0xq.com", true },
+ { "d2ph.com", true },
{ "d2s.uk", true },
{ "d3lab.net", true },
- { "d3njjcbhbojbot.cloudfront.net", true },
{ "d3xt3r01.tk", true },
{ "d3xx3r.de", true },
{ "d42.no", true },
+ { "d4wson.com", true },
{ "d4x.de", true },
{ "d66.nl", true },
{ "d8.io", true },
@@ -8883,7 +9074,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "daduke.org", true },
{ "daemen.org", true },
{ "daemon.xin", true },
- { "daemonslayer.net", true },
{ "daemwool.ch", true },
{ "daevel.fr", true },
{ "dafnik.me", true },
@@ -8899,9 +9089,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "daikoz.com", true },
{ "dailybits.be", true },
{ "dailyblogged.com", true },
+ { "dailyemailinboxing.com", true },
{ "dailyenglishchallenge.com", true },
{ "dailyhealthguard.com", true },
{ "dailykos.com", true },
+ { "dailyrover.com", true },
{ "dailyxenang.com", true },
{ "daintymeal.com", true },
{ "dairyshrine.org", true },
@@ -8909,8 +9101,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "daisidaniels.co.uk", true },
{ "daisy-peanut.com", true },
{ "daisypeanut.com", true },
- { "daiwai.de", false },
{ "daiweihu.com", true },
+ { "daiyuu.jp", true },
{ "dak.org", true },
{ "daknob.net", true },
{ "daktarisys.com", true },
@@ -8947,36 +9139,39 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "danandrum.com", true },
{ "danarozmarin.com", true },
{ "danbaldwinart.com", true },
+ { "dance-colleges.com", true },
{ "danchen.org", true },
{ "dancingcubs.co.uk", true },
{ "dancingshiva.at", true },
{ "dandenongroadapartments.com.au", true },
{ "daneandthepain.com", true },
+ { "dangr.zone", true },
{ "danhalliday.com", true },
{ "danholloway.online", true },
{ "daniel-baumann.ch", true },
{ "daniel-cholewa.de", true },
- { "daniel-du.com", true },
{ "daniel-kulbe.de", true },
{ "daniel-milnes.uk", true },
{ "daniel-ruf.de", true },
{ "daniel-wildhaber.ch", true },
- { "danielalvarez.net", true },
{ "danielas.boutique", true },
{ "danielehniss.de", true },
{ "danielepestilli.com", true },
{ "danielgorr.de", true },
+ { "danielheal.net", true },
{ "danielhinterlechner.eu", true },
{ "danielhochleitner.de", true },
{ "danieljamesscott.org", true },
{ "danieljireh.com", true },
{ "danielkoster.nl", true },
{ "daniellockyer.com", true },
+ { "danielmarquard.com", true },
{ "danielmartin.de", true },
{ "danielmoch.com", true },
{ "danielmorell.com", true },
{ "danielmostertman.com", true },
{ "danielmostertman.nl", true },
+ { "danielnaaman.com", true },
{ "danielpeukert.cz", true },
{ "danielran.com", true },
{ "danielrozenberg.com", true },
@@ -8986,6 +9181,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "danielstach.cz", true },
{ "danielsteiner.net", true },
{ "danielstiner.me", true },
+ { "danielthompson.info", true },
{ "danieltollot.de", true },
{ "danielvoogsgerd.nl", true },
{ "danielwildhaber.ch", true },
@@ -9007,11 +9203,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dannycairns.com", true },
{ "dannyrohde.de", true },
{ "dannystevens.co.uk", true },
- { "danonsecurity.com", true },
{ "danotage.tv", true },
+ { "danova.de", true },
{ "danoz.net", true },
{ "danpiel.net", true },
{ "dansa.com.co", true },
+ { "dansage.co", true },
{ "danscomp.com", true },
{ "dansdiscounttools.com", true },
{ "danselibre.net", true },
@@ -9028,11 +9225,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "danwin1210.me", true },
{ "danwolff.se", true },
{ "danyabanya.com", true },
+ { "danzac.com", true },
{ "dao.spb.su", true },
{ "daoro.net", true },
{ "daphne.informatik.uni-freiburg.de", true },
- { "dapim.co.il", true },
{ "daplie.com", true },
+ { "dapps.earth", true },
{ "dappworld.com", true },
{ "daracokorilo.com", true },
{ "daravk.ch", true },
@@ -9047,10 +9245,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "darinkotter.com", true },
{ "darioackermann.ch", true },
{ "darioclip.com", true },
+ { "dariosirangelo.me", true },
{ "darioturchetti.me", true },
{ "darisni.me", true },
{ "dark-infection.de", true },
{ "dark-vision.cz", true },
+ { "dark.ninja", true },
{ "darkag.ovh", true },
{ "darkcores.net", true },
{ "darkengine.io", true },
@@ -9071,13 +9271,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "darkspacelab.com", true },
{ "darktime.ru", true },
{ "darkwater.info", true },
+ { "darkwebnews.com", true },
{ "darkx.me", true },
{ "darom.jp", true },
{ "darookee.net", false },
{ "daropia.org", true },
{ "darshnam.com", true },
- { "dart-tanke.com", true },
- { "dart-tanke.de", true },
{ "dartcode.org", true },
{ "dartetdemetiers.fr", true },
{ "darth-sonic.de", true },
@@ -9095,10 +9294,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dashnearby.com", true },
{ "dashwebconsulting.com", true },
{ "dasignsource.com", true },
- { "dasinternetluegt.at", true },
{ "dasteichwerk.at", true },
{ "dasug.de", true },
{ "data-detox.de", true },
+ { "data-wing.ga", true },
{ "data.gov", true },
{ "data.govt.nz", true },
{ "data.world", true },
@@ -9107,11 +9306,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "databutlr.net", true },
{ "datacalle.com", true },
{ "datacandy.com", true },
- { "datacool.tk", true },
{ "datadit.hu", true },
{ "datadyne.technology", true },
+ { "datafd.com", true },
{ "dataformers.at", true },
{ "datagrail.io", true },
+ { "dataguidance.com", true },
{ "dataharvest.at", true },
{ "datahoarder.xyz", true },
{ "datakick.org", true },
@@ -9167,7 +9367,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "davetempleton.com", true },
{ "davevelopment.net", true },
{ "davewardle.com", true },
- { "davewut.ca", true },
{ "david-corry.com", true },
{ "david-jeffery.co.uk", true },
{ "david-mallett.com", true },
@@ -9187,6 +9386,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "davidgouveia.net", true },
{ "davidgow.net", true },
{ "davidhanle.com", true },
+ { "davidkennardphotography.com", true },
{ "davidking.xyz", true },
{ "davidlamprea.com", true },
{ "davidlane.io", true },
@@ -9208,6 +9408,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "davisroi.com", true },
{ "davo-usedcars.be", true },
{ "davy-server.com", true },
+ { "daw.nz", true },
{ "dawena.de", true },
{ "dawgs.ga", true },
{ "dawnbringer.eu", true },
@@ -9223,7 +9424,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "daymprove.life", true },
{ "dayofdays.be", true },
{ "daysoftheyear.com", true },
- { "db-sanity.com", true },
{ "db-works.nl", true },
{ "dbapress.org", true },
{ "dbaron.org", true },
@@ -9236,7 +9436,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dblcastles.co.uk", true },
{ "dbldub.net", true },
{ "dbmiller.org", true },
- { "dbmteam.com", true },
{ "dborcard.com", true },
{ "dbpkg.com", true },
{ "dbq.com", true },
@@ -9250,6 +9449,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dc1.com.br", true },
{ "dc562.org", true },
{ "dc585.info", true },
+ { "dcain.me", true },
{ "dcards.in.th", true },
{ "dcautomacao.com.br", true },
{ "dcbouncycastles.co.uk", true },
@@ -9346,6 +9546,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "decodeanddestroy.com", true },
{ "decoder.link", true },
{ "decompiled.de", true },
+ { "decoora.com", true },
{ "decor-d.com", true },
{ "decoratingadvice.co.uk", true },
{ "decoratore.roma.it", true },
@@ -9367,9 +9568,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dee.su", true },
{ "deechtebakkers.nl", true },
{ "deegeeinflatables.co.uk", true },
+ { "deejayevents.ro", true },
{ "deelmijnreis.nl", true },
+ { "deep-chess.com", true },
+ { "deep.club", true },
{ "deepaero.com", true },
+ { "deeparamaraj.com", true },
{ "deepbluecrafting.co.uk", true },
+ { "deepblueemail.com", true },
{ "deepcode.io", true },
{ "deeperxh.com", true },
{ "deephill.com", true },
@@ -9407,6 +9613,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "degeberg.com", true },
{ "degeberg.dk", true },
{ "degen-elektrotechnik.de", true },
+ { "degestamptepot.nl", true },
{ "degosoft.nl", true },
{ "degoulet.net", true },
{ "degracetechnologie.com", true },
@@ -9427,6 +9634,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dekeurslagers.nl", true },
{ "dekka.cz", true },
{ "dekkercreativedesign.nl", true },
+ { "dekko.io", true },
{ "dekoh-shouyu.com", true },
{ "dekonix.ru", true },
{ "dekulk.nl", true },
@@ -9463,12 +9671,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "deltasigmachi.org", true },
{ "deltasmart.ch", true },
{ "deltava.org", true },
+ { "demarle.ch", true },
{ "dementiapraecox.de", true },
{ "demeyere-usedcars.be", true },
{ "demfloro.ru", true },
{ "demijn.nl", true },
{ "demilletech.net", true },
{ "demmer.one", true },
+ { "demo9.ovh", true },
{ "democracychronicles.com", true },
{ "democracyineurope.eu", true },
{ "democraziaineuropa.eu", true },
@@ -9504,8 +9714,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dennogumi.org", true },
{ "denous.nl", true },
{ "dent.uy", true },
+ { "dental-colleges.com", true },
{ "dentallaborgeraeteservice.de", true },
- { "dentfix.ro", true },
+ { "dentfix.ro", false },
{ "dentistesdarveauetrioux.com", true },
{ "dentistglasgow.com", true },
{ "dentrassi.de", true },
@@ -9522,6 +9733,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "depotsquarekerrville.com", true },
{ "depotter-usedcars.be", true },
{ "deprecate.de", true },
+ { "depth-co.jp", true },
{ "depthe.gr", true },
{ "der-bank-blog.de", true },
{ "der-fliesenzauberer.de", true },
@@ -9529,6 +9741,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "der-lan.de", true },
{ "der-rudi.eu", true },
{ "der-stein-fluesterer.de", true },
+ { "der-windows-papst.de", true },
{ "derattizzazione.name", true },
{ "derattizzazioni.biz", true },
{ "derattizzazioni.milano.it", true },
@@ -9548,6 +9761,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "derkuki.de", true },
{ "derma-expert.eu", true },
{ "dermapuur.nl", true },
+ { "dermato.floripa.br", false },
{ "dermatologie-morges.ch", true },
{ "dermediq.nl", true },
{ "dermot.org.uk", true },
@@ -9587,7 +9801,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "deskture.com", true },
{ "deskvip.com", true },
{ "desmaakvanplanten.be", true },
- { "desmo.gg", true },
{ "desormiers.com", true },
{ "despachomartinyasociados.com", true },
{ "despertadoronline.com.es", true },
@@ -9599,11 +9812,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "destinationsofnewyorkstate.com", true },
{ "destinattorneyjohngreene.com", true },
{ "destinopiriapolis.com", true },
+ { "destinoytarot.com", true },
{ "desu.ne.jp", true },
{ "desuperheroes.co", true },
{ "det-te.ch", true },
{ "detalika.ru", true },
- { "detalyedesigngroup.com", true },
{ "detectify.com", false },
{ "detectivedesk.com.au", true },
{ "detekenmuze.nl", true },
@@ -9623,6 +9836,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "deude.de", true },
{ "deukie.nl", true },
{ "deurenfabriek.nl", true },
+ { "deusu.de", true },
{ "deutsch-vietnamesisch-dolmetscher.com", true },
{ "deutsche-seniorenbetreuung.de", true },
{ "deutsche-tageszeitungen.de", true },
@@ -9650,6 +9864,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "developer.mydigipass.com", false },
{ "developerdan.com", true },
{ "developerfair.com", true },
+ { "developermail.io", false },
{ "developers.facebook.com", false },
{ "developfx.com", true },
{ "developmentaid.org", true },
@@ -9670,7 +9885,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "devjack.de", true },
{ "devkid.net", true },
{ "devkit.cc", false },
- { "devklog.net", true },
{ "devlamvzw.org", false },
{ "devlatron.net", true },
{ "devlogr.com", true },
@@ -9686,12 +9900,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "devsjournal.com", true },
{ "devsrvr.ru", true },
{ "devstaff.gr", true },
- { "devyn.ca", true },
{ "devzero.io", true },
{ "dewaard.de", true },
{ "dewalch.net", true },
{ "dewapress.com", true },
- { "dewebwerf.nl", true },
{ "dewinter.com", true },
{ "dex.top", true },
{ "dexalo.de", true },
@@ -9733,6 +9945,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dhuy.net", true },
{ "di2pra.com", true },
{ "di2pra.fr", true },
+ { "dia-de.com", true },
{ "diablovalleytech.com", true },
{ "diadorafitness.es", true },
{ "diadorafitness.it", true },
@@ -9743,7 +9956,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dialectic-og.com", true },
{ "diamante.ro", true },
{ "diamantovaburza.cz", true },
- { "diamondsleepsolutions.com", true },
{ "diamondyze.nl", true },
{ "diamorphine.com", true },
{ "diamsmedia.ch", true },
@@ -9766,7 +9978,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dicionariodenomesproprios.com.br", true },
{ "dicionariodesimbolos.com.br", true },
{ "dicionarioetimologico.com.br", true },
+ { "dicionariofinanceiro.com", true },
+ { "dicionariopopular.com", true },
{ "dickieslife.com", true },
+ { "dickord.club", true },
{ "dickpics.ru", true },
{ "dicoding.com", true },
{ "dictionaryofnumbers.com", true },
@@ -9774,6 +9989,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "didacte.com", true },
{ "didche.net", true },
{ "diddens.de", true },
+ { "dideeducacion.com", true },
+ { "didefamilia.com", true },
+ { "didesalud.com", true },
{ "didierghez.com", true },
{ "didikhari.web.id", true },
{ "die-bergfuehrer.de", true },
@@ -9784,7 +10002,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "die-seide.de", true },
{ "die-sinlosen.de", true },
{ "die-speisekammer-reutlingen.de", true },
- { "diedrich.co", false },
+ { "diedrich.co", true },
{ "diedrich.me", true },
{ "dieecpd.org", true },
{ "diegelernten.de", true },
@@ -9851,6 +10069,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "digitalcash.cf", true },
{ "digitalcitizen.life", true },
{ "digitalcitizen.ro", true },
+ { "digitalcraftmarketing.co.uk", true },
{ "digitalcreationclass.com", true },
{ "digitalcuko.com", true },
{ "digitaldashboard.gov", true },
@@ -9882,6 +10101,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "digitaltcertifikat.dk", true },
{ "digitaltechnologies.ltd.uk", true },
{ "digitkon.com", true },
+ { "digitreads.com", true },
{ "digminecraft.com", true },
{ "digwp.com", true },
{ "dihesan.com", true },
@@ -9902,6 +10122,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dimeponline.com.br", true },
{ "dimeshop.nl", true },
{ "dimez.ru", true },
+ { "dimiskovska.de", true },
{ "dimmersagourahills.com", true },
{ "dimmerscalabasas.com", true },
{ "dimmersdosvientos.com", true },
@@ -9918,6 +10139,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dinepont.fr", true },
{ "dingcc.me", true },
{ "dingsbums.shop", true },
+ { "dinheirolucrar.com", true },
{ "dinkommunikasjon.no", true },
{ "dinmtb.dk", true },
{ "dinocarrozzeria.com", true },
@@ -9962,7 +10184,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dischempharmacie.com", true },
{ "disciples.io", true },
{ "disciplina.io", true },
- { "discipul.nl", true },
{ "discofitta.com", true },
{ "disconformity.net", true },
{ "discord.gg", true },
@@ -9980,6 +10201,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "discoveryottawa.ca", true },
{ "discoveryrom.org", true },
{ "discreet-condooms.nl", true },
+ { "discrypt.ca", true },
{ "dise-online.de", true },
{ "disinclined.org", true },
{ "disinfesta.it", true },
@@ -9988,6 +10210,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "disinfestazione.brescia.it", true },
{ "disinfestazione.torino.it", true },
{ "disinfestazione.venezia.it", true },
+ { "disinfestazione.verona.it", true },
{ "disinfestazione24.it", true },
{ "disinfestazioneblatte.it", true },
{ "disinfestazionecimici.roma.it", true },
@@ -10027,6 +10250,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "distillery.com", true },
{ "distinguishedprisoner.com", true },
{ "distribuidoracristal.com.br", true },
+ { "distribuidoraplus.com", true },
{ "distribuidorveterinario.es", true },
{ "distro.re", true },
{ "ditelbat.com", true },
@@ -10070,6 +10294,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "djangoproject.com", true },
{ "djangosnippets.org", true },
{ "djbbouncycastles.co.uk", true },
+ { "djboekingskantoor.nl", true },
{ "djc.me", true },
{ "djcursuszwolle.nl", true },
{ "djdavid98.hu", true },
@@ -10079,9 +10304,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "djlive.pl", true },
{ "djlnetworks.co.uk", true },
{ "djsbouncycastlehire.com", true },
- { "djsk.nl", true },
{ "djt-vom-chausseehaus.de", true },
{ "djursland-psykologen.dk", true },
+ { "djvintagevinyl.nl", true },
{ "djwaynepryke.com", true },
{ "djz4music.com", false },
{ "dk-kromeriz.cz", true },
@@ -10089,7 +10314,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dk.search.yahoo.com", false },
{ "dkcomputers.com.au", true },
{ "dkds.us", true },
- { "dkn.go.id", false },
{ "dkstage.com", true },
{ "dl.google.com", true },
{ "dlabouncycastlehire.co.uk", true },
@@ -10100,7 +10324,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dlitz.net", true },
{ "dll4free.com", true },
{ "dlld.com", true },
- { "dlouwrink.nl", true },
{ "dlrsp.org", true },
{ "dlscomputers.com.au", true },
{ "dlui.xyz", true },
@@ -10118,9 +10341,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dmd.lv", true },
{ "dmdd.org.uk", true },
{ "dmeevalumate.com", true },
+ { "dmess.ru", true },
{ "dmi.es", true },
{ "dmitry.sh", true },
- { "dmmkenya.co.ke", true },
{ "dmmultionderhoud.nl", true },
{ "dmschilderwerken.nl", true },
{ "dmx.xyz", true },
@@ -10139,7 +10362,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dnmlab.it", true },
{ "dnplegal.com", true },
{ "dns-control.eu", true },
- { "dns-manager.info", true },
{ "dns-swiss.ch", true },
{ "dns.google.com", true },
{ "dns8.online", true },
@@ -10149,6 +10371,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dnscurve.io", true },
{ "dnshallinta.fi", true },
{ "dnsinfo.ml", true },
+ { "dnsipv6.srv.br", true },
{ "dnsman.se", true },
{ "dnspod.ml", true },
{ "dnstwister.report", true },
@@ -10195,6 +10418,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "docucopies.com", true },
{ "documaniatv.com", true },
{ "docupet.com", true },
+ { "docusearch.com", true },
{ "dodopri.com", true },
{ "doenjoylife.com", true },
{ "does.one", true },
@@ -10204,6 +10428,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dogadayiz.net", true },
{ "dogan.ch", false },
{ "dogcontrol.ca", true },
+ { "doge.me", true },
+ { "doge.town", true },
{ "dogear.ch", true },
{ "dogfi.sh", true },
{ "dogft.com", true },
@@ -10216,19 +10442,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dogworld.com.br", true },
{ "dohanews.co", true },
{ "doihavetoputonpants.com", true },
+ { "dokan-e.com", false },
{ "dokelio-idf.fr", true },
+ { "doki.space", true },
{ "dokipy.no", true },
- { "dokspot.cf", true },
- { "dokspot.ga", true },
{ "doku-gilde.de", true },
{ "dokuboard.com", true },
{ "dokuraum.de", true },
{ "dolci-delizie.de", true },
{ "doli.se", true },
{ "dolice.net", true },
+ { "dolinathome.com", true },
{ "dollemore.com", true },
{ "dolorism.com", true },
{ "dolphin-it.de", true },
+ { "dolt.xyz", true },
{ "dom-medicina.ru", true },
{ "doma.in", true },
{ "domadillo.com", true },
@@ -10314,16 +10542,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "donna-bellini-hochzeitsfotograf-muenchen.de", true },
{ "donnacha.blog", true },
{ "donnachie.net", true },
+ { "donner-reuschel.de", true },
{ "donnons.org", false },
- { "donnoval.ru", true },
+ { "donnoval.ru", false },
+ { "donotcall.gov", true },
{ "donotlink.it", true },
{ "donovand.info", true },
{ "donpomodoro.com.co", true },
- { "donsbach-edv.de", true },
{ "dont.re", true },
{ "dont.watch", true },
{ "dontbubble.me", true },
- { "dontcageus.org", true },
{ "dontpayfull.com", true },
{ "donttrust.me", true },
{ "donutcompany.co.jp", true },
@@ -10362,6 +10590,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dormiu.com", true },
{ "dormiu.com.br", true },
{ "dornhecker.me", true },
+ { "dorpshuis-dwarsgracht.nl", true },
{ "dorpshuiskesteren.nl", true },
{ "dorquelle.com", true },
{ "dorsetentertainments.co.uk", true },
@@ -10383,7 +10612,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dosvientosoutdoorlighting.com", true },
{ "doswap.com", true },
{ "dosyauzantisi.com", true },
- { "dot.ro", true },
{ "dot42.no", true },
{ "dota2huds.com", true },
{ "dotacni-parazit.cz", true },
@@ -10404,6 +10632,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dotphoto.com", true },
{ "dotplex.com", true },
{ "dotplex.de", true },
+ { "dotrox.net", true },
{ "dotshule.ug", true },
{ "dotsiam.co.th", true },
{ "dotsiam.com", true },
@@ -10433,7 +10662,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "downtimerobot.com", true },
{ "downtimerobot.nl", true },
{ "downtownvernon.com", true },
- { "doxcelerate.com", false },
{ "doyoucheck.com", false },
{ "doyouedc.com", true },
{ "doyoutax.com", true },
@@ -10453,6 +10681,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dpwsweeps.co.uk", true },
{ "dr-becarelli-philippe.chirurgiens-dentistes.fr", true },
{ "dr-bodendorf.de", true },
+ { "dr-it.co.uk", true },
{ "dr-jakob-zahnaerzte.de", true },
{ "dr-klotz.info", true },
{ "dr-krebs.net", true },
@@ -10484,7 +10713,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "draghive.com", true },
{ "draghive.org", true },
{ "draghive.tv", true },
- { "dragon-aspect.com", true },
{ "dragon-chem.eu", true },
{ "dragon-hearts.co.uk", true },
{ "dragoncave.me", true },
@@ -10532,6 +10760,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dreamlinehost.com", false },
{ "dreamlux.cz", true },
{ "dreamlux.sk", true },
+ { "dreamof.net", true },
{ "dreamonkey.com", true },
{ "dreamrae.net", true },
{ "dreamtechie.com", true },
@@ -10539,6 +10768,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "drei01.de", true },
{ "dreid.org", true },
{ "dreiweiden.de", true },
+ { "dreizwosechs.de", false },
{ "dress-cons.com", true },
{ "dressify.co", true },
{ "dressify.in", true },
@@ -10566,19 +10796,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "drillshackresort.com", true },
{ "drinkcontrolapp.com", true },
{ "drinkplanet.eu", true },
- { "dripdoctors.com", true },
{ "drive.google.com", false },
{ "driven2shine.eu", true },
{ "drivenes.net", true },
{ "driver.ru", true },
{ "driver61.com", true },
- { "drivercopilot.com", true },
{ "driverless.id", true },
{ "driverprofiler.co.uk", true },
{ "driverscollection.com", true },
{ "drivinghorror.com", true },
{ "drivingtestpro.com", true },
{ "drivya.com", true },
+ { "drixn.com", true },
{ "drjacquesmalan.com", true },
{ "drjenafernandez.com", true },
{ "drjoe.ca", true },
@@ -10625,11 +10854,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "drschruefer.de", true },
{ "drsturgeonfreitas.com", true },
{ "drtimmarch.com", true },
- { "drubn.de", false },
{ "druckerei-huesgen.de", true },
{ "drugs.com", true },
{ "drumbe.at", true },
{ "drummondframing.com", true },
+ { "drump-truck.com", true },
{ "drunkscifi.com", true },
{ "drupal-expert.it", true },
{ "drupal.org", true },
@@ -10639,6 +10868,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "druwe.net", true },
{ "druznek.me", true },
{ "drvr.xyz", true },
+ { "drwang.group", true },
{ "drweissbrot.net", true },
{ "drwxr.org", true },
{ "dryan.com", false },
@@ -10653,11 +10883,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dsanraffleshangbai.xyz", true },
{ "dsayce.com", true },
{ "dsbrowser.com", true },
+ { "dschwarzachtaler.de", true },
{ "dsdalismerkezi.com", true },
{ "dsebastien.net", true },
{ "dsektionen.se", false },
{ "dsgarms.com", true },
{ "dsgholsters.com", true },
+ { "dsgnet.hu", true },
{ "dsgvo.name", true },
{ "dshield.org", true },
{ "dsm5.com", true },
@@ -10669,6 +10901,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dssale.com", true },
{ "dstamou.de", true },
{ "dsteiner.at", true },
+ { "dstvinstallrandburg.co.za", true },
{ "dt27.org", true },
{ "dtbouncycastles.co.uk", true },
{ "dtdsh.com", true },
@@ -10681,14 +10914,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dtnx.eu", true },
{ "dtnx.net", true },
{ "dtnx.org", true },
+ { "dtp-mstdn.jp", false },
{ "dtuaarsfest.dk", true },
{ "dtx.sk", true },
+ { "dualascent.com", true },
{ "dualias.xyz", false },
{ "dub.cz", true },
{ "dubai-company.ae", true },
{ "dubaieveningsafari.com", true },
{ "dubaosheng.com", true },
{ "dubbingkursus.dk", true },
+ { "dubious-website.com", true },
{ "dublin-traceroute.net", true },
{ "dubrovnik-dental.clinic", true },
{ "dubrovskiy.net", true },
@@ -10772,10 +11008,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dustyspokesbnb.ca", true },
{ "dutch.desi", true },
{ "dutchdare.nl", true },
+ { "dutchessuganda.com", true },
{ "dutchforkrunners.com", true },
{ "dutchrank.nl", true },
{ "dutchwanderers.nl", true },
{ "dutchweballiance.nl", true },
+ { "duval.paris", true },
{ "dv189.com", true },
{ "dvbris.co.uk", true },
{ "dvbris.com", true },
@@ -10849,6 +11087,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "dyscalculia-blog.com", true },
{ "dysthymia.com", true },
{ "dyyn.de", true },
+ { "dyz.pw", true },
{ "dzeina.ch", true },
{ "dzet.de", true },
{ "dziary.com", true },
@@ -10875,8 +11114,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "e-lambre.com", true },
{ "e-learningbs.com", true },
{ "e-lifetechnology.com", true },
- { "e-planetelec.fr", false },
{ "e-ptn.com", true },
+ { "e-speak24.pl", true },
{ "e-standardstore.org", true },
{ "e-surveillant.nl", true },
{ "e-sw.co.jp", true },
@@ -10923,7 +11162,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eaglewreck.info", true },
{ "eaglexiang.org", true },
{ "eagleyecs.com", true },
- { "eaimty.com", true },
{ "ealev.de", true },
{ "eapestudioweb.com", true },
{ "earl.org.uk", true },
@@ -10944,6 +11182,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "easterncapebirding.co.za", true },
{ "eastlothianbouncycastles.co.uk", true },
{ "eastmanbusinessinstitute.com", true },
+ { "eastplan.co.kr", true },
{ "eastsidecottages.co.uk", true },
{ "easy-rpg.org", false },
{ "easy2bathe.co.uk", true },
@@ -10971,14 +11210,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "easytechguides.com", true },
{ "easytechsecurity.com", true },
{ "easyweenies.com", true },
- { "eat-mine.ml", true },
{ "eat-sleep-code.com", true },
{ "eatery.co.il", true },
- { "eatmebudapest.hu", true },
{ "eaton-works.com", true },
{ "eatry.io", true },
{ "eatsleeprepeat.net", true },
{ "eatson.com", true },
+ { "eatz-and-treatz.com", true },
{ "eatz.com", true },
{ "eaucube.com", true },
{ "eauxdespleiades.ch", true },
@@ -11006,6 +11244,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ebooklaunchers.com", true },
{ "eboutic.ch", true },
{ "eboyer.com", true },
+ { "ebpglobal.com", false },
{ "ebrnd.de", true },
{ "ec-baran.de", true },
{ "ec-current.com", true },
@@ -11073,6 +11312,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "economias.pt", true },
{ "economic-sanctions.com", true },
{ "economicinclusion.gov", true },
+ { "economics-colleges.com", true },
{ "economiefidu.ch", true },
{ "economies.ch", true },
{ "econsumer.gov", true },
@@ -11103,6 +11343,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eddyn.net", true },
{ "edeca.net", true },
{ "edehsa.com", true },
+ { "edenming.info", true },
{ "edesseglabor.hu", true },
{ "edfinancial.com", true },
{ "edge-cloud.net", true },
@@ -11110,7 +11351,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "edgetalk.net", true },
{ "edgevelder.com", true },
{ "edhesive.com", true },
- { "edholm.pub", true },
{ "edibarcode.com", true },
{ "edicct.com", true },
{ "edinburghsportsandoutdoorlearning.com", true },
@@ -11129,7 +11369,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "edmodo.com", true },
{ "edmoncu.com", true },
{ "edmundcelis.com", true },
- { "edoss.co.za", true },
{ "edp-collaborative.com", true },
{ "edplan.io", true },
{ "edpubs.gov", false },
@@ -11147,7 +11386,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "educationevolving.org", true },
{ "educationfutures.com", true },
{ "educationunlimited.com", true },
- { "educator-one.com", true },
{ "eductf.org", true },
{ "eduid.se", false },
{ "edumundo.nl", true },
@@ -11160,6 +11398,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "edv-bv.de", true },
{ "edv-kohls.de", true },
{ "edv-lehrgang.de", true },
+ { "edvgarbe.de", true },
{ "edvmesstec.de", true },
{ "edwar.do", true },
{ "edwards.me.uk", true },
@@ -11175,9 +11414,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eelcapone.nl", true },
{ "eellak.gr", true },
{ "eelsden.net", true },
- { "eelzak.nl", true },
{ "eemcevn.com", true },
- { "eengoedenotaris.nl", true },
{ "eentweevijf.be", true },
{ "eer.io", true },
{ "eerlijktransport.nl", true },
@@ -11200,15 +11437,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "effectivecoffee.com", true },
{ "effero.net", true },
{ "effex.ru", true },
+ { "effinfun.com", true },
{ "effizienta.ch", true },
{ "efflam.net", true },
{ "efg-darmstadt.de", false },
+ { "efinity.io", true },
{ "efmcredentialing.org", true },
{ "eft.boutique", true },
{ "egablo.black", true },
{ "egamespw.com", true },
{ "egami.ch", true },
{ "eganassociates.com.au", true },
+ { "egarden.it", true },
{ "egb.at", false },
{ "egbert.net", true },
{ "egeozcan.com", true },
@@ -11259,6 +11499,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eighty-aid.com", true },
{ "eigpropertyauctions.co.uk", true },
{ "eihaikyo.com", true },
+ { "eika.as", true },
{ "eilhan.com", true },
{ "eimacs.com", true },
{ "einaros.is", true },
@@ -11317,13 +11558,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "elarvee.xyz", true },
{ "elb500ttl.nl", true },
{ "elbetech.net", true },
- { "elbohlyart.com", true },
{ "elcambiador.es", true },
{ "elcontadorsac.com", true },
{ "eldapoint.co.uk", true },
+ { "eldenelesat.com", true },
+ { "elderoost.com", true },
{ "eldertons.co.uk", true },
{ "eldevo.com", true },
- { "eldietista.es", true },
{ "eldinhadzic.com", true },
{ "eldisagjapi.com", true },
{ "eldisagjapi.de", true },
@@ -11338,6 +11579,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "electric-vault.co.uk", true },
{ "electricagoura.com", true },
{ "electricagourahills.com", true },
+ { "electrical-schools.com", true },
{ "electricalagoura.com", true },
{ "electricalagourahills.com", true },
{ "electricalcalabasas.com", true },
@@ -11395,6 +11637,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "electricsimivalley.com", true },
{ "electricthousandoaks.com", true },
{ "electricwestlakevillage.com", true },
+ { "electroinkoophardenberg.nl", true },
{ "electronic-ignition-system.com", true },
{ "electronicafacil.net", true },
{ "electronicfasteners.com", true },
@@ -11435,6 +11678,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "elemental.software", true },
{ "elementalsoftware.net", true },
{ "elementalsoftware.org", true },
+ { "elementarty.com", true },
{ "elementarywave.com", true },
{ "elements.guide", true },
{ "elementshop.co.uk", true },
@@ -11443,11 +11687,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "elephpant.cz", true },
{ "elepover.com", true },
{ "elerizoentintado.es", true },
- { "elestanteliterario.com", true },
{ "elettricista-roma.org", true },
{ "eleusis-zur-verschwiegenheit.de", true },
{ "elevator.ee", true },
{ "elevatoraptitudetest.com", true },
+ { "elexel.ru", true },
{ "elexprimidor.com", true },
{ "elfe.de", true },
{ "elfnon.com", true },
@@ -11483,7 +11727,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "elitebouncingfun.com", true },
{ "elitegameservers.net", true },
{ "elitehosting.de", false },
- { "elixi.re", true },
+ { "elitenutritionoficial.com", true },
{ "elixir.bzh", true },
{ "eliyah.co.il", true },
{ "elizabethbuitrago.com", true },
@@ -11514,21 +11758,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "elosrah.com", true },
{ "elosuite.com", true },
{ "eloxt.com", true },
+ { "elpado.de", true },
+ { "elpo.net", true },
{ "elpoderdelespiritu.org", true },
{ "elrinconderovica.com", true },
{ "elsagradocoran.org", true },
{ "elshou.com", true },
{ "elsignificadodesonar.com", true },
{ "elstopstelten.nl", true },
- { "elsvanderlugt.nl", true },
{ "eltagroup.co.uk", true },
{ "eltair.com", true },
{ "eltern-verein.ch", true },
{ "elternbeiratswahl.online", true },
{ "elternforum-birmensdorf.ch", true },
{ "elternverein-utzenstorf.ch", true },
+ { "eltip.click", true },
{ "elucron.com", true },
- { "eluft.de", true },
{ "eluhome.de", true },
{ "eluvio.com", true },
{ "elvidence.com.au", true },
@@ -11553,6 +11798,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "emailtools.io", true },
{ "emaily.eu", true },
{ "emanuel.photography", true },
+ { "emanuela-gabriela.co.uk", true },
{ "emanuelduss.ch", true },
{ "emanueleanastasio.com", true },
{ "emanuelemazzotta.com", true },
@@ -11566,7 +11812,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "emecew.com", true },
{ "emeliefalk.se", true },
{ "ememsei.com", true },
- { "emeraldcbdshop.com", true },
+ { "emeraldcbdshop.com", false },
{ "emeraldcityswagger.com", true },
{ "emeraldcoastrideshare.com", true },
{ "emeraldonion.org", true },
@@ -11589,7 +11835,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "emkanrecords.com", true },
{ "emkei.cz", true },
{ "emkrivoy.com", true },
- { "emma-o.com", true },
{ "emma.ca", true },
{ "emmababy420.com", true },
{ "emmagraystore.com", true },
@@ -11622,7 +11867,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "emresaglam.com", true },
{ "emtradingacademy.com", true },
{ "emultiagent.pl", true },
- { "emupedia.net", true },
{ "emvoice.net", true },
{ "emvoiceapp.com", true },
{ "emw3.com", true },
@@ -11648,6 +11892,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "encrypt.org.uk", true },
{ "encryptallthethings.net", true },
{ "encrypted.google.com", true },
+ { "encryptmycard.com", true },
{ "encuentraprecios.es", true },
{ "encycarpedia.com", true },
{ "ende-x.com", true },
@@ -11658,11 +11903,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "endingthedocumentgame.gov", true },
{ "endlessdiy.ca", true },
{ "endlessvideo.com", true },
+ { "endofinternet.goip.de", true },
{ "endoftenancycleaninglondon.co.uk", true },
{ "endoftennancycleaning.co.uk", true },
{ "endpointsystems.com", true },
{ "enduranceday.be", true },
{ "endzeit-architekten.com", false },
+ { "enelacto.com", true },
{ "enemiesoflight.de", true },
{ "energie-sante.ch", true },
{ "energiekeurplus.nl", true },
@@ -11709,8 +11956,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "enjinwallet.io", true },
{ "enjinx.io", true },
{ "enjoy-drive.com", true },
+ { "enjoy-israel.ru", true },
{ "enjoyphoneblog.it", true },
- { "enlazaresbueno.cl", true },
{ "enlighten10x.ga", true },
{ "enlightenedhr.com", true },
{ "enlightenment.org", true },
@@ -11744,6 +11991,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "entercenter.ru", true },
{ "enterprisey.enterprises", true },
{ "entersoftsecurity.com", true },
+ { "entersynapse.com", true },
{ "entheogens.com", true },
{ "enthusiaformazione.com", true },
{ "entradaweb.cl", true },
@@ -11758,7 +12006,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "envant.co.uk", true },
{ "enveloppenopmaat.nl", true },
{ "envescent.com", true },
+ { "enviatufoto.com", true },
{ "enviaya.com.mx", true },
+ { "environmental-colleges.com", true },
{ "environmentkirklees.org", true },
{ "enviroprobasements.com", true },
{ "envirotech.com.au", true },
@@ -11772,9 +12022,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eonhive.com", true },
{ "eoonglobalresources.jp", true },
{ "eopugetsound.org", false },
+ { "eosol.de", true },
+ { "eosol.net", true },
+ { "eosol.services", true },
{ "epa.com.es", true },
{ "epassafe.com", true },
- { "epave.paris", true },
{ "epay.bg", true },
{ "epdeveloperchallenge.com", true },
{ "ephesusbreeze.com", true },
@@ -11834,7 +12086,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "epsilon.dk", true },
{ "epsorting.cz", true },
{ "epublibre.org", true },
- { "epulsar.ru", true },
{ "epvin.com", true },
{ "epyonsuniverse.net", true },
{ "eq-serve.com", true },
@@ -11842,13 +12093,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "equallyy.com", true },
{ "equeim.ru", true },
{ "equidam.com", true },
+ { "equilime.com", true },
{ "equinecoaching.ca", true },
{ "equinetherapy.ca", true },
{ "equinox.io", true },
{ "equipandoloja.net.br", true },
{ "equipedefrance.tv", true },
{ "equipeferramentas.com.br", true },
- { "equipsupply.com", true },
{ "equk.co.uk", true },
{ "er-mgmt.com", true },
{ "er.tl", true },
@@ -11856,7 +12107,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "erasmusplusrooms.com", true },
{ "erate.fi", true },
{ "erath.fr", true },
- { "erawanarifnugroho.com", false },
{ "erdethamburgeronsdag.no", true },
{ "ereader.uno", true },
{ "erecciontotalal100.com", true },
@@ -11886,7 +12136,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ericwie.se", true },
{ "eridanus.uk", true },
{ "erigrid.eu", true },
- { "eriix.org", true },
{ "erikheemskerk.nl", true },
{ "erikhubers.nl", true },
{ "erikkruithof.nl", true },
@@ -11914,7 +12163,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "erpiv.com", true },
{ "errietta.me", true },
{ "errlytics.com", true },
- { "error418.nl", true },
+ { "error418.nl", false },
{ "ers35.com", true },
{ "ersa-shop.com", true },
{ "ershiwo.com", true },
@@ -11932,7 +12181,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "erudicia.se", true },
{ "erudicia.uk", true },
{ "erudikum.cz", true },
- { "ervaarjapan.nl", true },
{ "erwanlepape.com", true },
{ "erwin.saarland", true },
{ "erwinpaal.nl", true },
@@ -12047,8 +12295,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "esdiscuss.org", true },
{ "eservices-greece.com", true },
{ "esg-abi2001.de", true },
+ { "esgen.org", true },
{ "esgr.in", true },
- { "eshobe.com", true },
{ "eshop-prices.com", true },
{ "esibun.net", true },
{ "esigmbh.de", true },
@@ -12056,6 +12304,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "esite.ch", true },
{ "eskdale.net", true },
{ "eskriett.com", true },
+ { "eslint.org", true },
{ "esmoney.cc", true },
{ "esmoney.me", true },
{ "esoa.net", true },
@@ -12086,6 +12335,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "esrhd.com", true },
{ "esrinfo.com", true },
{ "ess-cert.ru", true },
+ { "essayace.co.uk", true },
{ "essayads.com", true },
{ "essaybrand.com", true },
{ "essaychecker.com", true },
@@ -12094,8 +12344,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "essaynews.com", true },
{ "essaypro.net", true },
{ "essaytalk.com", true },
- { "essaywebsite.com", true },
{ "essaywriting.biz", true },
+ { "essca.fr", true },
{ "essenalablog.de", true },
{ "essencesdeprana.org", true },
{ "essex.cc", true },
@@ -12115,6 +12365,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "esterilizacion-perros.es", true },
{ "esteticanorte.com.br", true },
{ "estetista.net", true },
+ { "estherlew.is", true },
{ "esthesoleil.jp", true },
{ "estilopack-loja.com.br", true },
{ "estoic.net", true },
@@ -12123,6 +12374,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "estudiarparaser.com", true },
{ "estudiserradal.com", true },
{ "esurety.net", true },
+ { "esuretynew.azurewebsites.net", true },
{ "esw00.com", true },
{ "esw06.com", true },
{ "esw07.com", true },
@@ -12156,7 +12408,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ethack.org", true },
{ "ethaligan.fr", true },
{ "ethan.pm", true },
- { "ethandelany.me", true },
{ "ethercalc.com", true },
{ "ethercalc.org", true },
{ "etherderbies.com", true },
@@ -12172,7 +12423,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ethosinfo.com", true },
{ "etienne.cc", true },
{ "etikus-hacker.hu", true },
- { "etincelle.ml", true },
{ "etiquetaunica.com.br", true },
{ "etoile-usedcars.com", true },
{ "etre-soi.ch", true },
@@ -12187,12 +12437,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "etudesbibliques.org", true },
{ "etv.cx", true },
{ "etyd.org", true },
- { "etzi.myds.me", true },
{ "eu-darlehen-finanzierung.de", true },
{ "eu-datenbank.de", true },
{ "eu-gamers.com", true },
{ "eu-stellenangebot.de", true },
{ "euaggelion.blog.br", true },
+ { "euanbarrett.com", true },
{ "euchre.us", true },
{ "eucl3d.com", true },
{ "eugenechae.com", true },
@@ -12224,6 +12474,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "euroalter.com", true },
{ "eurocenterobuda.hu", true },
{ "eurocomcompany.cz", true },
+ { "euroconthr.ro", true },
{ "eurofrank.eu", true },
{ "eurolocarno.es", true },
{ "europapier.at", true },
@@ -12251,8 +12502,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "europop.com", true },
{ "eurora.de", true },
{ "euroscot.de", true },
- { "euroservice.com.gr", true },
{ "euroshop.or.at", true },
+ { "euroskano.nl", true },
{ "eurotime.ua", true },
{ "eurotramp.com", true },
{ "eurotravelstar.eu", true },
@@ -12279,10 +12530,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "evangelicalmagazine.com", true },
{ "evangelosm.com", true },
{ "evanreev.es", true },
- { "evantage.org", true },
{ "evantageglobal.com", true },
{ "evanwang0.com", true },
{ "evapp.org", true },
+ { "evasioncreole.com", true },
{ "evasovova.cz", true },
{ "evavolfova.cz", true },
{ "eve.ac", true },
@@ -12300,12 +12551,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "eventosenmendoza.com.ar", true },
{ "events-hire.co.uk", true },
{ "eventtech.com", false },
+ { "eveonline.com", true },
{ "ever.sale", true },
{ "everain.me", true },
{ "everfine.com.tw", true },
{ "evergladesrestoration.gov", true },
{ "everhome.de", true },
- { "everitoken.io", true },
{ "everling.lu", true },
{ "everlong.org", true },
{ "evermarkstudios.com", true },
@@ -12315,6 +12566,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "everybodyhertz.co.uk", true },
{ "everyday.eu.org", true },
{ "everydaygary.com", true },
+ { "everydaywot.com", true },
{ "everydaywp.com", true },
{ "everyex.com", true },
{ "everyfad.com", true },
@@ -12338,9 +12590,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "evilcult.me", true },
{ "evilized.de", true },
{ "evilmartians.com", true },
- { "evilness.nl", true },
{ "evilsite.cf", true },
- { "evilvolcanolairs.com", true },
{ "evion.nl", true },
{ "evlear.com", true },
{ "evoco.vc", true },
@@ -12364,6 +12614,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "evrica.me", true },
{ "evromandie.ch", true },
{ "evstatus.com", true },
+ { "evtasima.name.tr", true },
{ "evtripping.com", true },
{ "ewaipiotr.pl", true },
{ "ewanm89.co.uk", true },
@@ -12383,6 +12634,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "exactphilosophy.net", true },
{ "exagoni.com.au", true },
{ "exagoni.com.my", true },
+ { "examedge.com", true },
{ "example.sc", true },
{ "example.wf", true },
{ "examsmate.in", true },
@@ -12396,6 +12648,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "exceltobarcode.com", true },
{ "excentos.com", true },
{ "exceptionalservers.com", true },
+ { "excessamerica.com", true },
{ "excesssecurity.com", true },
{ "exchaser.com", true },
{ "exclusivebouncycastles.co.uk", true },
@@ -12420,9 +12673,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "exit9wineandliquor.com", true },
{ "exitooutdoor.com", true },
{ "exmoe.com", true },
+ { "exnovin.co", true },
{ "exocen.com", true },
{ "exon.io", true },
{ "exoplatform.com", true },
+ { "exordiumconcepts.com", true },
{ "exoscale.ch", true },
{ "exoscale.com", true },
{ "exoten-spezialist.de", true },
@@ -12433,9 +12688,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "expatmortgage.uk", true },
{ "experienceoutdoors.org.uk", true },
{ "experienceoz.com.au", true },
+ { "experise.fr", true },
{ "expert-korovin.ru", true },
{ "expert.cz", true },
{ "experteasy.com.au", true },
+ { "expertofficefitouts.com.au", true },
{ "expertohomestaging.com", true },
{ "experts-en-gestion.fr", true },
{ "expertsverts.com", true },
@@ -12466,6 +12723,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "exporta.cz", true },
{ "express-shina.ru", true },
{ "express-vpn.com", true },
+ { "expressemotion.net", true },
{ "expresshosting.org", true },
{ "expressmarket.ru", true },
{ "expresstinte.de", true },
@@ -12505,13 +12763,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "extrapagetab.com", true },
{ "extreme-gaming.de", true },
{ "extreme-gaming.us", true },
- { "extreme-players.com", true },
{ "extreme-players.de", true },
{ "extreme.co.th", true },
{ "extremeservicesandrestoration.com", true },
- { "exultcosmetics.co.uk", true },
{ "exyplis.com", true },
- { "eyasc.nl", true },
{ "eydesignguidelines.com", true },
{ "eyeandfire.com", true },
{ "eyecandy.gr", true },
@@ -12534,6 +12789,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ezequiel-garzon.net", true },
{ "ezgif.com", true },
{ "ezhik-din.ru", true },
+ { "eznfe.com", true },
{ "eztvtorrent.com", true },
{ "ezwritingservice.com", true },
{ "ezzhole.net", true },
@@ -12555,6 +12811,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "f5nu.com", true },
{ "f5w.de", true },
{ "fa-works.com", true },
+ { "fabbro-roma.org", true },
{ "faber.org.ru", true },
{ "fabian-fingerle.de", true },
{ "fabian-koeppen.de", true },
@@ -12572,23 +12829,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fabrica360.com", true },
{ "fabriceleroux.com", true },
{ "fabriziocavaliere.it", true },
- { "fabriziorocca.com", true },
{ "fabriziorocca.it", true },
{ "fabse.net", true },
{ "facanabota.com", true },
{ "facanabota.com.br", true },
- { "faccess.it", true },
{ "facciadastile.it", true },
{ "face-mania.com", true },
{ "facealacrise.fr", true },
{ "facebook-atom.appspot.com", true },
- { "facebook.com", false },
+ { "facebook.com", true },
{ "facebydrh.com", true },
{ "facebylouise.co.uk", true },
{ "facekungfu.com", true },
{ "facepainting.gr", true },
{ "facepunch.org", true },
{ "facerepo.com", true },
+ { "faceresources.org", true },
{ "fach-journalist.de", true },
{ "fachschaftslisten.at", true },
{ "fachschaftslisten.org", true },
@@ -12606,7 +12862,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fackovec.sk", true },
{ "factbytefactbox.com", true },
{ "factcool.com", true },
- { "factureenlinea.com", true },
{ "factuur.pro", true },
{ "factuursturen.be", true },
{ "factuursturen.nl", true },
@@ -12619,12 +12874,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "faelix.net", true },
{ "faerb.it", true },
{ "faerie-art.com", true },
+ { "fahnamporn.com", true },
{ "fahnen-fanwelt.de", true },
{ "fahrenwal.de", true },
{ "fahrenwalde.de", true },
{ "fahrschule-laux.de", true },
{ "fahrwerk.io", true },
{ "fai.gov", true },
+ { "faidanoi.it", true },
{ "fail.coach", true },
{ "fail4free.de", true },
{ "failover.de", true },
@@ -12639,6 +12896,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fairssl.se", true },
{ "fairviewmotel-simcoe.com", true },
{ "fairydust.space", true },
+ { "faithcentercogop.net", true },
{ "faithgrowth.com", true },
{ "faithindemocracy.eu", false },
{ "faithleaks.org", true },
@@ -12646,12 +12904,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "faithwatch.org", true },
{ "faixaazul.com", true },
{ "fakeapple.nl", true },
+ { "fakerli.com", true },
{ "fakti.bg", true },
{ "fakturi.com", true },
{ "fakturoid.cz", true },
{ "falaeapp.org", true },
{ "falaowang.com", true },
{ "falbros.com", true },
+ { "falcona.io", true },
{ "falconfrag.com", true },
{ "falconvintners.com", true },
{ "falcoz.co", true },
@@ -12665,12 +12925,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fallenmystic.com", true },
{ "fallenspirits.co.uk", true },
{ "falling.se", true },
+ { "fallofthecitadel.com", true },
{ "falsum.net", true },
{ "fam-kreibich.de", true },
{ "fam-stemmer.de", false },
{ "fam-weyer.de", true },
{ "famcloud.de", true },
- { "famdouma.nl", true },
{ "fameng.nl", true },
{ "fameus.fr", true },
{ "famfi.co", true },
@@ -12685,7 +12945,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "familieholme.de", true },
{ "familjenfrodlund.se", true },
{ "familjenm.se", true },
- { "familletouret.fr", true },
{ "familylawhotline.org", true },
{ "familyparties.co.uk", true },
{ "familyreal.ru", true },
@@ -12696,9 +12955,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "famoushostels.com", true },
{ "famvangelder.nl", true },
{ "famvsomeren.nl", true },
+ { "fan.gov", true },
{ "fanactu.com", true },
{ "fanatical.com", true },
{ "fanboi.ch", true },
+ { "fancy-bridge.com", true },
{ "fancy.org.uk", true },
{ "fander.it", true },
{ "fandler.cz", true },
@@ -12752,8 +13013,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "farrelf.blog", true },
{ "farsil.eu", true },
{ "fart.wtf", true },
+ { "farthing.xyz", true },
{ "farwat.ru", true },
{ "faschingmd.com", true },
+ { "fascia.fit", true },
{ "fashion-stoff.de", true },
{ "fashion24.de", true },
{ "fashion4ever.pl", true },
@@ -12799,12 +13062,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fateandirony.com", true },
{ "fatecdevday.com.br", true },
{ "fatedata.com", true },
+ { "fatherhood.gov", true },
{ "fathers4equalrights.org", true },
{ "fatidique.com", true },
{ "fatimamoldes.com.br", true },
{ "fatmixx.com", true },
{ "fatowltees.com", true },
- { "fattorino.it", true },
{ "faucetbox.com", false },
{ "faui2k17.de", true },
{ "faulty.equipment", true },
@@ -12829,7 +13092,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fcburk.de", true },
{ "fcforum.net", true },
{ "fcingolstadt.de", true },
- { "fcitasc.com", true },
{ "fckd.net", true },
{ "fcosinus.com", true },
{ "fcprovadia.com", true },
@@ -12838,13 +13100,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fdicig.gov", true },
{ "fdicoig.gov", true },
{ "fdlibre.eu", true },
- { "fdm.ro", true },
{ "fdms.gov", true },
{ "fdn.one", true },
{ "fdos.me", true },
{ "fdp-brig-glis.ch", true },
+ { "fdresearch.ca", true },
{ "fdsys.gov", false },
- { "feac.us", true },
{ "feaden.me", true },
{ "fearby.com", true },
{ "fearghus.org", true },
@@ -12882,6 +13143,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "feedthefuture.gov", true },
{ "feel-events.com", true },
{ "feel.aero", true },
+ { "feelgood-workouts.de", true },
{ "feelmom.com", true },
{ "feeltennis.net", true },
{ "feen.us", true },
@@ -12910,15 +13172,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "feldhousen.com", true },
{ "felett.es", true },
{ "felgitscher.xyz", true },
+ { "feli.games", true },
{ "felicifia.org", true },
{ "felinepc.com", true },
{ "felisslovakia.sk", true },
{ "felistirnavia.sk", true },
+ { "felixaufreisen.de", true },
{ "felixbarta.de", true },
{ "felixcrux.com", true },
{ "felixgenicio.com", true },
{ "felixkauer.de", true },
- { "felixqu.com", true },
{ "felixsanz.com", true },
{ "felixseele.de", true },
{ "felsing.net", true },
@@ -12930,6 +13193,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "femradio.es", true },
{ "femtomind.com", true },
{ "fence-stlouis.com", true },
+ { "feng-hhcm.com", true },
{ "feng-in.com", true },
{ "feng-in.net", true },
{ "feng.si", true },
@@ -13030,6 +13294,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fiduciaire-ratio.ch", true },
{ "fieldwork-paysage.com", true },
{ "fierlafijn.net", true },
+ { "fierscleaning.nl", true },
{ "fiery.me", true },
{ "fifei.de", true },
{ "fifichachnil.paris", true },
@@ -13069,11 +13334,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "filiio.com", true },
{ "filingsmadeeasy.com", true },
{ "filiosoft.cloud", true },
- { "filip-prochazka.com", true },
+ { "filip-prochazka.com", false },
{ "filippo.io", true },
{ "filipsebesta.com", true },
{ "filleritemsindia.com", true },
{ "fillo.sk", true },
+ { "film-colleges.com", true },
{ "film-storyboards.com", true },
{ "film-storyboards.fr", true },
{ "film-tutorial.com", true },
@@ -13094,6 +13360,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "final-expense-quotes.com", true },
{ "finalrewind.org", true },
{ "finalx.nl", true },
+ { "finance-colleges.com", true },
{ "financejobs.ch", true },
{ "financepark.ch", true },
{ "financniexperti.sk", true },
@@ -13140,6 +13407,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fionamcbride.com", true },
{ "fioulmarket.fr", true },
{ "fir3net.com", true },
+ { "fire-schools.com", true },
{ "firebaseio.com", true },
{ "firebirdrangecookers.com", true },
{ "firebounty.com", true },
@@ -13155,6 +13423,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "firegore.com", true },
{ "fireleadership.gov", true },
{ "firemudfm.com", true },
+ { "firenza.org", true },
{ "fireplex.co.uk", true },
{ "fireportal.cz", true },
{ "fireportal.sk", true },
@@ -13167,7 +13436,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fireworksshowvr.com", true },
{ "firma-cerny.cz", true },
{ "firma-offshore.com", true },
- { "firmale.com", true },
{ "firmapi.com", true },
{ "firmen-assekuranz.de", true },
{ "firmenwerbung-vermarktung.de", true },
@@ -13188,6 +13456,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "firstq.xyz", true },
{ "fischer-its.com", false },
{ "fischer-kundendienst.de", true },
+ { "fischers.cc", true },
{ "fischers.it", true },
{ "fischers.srv.br", true },
{ "fise.cz", true },
@@ -13208,13 +13477,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fit-mit-system.eu", true },
{ "fit365.jp", true },
{ "fitchannel.com", true },
- { "fitfitup.com", true },
{ "fitinclass.com", true },
{ "fitkram.cz", true },
{ "fitmeat.at", true },
{ "fitness-challenge.co.uk", true },
{ "fitness.gov", true },
- { "fitseven.ru", true },
{ "fittelo.cz", true },
{ "fitzsim.org", true },
{ "fiuxy.bz", true },
@@ -13230,6 +13497,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fixitfelix.us", true },
{ "fixmyalarmpanel.co.uk", true },
{ "fixmycomputerdude.com", true },
+ { "fiziktedavi.name.tr", true },
+ { "fizyoterapi.name.tr", true },
{ "fizz.buzz", false },
{ "fj.search.yahoo.com", false },
{ "fj.simple.com", false },
@@ -13255,6 +13524,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "flanga.org", true },
{ "flangaapis.com", true },
{ "flapoverspeed.com", true },
+ { "flare.cloud", true },
{ "flashback.org", true },
{ "flashbeing.com", true },
{ "flashcomp.cz", true },
@@ -13269,11 +13539,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "flavo.io", true },
{ "flavr.be", true },
{ "flawlesscowboy.xyz", true },
- { "fleamarketgoods.com", true },
{ "fleep.io", true },
+ { "fleetcor.at", true },
{ "fleetcor.ch", true },
{ "fleetcor.cz", true },
+ { "fleetcor.de", true },
+ { "fleetcor.fr", true },
+ { "fleetcor.hu", true },
{ "fleetcor.lu", true },
+ { "fleetcor.nl", true },
+ { "fleetcor.pl", true },
{ "fleetcor.sk", true },
{ "fleetcorcards.be", true },
{ "fleetsmith.com", true },
@@ -13310,7 +13585,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fliino.net", true },
{ "fliino.org", true },
{ "fliio.com", true },
- { "flikmsg.co", true },
{ "flinch.io", true },
{ "flip.kim", true },
{ "flipneus.net", true },
@@ -13320,6 +13594,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "flirtfaces.de", true },
{ "flirtos.de", true },
{ "flirtycourts.com", true },
+ { "flixhaven.net", true },
{ "flixports.com", true },
{ "flmortgagebank.com", true },
{ "floatationlocations.com", true },
@@ -13330,6 +13605,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "floffi.media", true },
{ "floj.tech", true },
{ "flokinet.is", true },
+ { "floless.co.uk", true },
{ "flomeyer.de", true },
{ "floobits.com", true },
{ "flood.io", true },
@@ -13349,7 +13625,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "floriankeller.de", true },
{ "florianmitrea.uk", true },
{ "florianschmitt.ca", true },
- { "floriantanner.ch", true },
{ "floridafabrication.net", true },
{ "floridafieros.org", true },
{ "floridahomesinvest.com", true },
@@ -13399,11 +13674,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "flyinglocksmiths.com", true },
{ "flyingpackets.net", true },
{ "flyingrub.me", true },
+ { "flyingyoung.top", true },
{ "flymns.fr", true },
{ "flynn.io", true },
{ "flyserver.co.il", true },
{ "flyshe.co.uk", true },
- { "flyspace.ml", true },
{ "flyssh.net", true },
{ "flyswoop.com", true },
{ "flyt.online", true },
@@ -13417,7 +13692,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fmi.gov", true },
{ "fminsight.net", true },
{ "fmodoux.biz", true },
- { "fmovies.fyi", true },
{ "fmussatmd.com", true },
{ "fnanen.net", true },
{ "fnb-griffinonline.com", true },
@@ -13449,7 +13723,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "folio.no", true },
{ "foljeton.dk", true },
{ "folk.as", true },
- { "folkfests.org", true },
{ "follandviolins.com", true },
{ "followback.net", true },
{ "follower98.ir", true },
@@ -13493,6 +13766,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "foot.fr", true },
{ "footagecrate.com", true },
{ "footballforum.de", true },
+ { "footloose.co.uk", true },
{ "for.care", true },
{ "foray-jero.me", true },
{ "forbusiness.ca", true },
@@ -13508,18 +13782,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "foreclosureattorneyhouston.com", true },
{ "forefrontcloud.com", true },
{ "foregroundweb.com", true },
+ { "foreign-language-colleges.com", true },
{ "forellenpark.com", true },
{ "forento.be", true },
{ "foresdon.jp", true },
{ "foresthillhomes.ca", true },
{ "forestraven.net", true },
- { "foreverssl.com", true },
{ "foreversummertime.com", true },
{ "forewordreviews.com", true },
{ "forex.ee", true },
{ "forexchef.de", true },
{ "forexee.com", true },
- { "forexsignals7.com", true },
{ "forextickler.com", true },
{ "forextimes.ru", false },
{ "forfunssake.co.uk", true },
@@ -13528,7 +13801,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "forgotten-legends.org", true },
{ "forman.store", true },
{ "formapi.io", true },
- { "formasdemaquillarse.com", true },
{ "format-paysage.ch", true },
{ "formation-assureur.com", true },
{ "formation-mac.ch", true },
@@ -13546,7 +13818,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "forologikidilosi.com.gr", true },
{ "forourselves.com", true },
{ "forpc.us", true },
- { "forquilhinhanoticias.com.br", true },
{ "forrestheller.com", true },
{ "forro.info", true },
{ "forsakringsarkivet.se", true },
@@ -13557,6 +13828,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fort.eu", true },
{ "forteggz.nl", true },
{ "fortesanshop.it", true },
+ { "fortknox.cz", true },
{ "fortnine.ca", true },
{ "fortnitemagic.ga", true },
{ "fortran.io", true },
@@ -13580,7 +13852,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "foscamcanada.com", true },
{ "fosdem.org", true },
{ "foshanshequ.com", false },
- { "fossguard.com", true },
{ "fossilfreeyale.org", true },
{ "fotella.com", true },
{ "fotikpro.ru", true },
@@ -13599,6 +13870,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fotokomorkomania.pl", true },
{ "fotoleitner.com", true },
{ "fotoleitner.de", true },
+ { "fotonjan.com", true },
{ "fotostudio-leitner.com", true },
{ "fotostudio-leitner.de", true },
{ "fotostudio-schweiz.ch", true },
@@ -13606,6 +13878,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fotowolfy.com", true },
{ "fougner.co", true },
{ "found.website", true },
+ { "foundationrepairnebraska.com", true },
{ "foundationspecialisteast.com", true },
{ "foundationspecialistmi.com", true },
{ "foundchurch.co.uk", true },
@@ -13628,9 +13901,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "foxphotography.ch", true },
{ "foxquill.com", true },
{ "foxterrier.com.br", true },
+ { "foyale.io", true },
+ { "fpaci.org", true },
{ "fpc.gov", true },
{ "fpersona.com", true },
{ "fpgradosuperior.com", true },
+ { "fptravelling.com", false },
{ "fpvr.org", true },
{ "fpy.cz", true },
{ "fr.search.yahoo.com", false },
@@ -13647,6 +13923,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "framezdakkapellen.nl", true },
{ "fran.cr", true },
{ "francescopalazzo.com", true },
+ { "francescoservida.ch", true },
{ "francetraceur.fr", true },
{ "franchini.email", true },
{ "franchini.engineer", true },
@@ -13667,6 +13944,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "franken-lehrmittel.de", true },
{ "frankenhost.de", true },
{ "frankenlehrmittel.de", true },
+ { "frankfurt-am-start.de", true },
{ "frankhaala.com", true },
{ "frankierfachmann.de", true },
{ "frankierprofi.de", true },
@@ -13701,9 +13979,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fraurichter.net", true },
{ "fraye.net", true },
{ "frbracch.it", true },
+ { "frccsgo.tk", true },
{ "frdl.ch", true },
{ "freaksites.dk", true },
{ "freaksports.com.au", true },
+ { "freakyaweso.me", true },
{ "freakyawesome.com", true },
{ "frebi.org", true },
{ "frebib.co.uk", true },
@@ -13713,11 +13993,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "freddieonfire.tk", false },
{ "freddyfazbearspizzeria.com", true },
{ "freddysfuncastles.co.uk", true },
+ { "fredericcote.com", true },
{ "frederickalcantara.com", true },
{ "frederik-braun.com", false },
{ "frederikvig.com", true },
{ "fredloya.com", true },
{ "fredriksslekt.se", true },
+ { "fredtec.ru", true },
{ "fredvoyage.fr", true },
{ "free-your-pc.com", true },
{ "free.ac.cn", true },
@@ -13728,6 +14010,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "freebetoffers.co.uk", true },
{ "freebookmakersbetsandbonuses.com.au", true },
{ "freeboson.org", true },
+ { "freecam2cam.site", true },
{ "freecloud.at", true },
{ "freedev.cz", true },
{ "freedom.nl", true },
@@ -13760,6 +14043,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "freelo.cz", true },
{ "freelysurf.cf", true },
{ "freemans.com", true },
+ { "freemomhugs.org", true },
{ "freemyipod.org", true },
{ "freend.me", false },
{ "freenetproject.org", true },
@@ -13776,6 +14060,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "freesoft-board.to", true },
{ "freesoftlab.com", true },
{ "freesolitaire.win", true },
+ { "freessl.tech", true },
{ "freethetv.ie", true },
{ "freetsa.org", true },
{ "freevps.us", false },
@@ -13816,7 +14101,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "freshmaza.io", true },
{ "freshmaza.net", true },
{ "fretscha.com", true },
- { "frettboard.com", true },
{ "frettirnar.is", true },
{ "fretworksec.com", true },
{ "friarsonbase.com", true },
@@ -13829,11 +14113,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "friedrich-foto-art.de", true },
{ "friedsamphotography.com", true },
{ "friendlysiberia.com", true },
+ { "friendowment.us", true },
{ "friends-of-naz.com", true },
{ "friends-socialgroup.org", true },
{ "friends24.cz", true },
{ "friendship-quotes.co.uk", true },
{ "friendshipismagicsquad.com", true },
+ { "friendsofgfwpc.org", true },
{ "frieslandrail.nl", true },
{ "friet.org", true },
{ "frietbesteld.nl", true },
@@ -13858,12 +14144,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "frogsonamission.de", true },
{ "froh.co.jp", true },
{ "frolova.org", true },
+ { "from-the-net.com", true },
{ "fromscratch.rocks", true },
{ "fromthesoutherncross.com", true },
{ "fronteers.nl", false },
{ "frontier-ad.co.jp", true },
{ "frontierdiscount.com", true },
{ "frontiers.nl", true },
+ { "frontlinemessenger.com", true },
{ "fropky.com", true },
{ "frostprotection.co.uk", true },
{ "frostwarning.com", true },
@@ -13872,6 +14160,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "froufe.com", true },
{ "frozen-geek.net", true },
{ "frozen-solid.net", true },
+ { "frozenjam.com", true },
{ "frprn.es", true },
{ "frtn.com", true },
{ "frtr.gov", true },
@@ -13903,6 +14192,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fsdress.com", true },
{ "fsfxpackages.com", true },
{ "fsj4u.ch", true },
+ { "fsk.fo", true },
{ "fsky.info", true },
{ "fsm2016.org", true },
{ "fsps.ch", true },
@@ -13920,6 +14210,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ftv.re", true },
{ "fu-li88.com", true },
{ "fu-li88.net", true },
+ { "fu639.top", true },
+ { "fu898.top", true },
{ "fuantaishenhaimuli.net", true },
{ "fuck-your-false-positive.de", true },
{ "fuckav.ru", true },
@@ -14003,9 +14295,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "funtimeentertainment.co.uk", true },
{ "funtimesbouncycastles.co.uk", true },
{ "fur.red", true },
+ { "furaje-iasi.com", true },
{ "furcity.me", true },
{ "furgo.love", true },
{ "furigana.info", true },
+ { "furikake.xyz", true },
{ "furkancaliskan.com", true },
{ "furkot.com", true },
{ "furkot.de", true },
@@ -14017,6 +14311,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "furlog.it", true },
{ "furnfurs.com", true },
{ "furnitureconcept.co.uk", true },
+ { "furry.agency", true },
{ "furry.cat", true },
{ "furry.dk", true },
{ "furry.zone", false },
@@ -14024,8 +14319,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "furrytech.network", true },
{ "furrytf.club", true },
{ "furryyiff.site", true },
- { "fursuitbutts.com", true },
{ "furtherfood.com", true },
+ { "fusa-miyamoto.jp", true },
{ "fuselight.nl", true },
{ "fuseos.net", true },
{ "fushee.com", true },
@@ -14069,7 +14364,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fxopen.ru", true },
{ "fxp.co.il", true },
{ "fxseo.com.au", true },
- { "fxtalk.cn", true },
{ "fxthai.com", true },
{ "fxtrade-lab.com", true },
{ "fxweb.co", true },
@@ -14089,11 +14383,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "fysiotherapienieuwveen.nl", true },
{ "fysiovdberg.nl", true },
{ "fysuite.com", true },
+ { "fytcart.com", true },
{ "fzbrweb.cz", true },
{ "fzhyzamt.com", true },
{ "fzx750.ru", true },
{ "g-m-w.eu", true },
- { "g-marketing.ro", true },
{ "g-o.pl", true },
{ "g-p-design.com", true },
{ "g-rom.net", true },
@@ -14110,6 +14404,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "g3rv4.com", true },
{ "g4w.co", true },
{ "g5.gov", true },
+ { "g6666g.tk", true },
{ "g8energysolutions.co.uk", true },
{ "gaaz.fr", true },
{ "gabe565.com", true },
@@ -14129,7 +14424,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gae123.com", true },
{ "gaest.com", true },
{ "gaestehaus-monika.com", true },
- { "gaff-rig.co.uk", true },
{ "gaflooring.com", true },
{ "gafunds.com", true },
{ "gagliarducci.it", true },
@@ -14137,6 +14431,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gagne.tk", true },
{ "gagnerplusdargent.info", true },
{ "gagniard.org", true },
+ { "gagor.pl", true },
{ "gagygnole.ch", true },
{ "gaiavanderzeyp.com", true },
{ "gaichon.com", true },
@@ -14147,11 +14442,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gaitrehabilitation.com", true },
{ "gaitresearch.com", true },
{ "gakkainavi-epsilon.jp", true },
- { "gakkainavi-epsilon.net", true },
{ "gakkainavi.jp", true },
{ "gakkainavi.net", true },
{ "gakkainavi4.jp", true },
- { "gakkainavi4.net", true },
{ "gaku-architect.com", true },
{ "gala.kiev.ua", false },
{ "galabau-maurmann.de", true },
@@ -14161,6 +14454,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "galanight.cz", true },
{ "galecia.com", true },
{ "galeria42.com", true },
+ { "galeriart.xyz", true },
{ "galerieautodirect.com", true },
{ "galeries.photo", true },
{ "galgopersa.com.br", true },
@@ -14185,6 +14479,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gambitnash.co.uk", true },
{ "gambitnash.com", true },
{ "gambitprint.com", true },
+ { "gamblerhealing.com", true },
{ "gamblersgaming.eu", true },
{ "game4less.com", true },
{ "game7.de", true },
@@ -14200,24 +14495,28 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gameisbest.jp", true },
{ "gamekaitori.jp", true },
{ "gamekeepers.cz", true },
+ { "gamemodding.com", true },
{ "gamenerd.net", true },
{ "gameofpwnz.com", true },
{ "gamepad.com.br", true },
{ "gameplaysforkids.com", true },
{ "gamepreorders.com", true },
{ "gamequest.info", true },
+ { "gamer-portal.com", true },
{ "gamercredo.com", true },
{ "gamereader.de", true },
{ "gamerezo.com", true },
{ "gamerzdot.com", true },
{ "games4theworld.org", true },
{ "gamesaviour.com", true },
+ { "gamesdepartment.co.uk", true },
{ "gameserver-sponsor.me", true },
{ "gameshowchallenge.ie", true },
{ "gamesided.com", true },
{ "gamesplanet.com", true },
{ "gamesputnik.ru", true },
{ "gamestats.gg", true },
+ { "gametilt.com", true },
{ "gametube.website", true },
{ "gamilab.com", true },
{ "gamilab.no", true },
@@ -14229,7 +14528,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gamishou.fr", true },
{ "gamivo.com", true },
{ "gamoloco.com", true },
- { "gan.wtf", true },
{ "ganado.org", true },
{ "ganaenergia.com", true },
{ "ganasoku.net", true },
@@ -14240,7 +14538,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gandgliquors.com", true },
{ "ganggalbichler.at", true },
{ "gansleit.com", false },
- { "ganyouxuan.com", true },
{ "ganztagplus.de", true },
{ "gao.rocks", true },
{ "gaojianli.tk", true },
@@ -14248,6 +14545,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gapdirect.com", true },
{ "gapfa.org", true },
{ "gaptek.id", false },
+ { "gar-nich.net", false },
{ "garage-leone.com", true },
{ "garage-meynard.com", true },
{ "garageenginuity.com", true },
@@ -14274,7 +14572,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gargazon.net", true },
{ "garron.net", true },
{ "garrowmediallc.com", true },
- { "gartenhauszentrum.de", true },
{ "gartenplanung-brendes.de", true },
{ "garycarmell.com", true },
{ "garycwaite.com", true },
@@ -14285,11 +14582,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "garywhittington.com", true },
{ "gashalot.com", true },
{ "gastoudererenda.nl", true },
- { "gastromedicalcenter.com.br", true },
{ "gastrotiger.at", true },
{ "gastrotiger.de", true },
{ "gate2home.com", true },
{ "gateaucreation.fr", true },
+ { "gatekiller.co.uk", true },
{ "gatewaybridal.com", true },
{ "gatewaybronco.com", true },
{ "gauche.com", true },
@@ -14304,7 +14601,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gavinsblog.com", true },
{ "gawrimanecuta.com", true },
{ "gay-jays.com", true },
- { "gaya-sa.org", true },
{ "gayforgenji.com", true },
{ "gayjays.com", true },
{ "gaymerconnect.net", true },
@@ -14314,7 +14610,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gaysexpositions.guide", true },
{ "gayukai.net", true },
{ "gazachallenge.org", true },
- { "gazee.net", true },
{ "gazellegames.net", false },
{ "gazete.org", true },
{ "gazette.govt.nz", true },
@@ -14326,7 +14621,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gc.gy", true },
{ "gc.ru.net", true },
{ "gcbit.dk", true },
- { "gccm-events.com", true },
{ "gcfadvisors.com", true },
{ "gcgeeks.com.au", true },
{ "gcguild.net", true },
@@ -14343,6 +14637,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gdpr-pohotovost.cz", true },
{ "gdv.me", true },
{ "gdz-spishy.com", true },
+ { "gdz.tv", true },
{ "ge3k.net", false },
{ "gear4you.shop", true },
{ "gearallnews.com", true },
@@ -14377,7 +14672,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "geekles.net", true },
{ "geeknik.com", true },
{ "geekpad.com", true },
- { "geeks.one", true },
{ "geekshirts.cz", true },
{ "geektopia.es", true },
{ "geekwhack.org", true },
@@ -14392,7 +14686,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "geertdegraaf.nl", true },
{ "geertswei.nl", true },
{ "gegeco.ch", true },
- { "geh.li", true },
{ "gehaowu.com", true },
{ "gehas-wein-shop.de", true },
{ "gehirn.co.jp", true },
@@ -14423,7 +14716,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gemini.com", true },
{ "gemquery.com", true },
{ "genchev.io", true },
- { "gencmedya.com", false },
+ { "gencmedya.com", true },
{ "genderidentiteit.nl", true },
{ "gendrin.com", true },
{ "gendundrupa.ch", true },
@@ -14482,9 +14775,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "geocommunicator.gov", true },
{ "geocompass.at", true },
{ "geofox.org", true },
+ { "geography-schools.com", true },
{ "geoip.fedoraproject.org", true },
{ "geoip.stg.fedoraproject.org", true },
{ "geojs.io", true },
+ { "geology-schools.com", true },
{ "geometra.roma.it", true },
{ "geomex.be", true },
{ "geoponika.gr", true },
@@ -14497,6 +14792,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "georgehalachev.com", true },
{ "georgemaschke.com", true },
{ "georgemaschke.net", true },
+ { "georgepancescu.ro", true },
{ "georgescarryout.com", true },
{ "georgewbushlibrary.gov", true },
{ "georgiaautoglass.net", true },
@@ -14517,6 +14813,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gerald-zojer.com", true },
{ "geraldsonrealty.com", true },
{ "gerardinden.nl", true },
+ { "gerardobsd.com", true },
{ "gerardozamudio.mx", true },
{ "gerbyte.co.uk", true },
{ "gerbyte.com", true },
@@ -14525,6 +14822,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "germandarknes.net", true },
{ "germansoldiers.net", true },
{ "germanssky.de", true },
+ { "germanticz.de", true },
{ "gernert-server.de", true },
{ "gero.io", true },
{ "gerritcodereview.com", true },
@@ -14541,7 +14839,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "get-erp.ru", true },
{ "get-it-live.com", true },
{ "get-it-live.de", true },
- { "get-link.info", true },
{ "get-on.bid", true },
{ "get-refer.com", true },
{ "get.how", true },
@@ -14559,6 +14856,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "getdash.io", true },
{ "getdeveloper.de", true },
{ "geteckeld.nl", true },
+ { "getenv.io", true },
{ "geterp.ru", true },
{ "getfedora.org", true },
{ "getfirstalert.com", true },
@@ -14589,7 +14887,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "getpuck.com", true },
{ "getrambling.com", true },
{ "getresilience.org", true },
- { "getsecure.nl", true },
{ "getsensibill.com", true },
{ "getsetbounce.co.uk", true },
{ "getsilknow.com", true },
@@ -14600,10 +14897,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "getteamninja.com", true },
{ "getthefriendsyouwant.com", true },
{ "getticker.com", true },
+ { "gettopquality.com", true },
{ "getts.ro", true },
{ "getupandbounce.co.uk", true },
{ "getvdownloader.com", true },
- { "getweloop.io", true },
{ "getwemap.com", true },
{ "getwisdom.io", true },
{ "getyeflask.com", true },
@@ -14627,7 +14924,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gforce.ninja", true },
{ "gfoss.eu", true },
{ "gfournier.ca", true },
- { "gfwno.win", true },
{ "gfxbench.com", true },
{ "ggdcpt.com", true },
{ "gginin.today", true },
@@ -14641,7 +14937,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ggx.us", true },
{ "gha.st", true },
{ "ghaglund.se", true },
- { "ghid-pitesti.ro", true },
{ "ghini.com", true },
{ "ghislainphu.fr", true },
{ "ghostblog.info", false },
@@ -14655,6 +14950,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "giacomodrago.it", true },
{ "giacomopelagatti.it", true },
{ "giaithich.net", true },
+ { "giakki.eu", false },
{ "gianproperties.com", true },
{ "giant-panda.com", true },
{ "giant-tortoise.com", true },
@@ -14677,6 +14973,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "giftmaniabrilhos.com.br", true },
{ "gifts.best", true },
{ "gifts365.co.uk", true },
+ { "gifudodo.com", true },
{ "gig-raiffeisen.de", true },
{ "giga.nl", true },
{ "gigabitz.pw", true },
@@ -14728,7 +15025,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "girlan.net", true },
{ "girlsforum.com", true },
{ "girlsgenerationgoods.com", true },
- { "girlsgonesporty.com", true },
{ "girlsnet.work", true },
{ "girlz.jp", true },
{ "girsa.org", true },
@@ -14738,6 +15034,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gisher.news", true },
{ "gisher.org", true },
{ "gisher.video", true },
+ { "gishiko.net", true },
{ "gistr.io", true },
{ "git.ac.cn", true },
{ "git.market", true },
@@ -14789,6 +15086,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "glasfaser-im-hanseviertel.de", true },
{ "glasgestaltung.biz", true },
{ "glasner.photo", true },
+ { "glaspe.com", true },
{ "glass.google.com", true },
{ "glasschmuck-millefiori.de", true },
{ "glasweld.com", true },
@@ -14804,6 +15102,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "glenhuntlyapartments.com.au", true },
{ "glenshere.com", true },
{ "glevolution.com", true },
+ { "glicerina.online", true },
{ "glidingshop.cz", true },
{ "glidingshop.de", true },
{ "glidingshop.eu", true },
@@ -14829,10 +15128,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "globalonetechnology.com", true },
{ "globalprojetores.com.br", true },
{ "globalresearchcouncil.org", true },
- { "globalresistancecorporation.com", true },
{ "globalventil.com", true },
{ "globcoin.io", true },
- { "globeinform.com", true },
{ "globelink-group.com", true },
{ "glocalworks.jp", true },
{ "glofox.com", true },
@@ -14851,6 +15148,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "glutenfreelife.co.nz", true },
{ "glutenfreevr.com", true },
{ "glykofridis.nl", true },
+ { "glyph.ws", true },
{ "glyxins.com", true },
{ "gm-net.jp", true },
{ "gm.search.yahoo.com", false },
@@ -14866,6 +15164,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gmpark.dk", true },
{ "gmpartsdb.com", true },
{ "gmplab.com", true },
+ { "gmslparking.co.uk", true },
{ "gmta.nl", true },
{ "gmtplus.co.za", true },
{ "gmw-hannover.de", true },
@@ -14891,10 +15190,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gnucashtoqif.us", true },
{ "gnunet.org", true },
{ "gnuplus.me", true },
- { "gnwp.eu", true },
{ "gnylf.com", true },
{ "go-dutch.eu", true },
{ "go-embedded.de", true },
+ { "go-propiedades.cl", true },
{ "go-wild.co.uk", true },
{ "go-zh.org", true },
{ "go.microsoft.com", true },
@@ -14908,6 +15207,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "goatbot.xyz", true },
{ "goatcloud.com", true },
{ "gobarrelroll.com", true },
+ { "goblintears.com", true },
{ "gobouncy.co.uk", true },
{ "gobouncy.com", true },
{ "gobranding.com.vn", true },
@@ -14929,12 +15229,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "godsofhell.com", true },
{ "godsofhell.de", true },
{ "goededoelkerstkaarten.nl", true },
+ { "goedkopelaptopshardenberg.nl", true },
{ "goedkopeonesies.nl", true },
{ "goedverzekerd.net", true },
{ "goemail.me", true },
{ "goerlitz-zgorzelec.org", true },
{ "goerres2014.de", true },
- { "goesta-hallenbau.de", true },
{ "goetemp.de", true },
{ "goetic.space", true },
{ "goettinger-biergarten.de", true },
@@ -14968,6 +15268,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "goldenhillsoftware.com", true },
{ "goldenhost.ca", true },
{ "goldenplate.com.sg", true },
+ { "goldenruleemail.com", true },
{ "goldfmromania.ro", true },
{ "goldmark.com.au", true },
{ "goldpreisfinder.at", true },
@@ -14985,9 +15286,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gomasy.jp", true },
{ "gomelchat.com", true },
{ "gomena.io", true },
- { "gomiblog.com", true },
{ "gommista.roma.it", true },
{ "gondawa.com", true },
+ { "gondelvaartdwarsgracht.nl", true },
{ "gongjuhao.com", true },
{ "gonx.dk", true },
{ "goo.gl", true },
@@ -14996,8 +15297,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gooday.life", true },
{ "gooddomainna.me", true },
{ "goodenough.nz", false },
- { "goodfeels.net", true },
{ "goodhealthtv.com", true },
+ { "goodquote.gq", true },
{ "goodshepherdmv.com", true },
{ "google", true },
{ "google-analytics.com", true },
@@ -15013,7 +15314,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gopher.tk", true },
{ "goproallaccess.com", true },
{ "goquiq.com", true },
- { "gordonobrecht.com", true },
{ "gordonscouts.com.au", true },
{ "gorf.chat", true },
{ "gorf.club", true },
@@ -15084,7 +15384,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gpsvideocanada.com", true },
{ "gpws.ovh", true },
{ "gr.search.yahoo.com", false },
- { "gra2.com", true },
{ "graasp.net", false },
{ "grabacabpa.com", true },
{ "grace-wan.com", true },
@@ -15131,6 +15430,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grandcapital.ru", true },
{ "grandcastles.co.uk", true },
{ "grandchene.ch", true },
+ { "grande.coffee", true },
{ "grandefratellonews.com", true },
{ "grandeto.com", true },
{ "grandjunctionbrewing.com", true },
@@ -15149,10 +15449,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "graonatural.com.br", true },
{ "grapee.jp", true },
{ "grapeintentions.com", true },
- { "graphcommons.com", true },
{ "graphene.software", true },
+ { "graphic-schools.com", true },
{ "graphic-shot.com", true },
- { "graphified.nl", false },
{ "graphire.io", true },
{ "grapholio.net", true },
{ "grasmark.com", true },
@@ -15189,6 +15488,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "greatlakeside.de", true },
{ "greatlengthshairextensionssalon.com", true },
{ "greatlifeinsurancegroup.com", true },
+ { "greatskillchecks.com", true },
{ "greboid.co.uk", true },
{ "greboid.com", true },
{ "greditsoft.com", true },
@@ -15225,15 +15525,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "greensdictofslang.com", true },
{ "greensquare.tk", true },
{ "greenteamtwente.nl", true },
+ { "greenwaylog.net", true },
{ "greenwithdecor.com", true },
{ "greer.ru", true },
{ "greg.red", true },
{ "gregbrimble.com", true },
{ "greger.me", true },
- { "gregmarziomedia.co.za", true },
{ "gregmarziomedia.com", true },
{ "gregmilton.com", true },
- { "gregmilton.org", true },
{ "gregmote.com", true },
{ "grego.pt", true },
{ "gregoirow.be", true },
@@ -15257,7 +15556,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grexx.nl", true },
{ "grey.house", true },
{ "greybeards.ca", true },
- { "greyhash.se", true },
{ "greymattertechs.com", true },
{ "greysky.me", true },
{ "greyskymedia.com", true },
@@ -15294,6 +15592,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "groenaquasolutions.nl", true },
{ "groenewoud.me", true },
{ "groentebesteld.nl", true },
+ { "groenteclub.nl", true },
{ "groepjam-usedcars.be", true },
{ "grog.pw", true },
{ "grokker.com", true },
@@ -15314,6 +15613,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grothoff.org", true },
{ "grottenthaler.eu", true },
{ "grouchysysadmin.com", true },
+ { "groundlevelup.com", true },
{ "group4layers.net", true },
{ "groupe-neurologique-nord.lu", true },
{ "groupebaillargeon.com", true },
@@ -15324,6 +15624,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "growingallthings.co.uk", true },
{ "growit.events", true },
{ "growy.ch", true },
+ { "grozter.se", true },
{ "grrmmll.com", true },
{ "grsecurity.net", true },
{ "gruble.de", true },
@@ -15341,20 +15642,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "grupomakben.com", true },
{ "grupomedlegal.com", true },
{ "grupoparco.com", true },
- { "gruppoipl.it", true },
{ "gruselgrotte.com", true },
{ "grusenmeyer.be", true },
+ { "grusig-geil.ch", true },
{ "gruwa.net", true },
{ "grytics.com", true },
{ "gs93.de", true },
{ "gsaj114.net", true },
{ "gscloud.xyz", true },
- { "gsdb.net", true },
{ "gsi-network.com", true },
{ "gsimagebank.co.uk", true },
{ "gslink.me", true },
{ "gsmbrick.com", true },
{ "gsmsecurity.net", true },
+ { "gsoc.se", true },
{ "gsrc.io", true },
{ "gst.name", true },
{ "gst.priv.at", true },
@@ -15376,6 +15677,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gtravers-basketmaker.co.uk", true },
{ "gts-dp.de", true },
{ "gtts.space", true },
+ { "gtxbbs.com", true },
{ "guajars.cl", true },
{ "guanyembadalona.org", true },
{ "guanzhong.ca", true },
@@ -15417,7 +15719,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "guildbase.de", true },
{ "guildofmusicsupervisors.co.uk", true },
{ "guillaume-briand.fr", true },
- { "guillaumecote.me", true },
+ { "guillaumeperrin.io", true },
{ "guillemaud.me", true },
{ "guim.co.uk", true },
{ "guineapigmustach.es", true },
@@ -15433,7 +15735,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gunceloyunhileleri.com", true },
{ "gunwatch.co.uk", true },
{ "gunworld.com.au", true },
- { "guochang.xyz", true },
{ "guoke.com", true },
{ "guoliang.me", true },
{ "guozeyu.com", true },
@@ -15441,6 +15742,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "guphi.net", false },
{ "gurkan.in", true },
{ "gurmel.ru", true },
+ { "gurochan.ch", true },
{ "gurpusmaximus.com", true },
{ "guru-naradi.cz", true },
{ "gurucomi.com", true },
@@ -15449,13 +15751,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gus.host", true },
{ "gustaff.de", true },
{ "gustiaux.com", true },
+ { "gustom.io", true },
{ "gut8er.com.de", true },
{ "gutschein-spezialist.de", true },
{ "gutscheingeiz.de", true },
{ "gutuia.blue", true },
{ "guus-thijssen.nl", true },
{ "guusvandewal.nl", true },
- { "guvernalternativa.ro", true },
{ "guyeskens.be", true },
{ "gv-neumann.de", true },
{ "gv-salto.nl", true },
@@ -15478,9 +15780,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "gxmyqy.net", true },
{ "gyara.moe", true },
{ "gyas.nl", true },
- { "gycis.me", false },
{ "gymagine.ch", true },
{ "gymhero.me", true },
+ { "gymjp.com", true },
{ "gymkirchenfeld.ch", true },
{ "gymnaserenens.ch", true },
{ "gymnasium-farmsen.de", true },
@@ -15520,6 +15822,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "h404bi.com", true },
{ "ha-kunamatata.de", true },
{ "ha3.eu", true },
+ { "ha6.ru", true },
{ "haarlemsesaxofoonschool.nl", true },
{ "haavard.me", true },
{ "haazen.xyz", true },
@@ -15538,16 +15841,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hacertest.com", true },
{ "hacettepeteknokent.com.tr", true },
{ "hachre.de", false },
- { "hack.cz", true },
+ { "hack.club", true },
{ "hackademix.net", true },
{ "hackanders.com", true },
- { "hackattack.com", true },
{ "hackbarth.guru", true },
{ "hackbeil.name", true },
{ "hackcraft.net", true },
{ "hackdown.me", true },
{ "hackenkunjeleren.nl", true },
{ "hackenturet.dk", true },
+ { "hacker.club", true },
{ "hacker.holiday", true },
{ "hacker.im", true },
{ "hacker.one", true },
@@ -15555,9 +15858,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hacker1.com", true },
{ "hacker101.com", true },
{ "hackerchai.com", true },
- { "hackerco.com", true },
{ "hackereyes.com", true },
{ "hackergateway.com", true },
+ { "hackerlite.xyz", true },
{ "hackernet.se", true },
{ "hackerone-ext-content.com", true },
{ "hackerone-user-content.com", true },
@@ -15577,6 +15880,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hackreone.com", true },
{ "hacksecu.re", true },
{ "hacksoc.co.uk", true },
+ { "hackthissite.org", true },
{ "hacktic.info", true },
{ "hacktivis.me", true },
{ "hackworx.com", false },
@@ -15600,14 +15904,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "haidihai.ro", true },
{ "hailer.com", true },
{ "haim.bio", true },
- { "haimablog.ooo", true },
{ "hairbeautyartists.it", true },
{ "haircrazy.com", true },
{ "hairplaybychenellekay.com", false },
{ "hairraisingphotobooths.co.uk", true },
{ "hairtonic-lab.com", true },
{ "haixihui.cn", true },
- { "haizum.pro", true },
{ "hajekdavid.cz", true },
{ "hajekj.net", true },
{ "hajnzic.at", true },
@@ -15617,6 +15919,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hakase.pw", true },
{ "hakatabijin-mind.com", true },
{ "hake.me", true },
+ { "hakkasangroup.com", true },
+ { "hakkasannightclub.com", true },
{ "hal-9th.space", true },
{ "halacs.hu", true },
{ "halbich.design", true },
@@ -15655,6 +15959,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hampshiretechservices.co.uk", true },
{ "hamsters-uk.org", true },
{ "hana.ondemand.com", true },
+ { "hanakaraku.com", true },
{ "hanashi.eu", true },
{ "hanbing.it", true },
{ "handbrake.fr", true },
@@ -15703,8 +16008,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hanzubon.jp", true },
{ "hao-zhang.com", true },
{ "haogoodair.ca", true },
+ { "haoqi.men", true },
{ "haotown.cn", true },
{ "haozhang.org", true },
+ { "haozhexie.com", true },
{ "haozi.me", true },
{ "hapheemraadssingel.nl", true },
{ "hapijs.cn", true },
@@ -15764,7 +16071,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "harringtonca.com", true },
{ "harrisonswebsites.com", true },
{ "harrisonvillenaz.org", true },
- { "harry-baker.com", true },
{ "harrymclaren.co.uk", true },
{ "harryphoto.fr", true },
{ "harrysgardengamehire.co.uk", true },
@@ -15780,6 +16086,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "harvestapp.com", true },
{ "harvester.fr", true },
{ "harveyauzorst.com", true },
+ { "harveymilton.com", true },
{ "has-no-email-set.de", false },
{ "has.work", true },
{ "hasdf.de", true },
@@ -15789,10 +16096,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hash.army", true },
{ "hash.works", true },
{ "hashcat.net", true },
+ { "hashemian.com", true },
{ "hashes.org", true },
{ "hashi.dk", true },
{ "hashiconf.eu", true },
{ "hashicorp.com", true },
+ { "hashimah.ca", true },
{ "hashimoto-jimusho.com", true },
{ "hashinteractive.com", true },
{ "hashish.net", true },
@@ -15854,7 +16163,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hazeover.com", true },
{ "hazloconlapix.com", true },
{ "hazukilab.com", true },
- { "hb8522.com", true },
+ { "hbcu-colleges.com", true },
{ "hbkonsult.com", true },
{ "hboeck.de", true },
{ "hbpowell.com", true },
@@ -15864,6 +16173,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hd-offensive.at", false },
{ "hd-only.org", true },
{ "hd-outillage.com", true },
+ { "hda.me", true },
{ "hdc.cz", true },
{ "hdcamvids.com", true },
{ "hdcenter.cc", true },
@@ -15884,11 +16194,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "headshopinternational.com", true },
{ "headshotharp.de", true },
{ "healey.io", true },
+ { "health-and-beauty-news.net", true },
{ "health-booster.com", true },
{ "health-match.com.au", true },
{ "health-plan-news.com", true },
{ "health.gov", true },
{ "health.graphics", true },
+ { "healthandskinbeauty.com", true },
{ "healthcare.gov", false },
{ "healthcultureexpo.com", true },
{ "healtheals.com", true },
@@ -15939,11 +16251,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "heavensattic.co.uk", true },
{ "heavensinferno.net", true },
{ "heavyequipments.org", true },
+ { "heayao.com", true },
{ "hebergeurssd.com", true },
{ "hebikhiv.nl", true },
{ "hebingying.cn", true },
{ "hebocon.nl", true },
- { "hebriff.com", true },
{ "hec-espace-entreprise.ch", true },
{ "hec.global", true },
{ "hechamano.es", true },
@@ -16012,6 +16324,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "heliosnet.com", true },
{ "heliosvoting.org", true },
{ "helix.am", true },
+ { "hellenicagora.co.uk", true },
{ "hellersgas.com", true },
{ "helles-koepfchen.de", true },
{ "helloacm.com", true },
@@ -16133,11 +16446,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hexieshe.com", true },
{ "hexony.com", true },
{ "hexr.org", true },
+ { "hexstream.net", true },
{ "hexstream.xyz", true },
{ "hexstreamsoft.com", true },
{ "hexxagon.com", true },
{ "heyfringe.com", true },
- { "heyjournal.com", true },
{ "heywood.cloud", true },
{ "hf-tekst.nl", true },
{ "hf51.nl", true },
@@ -16160,7 +16473,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hicl.org", true },
{ "hicoria.com", true },
{ "hidbo.de", true },
- { "hiddendepth.ie", false },
+ { "hiddendepth.ie", true },
{ "hiddenhillselectric.com", true },
{ "hiddenhillselectrical.com", true },
{ "hiddenhillselectrician.com", true },
@@ -16170,7 +16483,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hiddenhillsoutdoorlighting.com", true },
{ "hiddenmalta.net", true },
{ "hideallip.com", true },
- { "hideouswebsite.com", true },
{ "hidroshop.com.br", true },
{ "hieu.com.au", true },
{ "higgsboson.tk", true },
@@ -16190,6 +16502,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "higilopocht.li", true },
{ "hikarukujo.com", true },
{ "hike.pics", true },
+ { "hikerone.com", true },
{ "hikingguy.com", true },
{ "hilahdih.cz", true },
{ "hilaolu.studio", true },
@@ -16211,11 +16524,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "himekomi.com", true },
{ "himens.com", true },
{ "hin10.com", true },
+ { "hinata-hidetoshi.com", true },
{ "hintergrundbewegung.de", true },
{ "hinterhofbu.de", true },
{ "hinterposemuckel.de", true },
- { "hiojbk.com", true },
- { "hipi.jp", true },
{ "hippies.com.br", true },
{ "hippo.ge", true },
{ "hippomovers.com", true },
@@ -16226,7 +16538,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hiqfranchise.co.uk", true },
{ "hiqhub.co.uk", false },
{ "hiqonline.co.uk", true },
- { "hirakatakoyou.org", true },
{ "hirake55.com", true },
{ "hiratake.xyz", true },
{ "hire-a-coder.de", true },
@@ -16239,16 +16550,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hiromuogawa.com", true },
{ "hirotaka.org", true },
{ "hirte-digital.de", true },
+ { "hirtzfr.eu", true },
{ "hirzaconsult.ro", true },
{ "hisbrucker.net", true },
{ "hisgifts.com.au", true },
{ "hisingensck.se", true },
- { "hisnet.de", true },
{ "hispanic.dating", true },
{ "histocamp.de", true },
{ "histoire-cite.ch", true },
{ "historia-arte.com", true },
- { "history.google.com", true },
+ { "history-schools.com", true },
+ { "history.google.com", false },
{ "hitandhealth.nl", true },
{ "hiteco.com", true },
{ "hititgunesi-tr.com", true },
@@ -16271,6 +16583,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hiwiki.tk", true },
{ "hiyacar.co.uk", true },
{ "hiyobi.me", true },
+ { "hiyuki2578.net", true },
{ "hizzacked.xxx", true },
{ "hj-mosaiques.be", true },
{ "hj.rs", true },
@@ -16300,7 +16613,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hlidacnajemneho.cz", true },
{ "hlin.cloud", true },
{ "hlinformatics.nl", true },
- { "hloe0xff.ru", true },
{ "hlsmandarincentre.com", true },
{ "hlucas.de", true },
{ "hm773.net", true },
@@ -16326,7 +16638,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hochzeitsfotograf-deinfoto.ch", true },
{ "hochzeitsgezwitscher.de", true },
{ "hochzeitsplanerin-hamburg.de", true },
- { "hockey.academy", true },
{ "hockeyapp.ch", true },
{ "hockeymotion.ch", true },
{ "hodgephotography.com", true },
@@ -16381,6 +16692,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "holydragoon.jp", true },
{ "holygrail.games", true },
{ "holyhiphopdatabase.com", true },
+ { "holymartyrschurch.org", true },
{ "holytransaction.com", true },
{ "holywhite.com", true },
{ "holz.nu", true },
@@ -16392,6 +16704,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "holzundgarten.de", true },
{ "holzvergaser-forum.de", true },
{ "homatism.com", true },
+ { "home-handymen.co.uk", true },
{ "home-insurance-quotes.tk", true },
{ "homeautomated.com", true },
{ "homebasedsalons.com.au", true },
@@ -16408,12 +16721,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "homeimagician.com.au", true },
{ "homem-viril.com", true },
{ "homeodynamics.com", true },
- { "homeoesp.org", true },
{ "homeofjones.net", true },
{ "homeogenium.com", true },
{ "homeownersinsurancenevada.com", true },
{ "homeownersinsurancenv.com", true },
{ "homepage.shiga.jp", true },
+ { "homeporn.stream", true },
{ "homeprivate.de", true },
{ "homeseller.com", true },
{ "homeserver-kp.de", true },
@@ -16429,6 +16742,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "honda-centrum.cz", true },
{ "hondart.cz", true },
{ "hondenoppasfraneker.nl", true },
+ { "honey.beer", true },
{ "honey.is", true },
{ "honeybadger.io", false },
{ "honeycome.net", true },
@@ -16437,15 +16751,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "honeypot.net", true },
{ "hong.io", true },
{ "hongoi.com", true },
+ { "honkion.net", true },
{ "honovere.de", true },
{ "hontoir.eu", true },
{ "hoodtrader.com", true },
{ "hoofddorp-centraal.nl", true },
{ "hookany.com", true },
+ { "hoooc.com", true },
{ "hooowl.com", true },
{ "hoop.la", true },
{ "hoopertechnicalsolutions.com", true },
{ "hooplessinseattle.com", true },
+ { "hooray.beer", true },
{ "hoorr.com", true },
{ "hootworld.net", false },
{ "hoowhen.cn", true },
@@ -16455,6 +16772,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hopesanddreams.org.uk", true },
{ "hopla.sg", true },
{ "hoplongtech.com", true },
+ { "hoponmedia.de", true },
{ "hopps.me", true },
{ "hoppyx.com", true },
{ "hor.website", true },
@@ -16486,6 +16804,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hosiet.me", true },
{ "hosmussynergie.nl", false },
{ "hospitalhomelottery.org", true },
+ { "hospitality-colleges.com", true },
{ "hostadvice.com", true },
{ "hostarea51.com", true },
{ "hostcoz.com", true },
@@ -16494,6 +16813,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hostedtalkgadget.google.com", true },
{ "hostfission.com", true },
{ "hostgigz.com", true },
+ { "hostico.ro", true },
{ "hosting-swiss.ch", true },
{ "hostingactive.it", true },
{ "hostinghelp.guru", true },
@@ -16504,11 +16824,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hostingsolutions.cz", true },
{ "hostix.de", true },
{ "hostma.ma", true },
+ { "hostmark.pl", true },
{ "hostme.co.il", false },
{ "hostmijnpagina.nl", true },
{ "hostmodern.com.au", true },
{ "hosts.cf", true },
{ "hostserv.org", true },
+ { "hostworkz.com", true },
{ "hotcandlestick.com", true },
{ "hotchillibox.com", true },
{ "hotcoin.io", true },
@@ -16563,6 +16885,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "houstoncreditlaw.com", true },
{ "houstontxlocksmiths.com", true },
{ "houtinee.com", true },
+ { "hoverboardbarato.com", true },
{ "how2play.pl", true },
{ "howa-n.net", true },
{ "howardtyson.com", true },
@@ -16572,7 +16895,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "howgoodwasmysex.com", true },
{ "howieisawesome.com", true },
{ "howlongtobeatsteam.com", true },
- { "howmanymilesfrom.com", true },
{ "howsecureismypassword.net", true },
{ "howsmyssl.com", true },
{ "howsmytls.com", true },
@@ -16590,7 +16912,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hp42.de", true },
{ "hpac-portal.com", true },
{ "hpbn.co", true },
- { "hpepub.com", true },
{ "hpisavageforum.com", true },
{ "hpkp-faq.de", true },
{ "hpnow.com.br", true },
@@ -16610,12 +16931,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hrjfeedstock.com", true },
{ "hrjfeedstock.org", true },
{ "hrk.io", true },
- { "hrobert.hu", true },
{ "hroling.nl", true },
{ "hroschyk.cz", true },
+ { "hrsa.gov", true },
{ "hrstapps-dev.com", true },
{ "hrtech.shop", true },
- { "hru.gov", true },
{ "hryniewski.net", true },
{ "hryx.net", true },
{ "hs-arbeitsschutz.de", true },
@@ -16623,6 +16943,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hs-umformtechnik.de", true },
{ "hsappstatic.net", true },
{ "hscorp.de", true },
+ { "hserver.top", true },
{ "hsex.tv", true },
{ "hsivonen.com", true },
{ "hsivonen.fi", true },
@@ -16656,8 +16977,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "http2.pro", true },
{ "https-rulesets.org", true },
{ "https.dk", true },
- { "https.jetzt", true },
{ "https4all.org", true },
+ { "httpsalarm.com", true },
{ "httpsecured.net", true },
{ "httpsecurityreport.com", true },
{ "httpsiseasy.com", true },
@@ -16673,16 +16994,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hu8588.com", true },
{ "hu8777.com", true },
{ "hu8bet.com", true },
+ { "hu8hu8.com", true },
{ "hua-in.com", true },
{ "hua-in.net", true },
{ "hua-li88.com", true },
{ "hua-li88.net", true },
{ "huagati.com", true },
{ "huahinpropertylisting.com", true },
+ { "huang-haitao.com", true },
{ "huangjiaint.com", true },
{ "huangjingjing.com", true },
{ "huangliangbo.com", true },
- { "huangting.me", true },
{ "huangzenghao.cn", false },
{ "huaqian.art", true },
{ "huashan.co.uk", true },
@@ -16718,6 +17040,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hui-in.com", true },
{ "hui-in.net", true },
{ "huihui.moe", true },
+ { "huininga.com", true },
+ { "huininga.nl", true },
+ { "huininga.org", true },
{ "huirongis.me", true },
{ "huisartsenpraktijkheemraadssingel.nl", true },
{ "huisartsenpraktijksonmezer.nl", true },
@@ -16732,7 +17057,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hulldevs.net", true },
{ "hulpbijmarketing.nl", true },
{ "hulpmiddelenshop.nl", true },
- { "hulsoft.co.uk", true },
{ "human-clone.com", true },
{ "humanenrich.com", true },
{ "humanesources.com", true },
@@ -16770,6 +17094,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "humeur.de", true },
{ "hummy.tv", true },
{ "humorcaliente.com", true },
+ { "humorce.com", false },
{ "humpchies.com", true },
{ "humpen.se", true },
{ "humppakone.com", true },
@@ -16778,9 +17103,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hundesport-psvhalle.de", true },
{ "hundeverwaltung.de", true },
{ "hundter.com", true },
- { "hunstoncanoeclub.co.uk", true },
+ { "hunger.im", true },
+ { "huniverse.co", true },
{ "hunter-read.com", true },
{ "hunter.io", true },
+ { "hunterjohnson.io", true },
{ "hunterkehoe.com", true },
{ "huntexpired.com", true },
{ "huntingdonbouncers.co.uk", true },
@@ -16823,6 +17150,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hwaddress.com", true },
{ "hwag-pb.de", true },
{ "hwinfo.com", true },
+ { "hwlibre.com", true },
{ "hx53.de", true },
{ "hxp.io", true },
{ "hxsf.me", true },
@@ -16870,6 +17198,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "hypotheekbond.nl", true },
{ "hypothes.is", true },
{ "hypothyroidmom.com", true },
+ { "hysh.jp", true },
{ "hyundai.no", true },
{ "hyvanilmankampaamo.fi", true },
{ "hyvinvointineuvoja.fi", true },
@@ -16877,7 +17206,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "i-geld.de", true },
{ "i-hakul.net", true },
{ "i-logic.co.jp", false },
- { "i-meto.com", true },
{ "i-office.com.vn", true },
{ "i-proswiss.com", true },
{ "i-red.info", true },
@@ -16894,6 +17222,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "i5y.org", true },
{ "i66.me", true },
{ "i879.com", true },
+ { "i95.me", false },
{ "ia.net", true },
{ "iaco.li", true },
{ "iactu.info", true },
@@ -16910,6 +17239,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "iambozboz.co.uk", true },
{ "iamcarrico.com", true },
{ "iamhansen.xyz", true },
+ { "iaminashittymood.today", true },
{ "iamjoshellis.com", true },
{ "iamlbk.com", true },
{ "iamlzh.com", true },
@@ -16917,7 +17247,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "iamtonyarthur.com", true },
{ "iamusingtheinter.net", true },
{ "iamwoodbeard.com", true },
- { "ian.sh", true },
{ "iandouglasscott.com", true },
{ "iane-ccs.com", true },
{ "ianix.com", true },
@@ -16926,6 +17255,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "iankmusic.com", true },
{ "ianmooreis.me", true },
{ "ianmoriarty.com.au", true },
+ { "ianvisits.co.uk", true },
{ "ianwalsh.org", false },
{ "iap.network", true },
{ "ias-gruppe.net", true },
@@ -16937,12 +17267,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ibaq.nl", true },
{ "ibauruapan.com.mx", true },
{ "ibcmed.org", true },
+ { "ibe.de", true },
{ "iberiaversicherungen.com", true },
{ "ibericaderedes.es", true },
{ "ibexcore.com", true },
{ "ibigawamizueco.com", true },
{ "ibin.co", true },
{ "ibiz.mk", true },
+ { "iblackfriday.ro", true },
{ "ibodyiq.com", true },
{ "ibpegasus.tk", true },
{ "ibrainmedicine.org", true },
@@ -16953,7 +17285,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ic-lighting.com.au", true },
{ "ic-spares.com", true },
{ "ic3.gov", true },
- { "icabanken.se", true },
{ "icafecash.com", true },
{ "icake.life", true },
{ "icanhasht.ml", true },
@@ -16966,24 +17297,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "icebook.co.uk", true },
{ "icecars.net", true },
{ "icedream.tech", true },
+ { "icetiger.eu", true },
{ "ich-hab-die-schnauze-voll-von-der-suche-nach-ner-kurzen-domain.de", true },
{ "ich-tanke.de", true },
{ "ichasco.com", true },
{ "ichbinein.org", true },
{ "ichbinkeinreh.de", true },
{ "ichmachdas.net", true },
- { "ickerseashop.com", true },
{ "iclart.com", true },
{ "iclinic.ua", true },
{ "icloudlogin.com", true },
{ "icmhd.ch", true },
{ "icmp2018.org", true },
- { "icnsoft.me", true },
- { "icnsoft.org", true },
+ { "icmshoptrend.com", true },
{ "icobench.com", true },
{ "icodeconnect.com", true },
{ "icoh.it", true },
{ "iconomi.net", true },
+ { "icowhitepapers.co", true },
{ "icpc.pp.ua", true },
{ "icq-project.net", true },
{ "icsadviseurs.nl", true },
@@ -17022,6 +17353,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "idealtruss.com.tw", true },
{ "idealwhite.space", true },
{ "ideaman924.com", true },
+ { "ideasenfoto.com", true },
{ "ideashop.com", true },
{ "ideaweb.de", true },
{ "ideiasefinancas.com.br", true },
@@ -17032,8 +17364,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "identifyme.net", true },
{ "identigraf.center", true },
{ "identity.plus", true },
+ { "identitytheft.gov", true },
{ "idered.net", true },
{ "idesignstudio.de", true },
+ { "idesoft.cloud", true },
+ { "idesoftinnovacion.com", true },
+ { "idesoftinnovacion.es", true },
{ "idexxpublicationportal.com", true },
{ "idfy.io", true },
{ "idgard.de", false },
@@ -17073,7 +17409,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ieeesbe.nl", true },
{ "ieeespmb.org", true },
{ "ieji.de", false },
- { "iemas.azurewebsites.net", true },
{ "iemb.tk", true },
{ "ienakanote.com", false },
{ "ies-italia.it", true },
@@ -17084,8 +17419,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ifangpei.com.cn", true },
{ "ifcfg.jp", true },
{ "ifelse.io", true },
- { "ifengge.cn", true },
- { "ifengge.me", true },
{ "ifibe.com", true },
{ "ifightsurveillance.com", true },
{ "ifightsurveillance.net", true },
@@ -17104,6 +17437,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ifxd.bid", true },
{ "ifyou.live", true },
{ "ig.com", true },
+ { "iga-semi.jp", true },
{ "igaryhe.io", true },
{ "igcc.jp", true },
{ "igeh-immo.at", true },
@@ -17135,14 +17469,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ihakkitekin.com", true },
{ "ihatethissh.it", true },
{ "ihc.im", true },
+ { "ihcr.top", true },
{ "ihkk.net", true },
{ "ihls.stream", true },
{ "ihls.world", true },
- { "ihls.xyz", true },
{ "ihoey.com", true },
{ "ihollaback.org", true },
{ "ihopeit.works", true },
{ "ihostup.net", true },
+ { "ihotel.io", false },
{ "ihrhost.com", true },
{ "ihtdenisjaccard.com", true },
{ "ii74.com", true },
@@ -17154,6 +17489,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ijohan.nl", true },
{ "ijsblokjesvormen.nl", true },
{ "ijsclubtilburg.nl", true },
+ { "ijsclubwanneperveen.nl", true },
{ "ijunohana.jp", true },
{ "ikachalife.com", true },
{ "ikarate.ru", true },
@@ -17172,7 +17508,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ikkev.de", true },
{ "ikkoku.de", true },
{ "iklive.org", false },
+ { "ikraenglish.com", true },
{ "ikulist.me", true },
+ { "ikumi.us", true },
{ "ikvts.de", true },
{ "ikwilthepiratebay.org", true },
{ "ila.fi", true },
@@ -17218,6 +17556,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ilookz.nl", true },
{ "ilove.fish", true },
{ "ilrg.com", true },
+ { "iltec-prom.ru", true },
+ { "iltec.ru", true },
{ "iltisim.ch", true },
{ "ilweb.es", true },
{ "ilya.pp.ua", true },
@@ -17243,6 +17583,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "imanageproducts.co.uk", true },
{ "imanageproducts.uk", true },
{ "imanesdeviaje.com", true },
+ { "imanolbarba.net", true },
{ "imaple.org", true },
{ "imarkethost.co.uk", true },
{ "imask.ml", true },
@@ -17263,6 +17604,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "imgaa.com", true },
{ "imgbb.com", true },
{ "imgg.es", true },
+ { "imguoguo.com", true },
{ "imgup.co", true },
{ "imguploaden.nl", true },
{ "imhua.com", true },
@@ -17283,7 +17625,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "immigrationdirect.com.au", true },
{ "immo-agentur.com", true },
{ "immo-passion.net", true },
- { "immobiliarecapitani.com", true },
{ "immobilien-badlippspringe.de", true },
{ "immobilien-in-istanbul.de", true },
{ "immobilien-zirm.de", true },
@@ -17292,6 +17633,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "immobiza.com", false },
{ "immortal.run", true },
{ "imobile3.com", true },
+ { "imoe.ac.cn", true },
{ "imokuri123.com", true },
{ "imouto.my", false },
{ "imouyang.com", true },
@@ -17305,6 +17647,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "imperdin.com", true },
{ "imperial-legrand.com", true },
{ "imperialmiami.com", true },
+ { "imperiodigital.online", true },
{ "imperiumglass.com.au", true },
{ "imperiumnova.info", true },
{ "impex.com.bd", true },
@@ -17383,7 +17726,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "independent-operators.com", true },
{ "index-games.com", true },
{ "index-mp3.com", true },
- { "indexyz.me", true },
{ "indiaflowermall.com", true },
{ "indian-elephant.com", true },
{ "indianaantlersupply.com", true },
@@ -17398,7 +17740,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "indigitalagency.com", true },
{ "indigoinflatables.com", true },
{ "indigosakura.com", true },
- { "indiraactive.com", true },
{ "inditip.com", true },
{ "indochina.io", true },
{ "indogerman.de", true },
@@ -17421,7 +17762,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "inesfinc.es", true },
{ "inesta.nl", true },
{ "inet.se", true },
- { "inetpub.cn", true },
{ "inetserver.eu", true },
{ "inetsoftware.de", true },
{ "inevitavelbrasil.com.br", true },
@@ -17432,6 +17772,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "inficom.org", true },
{ "infinite.hosting", true },
{ "infinitegroup.info", true },
+ { "infinitescript.com", true },
{ "infinitiofallentownparts.com", true },
{ "infinitiofaugustaparts.com", true },
{ "infinitioflynnwoodparts.com", true },
@@ -17461,6 +17802,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "infocommsociety.com", true },
{ "infocon.org", true },
{ "infocusvr.net", true },
+ { "infogram.com", true },
{ "infogrfx.com", true },
{ "infomegastore.com", true },
{ "infomir.eu", true },
@@ -17481,19 +17823,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "infosec.pizza", true },
{ "infosec.wiki", true },
{ "infosenior.ch", true },
- { "infosimmo.com", true },
{ "infotainworld.com", true },
{ "infotolium.com", true },
+ { "infotrac.net", true },
{ "infotune.nl", true },
{ "infovision-france.com", true },
{ "infoweb.ee", true },
{ "infr.red", true },
{ "infra.land", true },
{ "infra.press", true },
+ { "infraclass.com", true },
{ "infrafire.com", true },
{ "infraflip.com", true },
{ "infraflux.com", true },
{ "infrafusion.com", true },
+ { "infralist.com", true },
+ { "inframetro.com", true },
{ "infranium.com", true },
{ "infranium.eu", true },
{ "infranium.info", true },
@@ -17504,12 +17849,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "infrapirtis.lt", true },
{ "infrarank.net", true },
{ "infrathink.com", true },
+ { "infrazine.com", true },
{ "infuzeit.com.au", true },
{ "ing-buero-junk.de", true },
{ "ing89.cc", true },
{ "ing89.com", true },
{ "ingatlanjogaszok.hu", true },
{ "ingatlanneked.hu", true },
+ { "ingatlanrobot.hu", true },
{ "ingber.com", true },
{ "inge-r.nl", true },
{ "ingeeibach.de", true },
@@ -17522,7 +17869,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "inglesnarede.com.br", true },
{ "ingo-schlueter.de", true },
{ "ingoschlueter.de", true },
- { "ingredientdaddy.ro", true },
{ "inhaltsangabe.de", true },
{ "inheritestate.com", true },
{ "inhouseents.co.uk", true },
@@ -17537,6 +17883,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ink.horse", true },
{ "inkable.com.au", true },
{ "inkeliz.com", true },
+ { "inkhor.se", true },
{ "inkontriamoci.com", true },
{ "inksay.com", true },
{ "inkspire.co.uk", true },
@@ -17571,8 +17918,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "innsalzachsingles.de", true },
{ "innwan.com", true },
{ "inoa8.com", true },
+ { "inobun.jp", true },
{ "inovat.ma", true },
- { "inovatec.com", true },
{ "inovatecsystems.com", true },
{ "inpas.co.uk", true },
{ "inquant.de", true },
@@ -17586,6 +17933,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "insertcoins.net", true },
{ "insgesamt.net", true },
{ "inshapenutrition.com.br", true },
+ { "insho.fashion", true },
{ "inside19.com", true },
{ "insideaudit.com", true },
{ "insidethefirewall.tk", true },
@@ -17615,8 +17963,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "instant.io", true },
{ "instantkhabar.com", true },
{ "instava.cz", true },
- { "instawi.com", true },
{ "instead.com.au", true },
+ { "insteagle.com", true },
{ "instela.com", true },
{ "instelikes.com.br", true },
{ "instics.com", true },
@@ -17630,20 +17978,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "insurance321.com", true },
{ "insureon.com", true },
{ "insurgentsmustdie.com", true },
- { "int-ma.in", true },
{ "intae.it", true },
{ "intafe.co.jp", true },
{ "intal.info", true },
{ "intarweb.ca", true },
{ "intasky.cz", true },
{ "intasky.sk", true },
- { "integraelchen.de", true },
{ "integralblue.com", true },
{ "integralkk.com", true },
{ "integratedintegrations.xyz", true },
{ "integratedmedicalonline.com", true },
{ "integrateur-web-paris.com", true },
- { "integraxor.com.tw", true },
{ "integrity.gov", true },
{ "integrityokc.com", true },
{ "integrityoklahoma.com", true },
@@ -17658,29 +18003,31 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "intelhost.net", true },
{ "intellar.com", true },
{ "intellectdynamics.com", true },
- { "intelliance.eu", true },
{ "intelligence-explosion.com", true },
{ "intellinetixvibration.com", true },
{ "intelly.nl", true },
{ "intelly365.nl", true },
{ "intencje.pl", true },
+ { "intensifyrsvp.com.au", true },
{ "inter-corporate.com", true },
{ "inter-culinarium.com", true },
{ "interaffairs.com", true },
{ "interaktiva.fi", true },
{ "interasistmen.se", true },
{ "interchangedesign.com", true },
- { "interchanges.io", true },
{ "intercom.com", true },
{ "intercom.io", true },
{ "interessiert-uns.net", true },
{ "interfesse.net", true },
{ "interfloraservices.co.uk", true },
{ "interflores.com.br", true },
+ { "interfug.de", true },
{ "intergozd.si", true },
{ "interiery-waters.cz", true },
{ "interimages.fr", true },
+ { "interior-design-colleges.com", true },
{ "interiordesignsconcept.com", true },
+ { "interiorprofesional.com.ar", true },
{ "interisaudit.com", true },
{ "interlingvo.biz", true },
{ "intermax.nl", true },
@@ -17691,7 +18038,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "international-books.org", true },
{ "international-nash-day.com", true },
{ "internationalfashionjobs.com", true },
- { "internationalschoolnewyork.com", true },
+ { "internationalschool.it", true },
{ "internationaltalento.it", true },
{ "internect.co.za", true },
{ "internet-aukcion.info", true },
@@ -17705,7 +18052,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "internethealthreport.org", true },
{ "internethering.de", true },
{ "internetinhetbuitengebied.nl", true },
- { "internetmarkets.net", true },
{ "internetmuseum.se", true },
{ "internetofdon.gs", true },
{ "internetoffensive.fail", true },
@@ -17802,13 +18148,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "iompost.com", true },
{ "iomstamps.com", true },
{ "ionlabs.kr", true },
- { "ionote.me", true },
{ "ionovia.de", true },
{ "ionx.co.uk", true },
{ "ioover.net", true },
{ "iosartstudios.gr", true },
{ "iosjailbreakiphone.com", true },
{ "ioslo.net", true },
+ { "iosmods.com", true },
{ "iosnoops.com", true },
{ "iossifovlab.com", true },
{ "iostream.by", true },
@@ -17831,6 +18177,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ipcareers.net", true },
{ "ipconsulting.se", true },
{ "ipemcomodoro.com.ar", true },
+ { "ipfire.org", true },
{ "ipfirebox.de", true },
{ "ipfs.ink", true },
{ "ipfs.io", true },
@@ -17840,6 +18187,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "iphonote.com", true },
{ "ipintel.io", true },
{ "iplabs.de", true },
+ { "iplantom.com", true },
{ "iplayradio.net", false },
{ "ipleak.net", true },
{ "ipledgeonline.org", false },
@@ -17847,7 +18195,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ipo-times.jp", true },
{ "ipokabu.net", true },
{ "ipomue.com", false },
+ { "ipop.gr", true },
{ "iposm.net", true },
+ { "ipplans.com", true },
{ "ipresent.com", true },
{ "iprim.ru", true },
{ "iproducemusic.com", true },
@@ -17860,6 +18210,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ipty.de", true },
{ "ipura.ch", true },
{ "ipv4.cf", true },
+ { "ipv4.co.il", true },
{ "ipv4.gr", true },
{ "ipv6-adresse.dk", true },
{ "ipv6-handbuch.de", true },
@@ -17873,7 +18224,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ir1s.com", true },
{ "iramellor.com", true },
{ "iran-geo.com", true },
- { "irandp.net", true },
{ "iranian.lgbt", true },
{ "iranianholiday.com", true },
{ "iranjeunesse.com", true },
@@ -17915,7 +18265,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "is-going-to-rickroll.me", true },
{ "is-sw.net", true },
{ "isaacdgoodman.com", true },
- { "isaackabel.cf", true },
{ "isaackabel.ga", true },
{ "isaackabel.gq", true },
{ "isaackabel.ml", true },
@@ -17936,6 +18285,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "isara.com", true },
{ "isarklinikum.de", true },
{ "isastylish.com", true },
+ { "isavings.com", true },
{ "isayoga.de", true },
{ "isbc-telecom.ru", true },
{ "isbengrumpy.com", true },
@@ -17953,7 +18303,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "isil.fi", true },
{ "isimonbrown.co.uk", true },
{ "isincheck.com", true },
- { "isinolsun.com", false },
{ "isistomie.com", true },
{ "isitchristmas.com", true },
{ "isitcoffeetime.com", true },
@@ -17961,16 +18310,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "isitpatchtuesday.com", true },
{ "isitrest.info", true },
{ "isitup.org", true },
+ { "iskanderbroere.nl", true },
{ "iskaron.de", true },
{ "iskaz.rs", true },
- { "iskkk.com", true },
- { "iskkk.net", true },
{ "iskogen.nu", true },
+ { "islam.si", true },
{ "islamonline.net", true },
{ "islandhosting.com", true },
+ { "islavolcan.cl", true },
{ "isletech.net", true },
{ "isliada.org", true },
- { "islief.com", true },
{ "islykaithecutest.cf", true },
{ "islykaithecutest.ml", true },
{ "ismailkarsli.com", true },
@@ -17980,6 +18329,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ismywebsitepenalized.com", true },
{ "isn.cz", true },
{ "iso27032.com", true },
+ { "isocom.eu", true },
{ "isognattori.com", true },
{ "isolta.com", true },
{ "isolta.de", true },
@@ -17996,7 +18346,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ispitrade.com", true },
{ "ispo.com.tw", true },
{ "ispsoft.pro", true },
- { "ispweb.es", true },
{ "isqrl.de", true },
{ "israelbiblicalstudies.com", true },
{ "israelbizreg.com", true },
@@ -18004,7 +18353,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "isreedyinthe.uk", true },
{ "isreedyinthe.us", true },
{ "isreedyintheuk.com", true },
- { "issa.org.pl", true },
+ { "issa.org.pl", false },
{ "issasfrissa.se", true },
{ "issforum.org", true },
{ "issio.net", true },
@@ -18022,7 +18371,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "istheservicedown.co.uk", true },
{ "istheservicedown.com", true },
{ "istheservicedowncanada.com", true },
- { "isthisus.org", true },
{ "isthnew.com", true },
{ "istore.lt", true },
{ "istorrent.is", true },
@@ -18040,7 +18388,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "it-faul.de", true },
{ "it-fernau.com", true },
{ "it-jobbank.dk", true },
- { "it-kron.de", true },
{ "it-maker.eu", true },
{ "it-rotter.de", true },
{ "it-schamans.de", true },
@@ -18089,7 +18436,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "itfix.cz", true },
{ "itforge.nl", true },
{ "itgirls.rs", true },
- { "ithakama.com", true },
{ "ithakama.cz", true },
{ "ithenrik.com", true },
{ "ithinc.net", true },
@@ -18104,7 +18450,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "itneeds.tech", true },
{ "itnota.com", true },
{ "itochan.jp", true },
- { "itogoyomi.com", true },
{ "itooky.com", true },
{ "itpro.ua", true },
{ "itraveille.fr", true },
@@ -18132,16 +18477,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "itsok.de", true },
{ "itspartytimeonline.co.uk", true },
{ "itspartytimesweetinflations.com", true },
+ { "itspecialista.eu", true },
{ "itspersonaltraining.nl", true },
{ "itsryan.com", true },
{ "itsstefan.eu", true },
{ "itstatic.tech", true },
+ { "itsundef.in", true },
{ "itswincer.com", true },
{ "itzap.com.au", true },
+ { "iurisnow.com", true },
{ "iusedtosmoke.com", true },
{ "iuyos.com", true },
{ "ivact.co.jp", true },
{ "ivanbenito.com", true },
+ { "ivanboi.com", true },
{ "ivancacic.com", false },
{ "ivanmeade.com", true },
{ "ivaoru.org", true },
@@ -18166,17 +18515,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ivre.rocks", true },
{ "ivusn.cz", true },
{ "ivvl.ru", true },
- { "ivxv.ee", true },
+ { "ivy-league-colleges.com", true },
{ "iwader.co.uk", true },
{ "iwalton.com", true },
{ "iwanttoliveinabunker.com", true },
{ "iwch.tk", true },
+ { "iwebolutions.com", true },
{ "iwell.de", true },
{ "iwizerunek.pl", true },
{ "iworos.com", true },
{ "iww.me", true },
{ "ixds.org", true },
- { "ixio.cz", true },
{ "ixnext.de", true },
{ "ixquick-proxy.com", true },
{ "ixquick.co.uk", true },
@@ -18207,12 +18556,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "j0s.at", true },
{ "j0s.eu", true },
{ "j15h.nu", true },
- { "j2ee.cz", true },
{ "j2h.de", true },
{ "j3e.de", true },
- { "ja-dyck.de", true },
{ "ja-gps.com.au", true },
- { "ja-publications.agency", false },
{ "ja.md", true },
{ "jaakkohannikainen.fi", true },
{ "jaalits.com", true },
@@ -18227,7 +18573,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jabberzac.org", true },
{ "jaberg-rutschi.ch", true },
{ "jabergrutschi.ch", true },
- { "jability.ovh", true },
{ "jabjab.de", true },
{ "jaccblog.com", true },
{ "jacekowski.org", true },
@@ -18241,6 +18586,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jackrusselterrier.com.br", true },
{ "jackson-quon.com", true },
{ "jackson.jp", true },
+ { "jacksonhu.com", true },
{ "jacksonvillestation.com", true },
{ "jacksutton.info", true },
{ "jackyliao123.tk", true },
@@ -18253,9 +18599,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jacobian.org", true },
{ "jacobjangles.com", true },
{ "jacobphono.com", true },
+ { "jacobsenarquitetura.com", true },
{ "jacuzziprozone.com", true },
{ "jadara.info", true },
{ "jadchaar.me", true },
+ { "jadopado.com", true },
{ "jaegerlacke.de", true },
{ "jaetech.org", true },
{ "jagbouncycastles.co.uk", true },
@@ -18293,6 +18641,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jakubarbet.eu", true },
{ "jakubboucek.cz", true },
{ "jakubklimek.com", true },
+ { "jakubtopic.cz", true },
{ "jakubvrba.cz", true },
{ "jala.co.jp", true },
{ "jaleo.cn", true },
@@ -18300,13 +18649,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jamaat.hk", true },
{ "jamacha.org", true },
{ "jamalfi.bio", true },
- { "jamberry.com.mx", true },
{ "jamberrynails.co.uk", true },
{ "james-bell.co.uk", true },
{ "james-digital.com", true },
{ "james-loewen.com", true },
{ "jamesachambers.com", true },
{ "jamesaimonetti.com", true },
+ { "jamesandpame.la", true },
{ "jamesbillingham.com", true },
{ "jameschorlton.co.uk", true },
{ "jamesdorf.com", true },
@@ -18353,6 +18702,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "janbrodda.de", true },
{ "jandev.de", true },
{ "janduchene.ch", true },
+ { "janebondsurety.com", true },
{ "janehamelgardendesign.co.uk", true },
{ "janhuelsmann.com", true },
{ "jani.media", true },
@@ -18378,11 +18728,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "japon-japan.com", true },
{ "jardin-exotique-rennes.fr", true },
{ "jardinderline.ch", true },
+ { "jardineriaon.com", true },
{ "jardiniersduminotaure.fr", true },
{ "jaredeberle.org", false },
{ "jaredfernandez.com", true },
{ "jaredfraser.com", true },
- { "jarivisual.com", true },
{ "jarniashop.se", true },
{ "jaroku.com", true },
{ "jarondl.net", true },
@@ -18390,6 +18740,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jarrettgraham.com", true },
{ "jarroba.com", true },
{ "jas-team.net", true },
+ { "jashvaidya.com", true },
{ "jasl.works", true },
{ "jasmijnwagenaar.nl", true },
{ "jasminefields.net", true },
@@ -18408,9 +18759,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "javalestari.com", true },
{ "javamilk.com", true },
{ "javierburgos.net", true },
+ { "javierlorente.es", true },
+ { "jaxfstk.com", true },
{ "jaxxnet.co.uk", true },
{ "jaxxnet.org", true },
{ "jaycouture.com", true },
+ { "jayf.de", true },
{ "jayfreestone.com", true },
{ "jaymecd.rocks", true },
{ "jayrl.com", true },
@@ -18440,6 +18794,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jcra.net", true },
{ "jctf.team", true },
{ "jcwodan.nl", true },
+ { "jcyz.cf", true },
{ "jd-group.co.uk", true },
{ "jd1.de", true },
{ "jdassets.com", true },
@@ -18475,8 +18830,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jedidiah.eu", false },
{ "jedipedia.net", true },
{ "jediweb.com.au", true },
+ { "jedmud.com", true },
{ "jedwarddurrett.com", true },
{ "jeec.ist", true },
+ { "jeepeg.com", true },
{ "jeepmafia.com", true },
{ "jeffanderson.me", true },
{ "jeffcasavant.com", false },
@@ -18488,7 +18845,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jeffmcneill.com", true },
{ "jeffreyhaferman.com", true },
{ "jeffri.me", true },
- { "jeffsanders.com", true },
{ "jefftickle.com", true },
{ "jeffwebb.com", true },
{ "jefrydco.id", true },
@@ -18527,7 +18883,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jensrex.dk", true },
{ "jeparamedia.com", true },
{ "jepertinger-itconsulting.de", true },
- { "jeproteste.info", true },
{ "jeremiahbenes.com", true },
{ "jeremy-chen.org", true },
{ "jeremy.hu", true },
@@ -18561,7 +18916,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jet-stream.fr", true },
{ "jetapi.org", true },
{ "jetbbs.com", true },
- { "jetbrains.pw", true },
{ "jetflex.de", true },
{ "jetkittens.co.uk", true },
{ "jetmirshatri.com", true },
@@ -18575,11 +18929,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jexler.net", true },
{ "jf-fotos.de", true },
{ "jfbst.net", true },
+ { "jfmhero.me", true },
{ "jfr.im", true },
{ "jfreitag.de", true },
{ "jfsa.jp", true },
{ "jgid.de", true },
{ "jgke.fi", true },
+ { "jglover.com", true },
{ "jgwb.de", true },
{ "jgwb.eu", true },
{ "jhalderm.com", true },
@@ -18588,7 +18944,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jhf.io", true },
{ "jhill.de", true },
{ "jhollandtranslations.com", true },
- { "jhuang.me", true },
{ "jhw-profiles.de", true },
{ "jhwestover.com", true },
{ "jiacl.com", true },
@@ -18612,7 +18967,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jimmyroura.ch", true },
{ "jimshaver.net", true },
{ "jimslop.nl", true },
- { "jinancy.fr", true },
{ "jinanshen.com", true },
{ "jinbo123.com", false },
{ "jinbowiki.org", true },
@@ -18624,7 +18978,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jinkuru.net", true },
{ "jino-jossy.appspot.com", true },
{ "jinshuju.net", true },
- { "jintaiyang123.org", true },
{ "jiogo.com", true },
{ "jirav.com", true },
{ "jiripudil.cz", true },
@@ -18674,11 +19027,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jmentertainment.co.uk", true },
{ "jmfjltd.com", true },
{ "jmk.hu", true },
- { "jmoreau.ddns.net", true },
{ "jmotion.co.uk", true },
{ "jmpb.hu", true },
{ "jmpmotorsport.co.uk", true },
{ "jmsolodesigns.com", true },
+ { "jmssg.jp", true },
{ "jmvdigital.com", true },
{ "jnjdj.com", true },
{ "jnm-art.com", true },
@@ -18686,6 +19039,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "joacimeldre.com", true },
{ "joaoaugusto.net", true },
{ "joaosampaio.com.br", true },
+ { "job-ofertas.info", true },
{ "job.biz.tr", true },
{ "jobatus.com.br", true },
{ "jobatus.es", true },
@@ -18709,6 +19063,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jobs4sales.ch", true },
{ "jobseekeritalia.it", true },
{ "jobsisbrown.com", true },
+ { "jobsnet.eu", true },
{ "jobsuchmaschine.ch", true },
{ "jobwinner.ch", true },
{ "jobzninja.com", true },
@@ -18724,7 +19079,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "joedinardo.com", true },
{ "joedoyle.us", true },
{ "joefixit.co", true },
- { "joefixit.co.uk", true },
{ "joehenry.co.uk", true },
{ "joejohnson.name", true },
{ "joel.coffee", true },
@@ -18740,6 +19094,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "joelmunch.com", true },
{ "joelnichols.uk", true },
{ "joemotherfuckingjohnson.com", true },
+ { "joepitt.co.uk", false },
{ "joerosca.com", true },
{ "joerss.at", true },
{ "joeskup.com", true },
@@ -18750,12 +19105,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "joeyfelix.com", true },
{ "joeygitalian.com", true },
{ "joeyhoer.com", true },
- { "joeysmith.com", true },
+ { "joeyvanvenrooij.nl", true },
{ "joeyvilaro.com", true },
{ "jogi-server.de", true },
{ "jogorama.com.br", false },
{ "jogwitz.de", true },
- { "johand.io", true },
{ "johanli.com", true },
{ "johannes-bauer.com", true },
{ "johannes-zinke.de", true },
@@ -18789,10 +19143,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "johnroberts.me", true },
{ "johnrockefeller.net", true },
{ "johnsegovia.com", true },
- { "johnsiu.com", true },
{ "johnsonho.net", true },
{ "johnvanhese.nl", true },
- { "johnyytb.be", true },
{ "joi-dhl.ch", true },
{ "jointotem.com", true },
{ "jojosplaycentreandcafeteria.co.uk", true },
@@ -18822,6 +19174,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jonathanha.as", true },
{ "jonathanj.nl", true },
{ "jonathanschle.de", true },
+ { "jonathanselea.se", true },
{ "jonblankenship.com", true },
{ "jondarby.com", true },
{ "jondevin.com", true },
@@ -18843,6 +19196,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jonoalderson.com", true },
{ "jonpads.com", true },
{ "jonpavelich.com", true },
+ { "jons.org", true },
{ "jonscaife.com", true },
{ "jooksms.com", true },
{ "jooksuratas.ee", true },
@@ -18857,22 +19211,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jordanhamilton.me", true },
{ "jordankmportal.com", true },
{ "jordans.co.uk", true },
+ { "jordanscorporatelaw.com", true },
{ "jordanstrustcompany.com", true },
{ "jordhy.com", true },
{ "jorgerosales.org", true },
{ "jorisdalderup.nl", true },
{ "jornalalerta.com.br", true },
+ { "josc.com.au", true },
{ "joscares.com", true },
{ "jose-alexand.re", true },
{ "jose-lesson.com", true },
- { "jose.eti.br", true },
{ "joseetesser.nl", true },
{ "josef-lotz.de", true },
{ "josefjanosec.com", true },
{ "josefottosson.se", true },
{ "josegerber.ch", true },
{ "joseitoda.org", true },
- { "josemikkola.fi", true },
{ "josepbel.com", true },
{ "josephbleroy.com", true },
{ "josephsniderman.com", true },
@@ -18894,9 +19248,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "joshua.bio", true },
{ "joshuadmiller.info", true },
{ "joshuajohnson.ca", true },
+ { "joshuameunier.com", true },
{ "joshuarogers.net", true },
{ "josoansi.de", true },
{ "jouetspetitechanson.com", true },
+ { "journalism-schools.com", true },
{ "journeyfriday.rocks", true },
{ "journeytomastery.net", true },
{ "jovani.com", false },
@@ -18904,14 +19260,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "joyceseamone.com", true },
{ "joyful.house", true },
{ "joyfulexpressions.gallery", true },
+ { "joynadvisors.com", true },
{ "joyofcookingandbaking.com", true },
+ { "joysinventingblog.com", true },
{ "jpdeharenne.be", true },
- { "jpeg.io", true },
{ "jphandjob.com", true },
{ "jplesbian.com", true },
{ "jpmelos.com", true },
{ "jpmelos.com.br", true },
{ "jpod.cc", true },
+ { "jpralves.net", true },
{ "jps-selection.co.uk", true },
{ "jps-selection.com", true },
{ "jps-selection.eu", true },
@@ -18930,11 +19288,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jross.me", true },
{ "jrtapsell.co.uk", true },
{ "jrxpress.com", true },
+ { "js3311.com", true },
+ { "js8855.com", true },
{ "js93029.com", true },
{ "jschoi.org", true },
{ "jschumacher.info", true },
{ "jsd-cog.org", true },
{ "jsdelivr.com", true },
+ { "jsdelivr.net", true },
{ "jselby.net", true },
{ "jsent.co.uk", true },
{ "jsevilleja.org", true },
@@ -18944,11 +19305,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jsmetallerie.fr", true },
{ "jsnfwlr.com", true },
{ "jsnfwlr.io", true },
+ { "jsonsinc.com", true },
{ "jsteward.moe", true },
{ "jstore.ch", true },
{ "jsuse.xyz", true },
{ "jsxc.ch", true },
{ "jtcat.com", true },
+ { "jtcjewelry.com", true },
{ "jthackery.com", false },
{ "jtl-software.com", true },
{ "jtmar.me", true },
@@ -18969,11 +19332,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "judge2020.me", true },
{ "judoprodeti.cz", true },
{ "judosaintdenis.fr", true },
+ { "judytka.cz", true },
{ "juef.space", true },
{ "juegosycodigos.es", true },
{ "juegosycodigos.mx", true },
{ "juelda.com", true },
{ "juergen-elbert.de", true },
+ { "juergen-roehrig.de", true },
{ "juergenhecht.de", true },
{ "juergenklieber.de", true },
{ "juergenspecht.com", true },
@@ -18985,11 +19350,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "juhakoho.com", true },
{ "juice.codes", true },
{ "juk.life", true },
+ { "juku-wing.jp", true },
{ "jule-spil.dk", true },
{ "julian-uphoff.de", true },
{ "julian-weigle.de", true },
{ "juliangonggrijp.com", true },
- { "julianickel.de", true },
{ "julianmeyer.de", true },
{ "julianmp.info", true },
{ "juliansimioni.com", true },
@@ -19058,8 +19423,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jurijbuga.de", true },
{ "jurisprudent.by", true },
{ "juristas.com.br", true },
- { "jurriaan.ninja", true },
- { "just-a-clanpage.de", true },
{ "just-vet-and-drive.fr", true },
{ "justanothercompany.name", true },
{ "justbelieverecovery.com", true },
@@ -19076,11 +19439,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "justice4assange.com", true },
{ "justin-tech.com", false },
{ "justinellingwood.com", true },
- { "justinharrison.ca", true },
{ "justinho.com", true },
{ "justinstandring.com", true },
{ "justmensgloves.com", true },
{ "justpaste.it", true },
+ { "justtalk.site", true },
{ "justthinktwice.gov", true },
{ "justupdate.me", true },
{ "justyy.com", true },
@@ -19109,6 +19472,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "jwnotifier.org", true },
{ "jwschuepfheim.ch", true },
{ "jwsoft.nl", true },
+ { "jxltom.com", true },
{ "jydemarked.dk", true },
{ "jyggen.com", true },
{ "jym.fit", true },
@@ -19142,11 +19506,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kaatha-kamrater.se", true },
{ "kab-s.de", true },
{ "kabaca.design", true },
+ { "kabarlinux.id", true },
{ "kabashop.com.br", true },
{ "kabeltv.co.nz", true },
{ "kabeuchi.com", true },
{ "kaboom.pw", true },
{ "kabu-abc.com", true },
+ { "kabulpress.org", true },
+ { "kabus.org", true },
{ "kachelfm.nl", true },
{ "kachlikova2.cz", true },
{ "kack.website", true },
@@ -19161,10 +19528,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kaibol.com", true },
{ "kaigojj.com", true },
{ "kaikei7.com", true },
- { "kaileymslusser.com", true },
{ "kairion.de", false },
{ "kaisakura.net", true },
- { "kaisev.net", true },
+ { "kaisev.net", false },
{ "kaitol.click", true },
{ "kaiusaltd.com", true },
{ "kaivac-emea.com", true },
@@ -19174,11 +19540,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kaka.farm", true },
{ "kakao-karten.de", true },
{ "kakaravaara.fi", true },
+ { "kakie-gobocha.jp", true },
{ "kakie-kolesa.ru", true },
{ "kakolightingmuseum.or.jp", true },
- { "kakoo-media.nl", true },
- { "kakoo.nl", true },
- { "kakoomedia.nl", true },
{ "kakuto.me", true },
{ "kalakarclub.com", true },
{ "kalamos-psychiatrie.be", true },
@@ -19201,9 +19565,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kam-serwis.pl", true },
{ "kamatajisyaku.tokyo.jp", true },
{ "kamikaichimaru.com", false },
+ { "kamikatse.net", true },
{ "kaminbau-laub.de", true },
{ "kamixa.se", true },
{ "kamppailusali.fi", true },
+ { "kamranmirhazar.com", true },
{ "kamui.co.uk", true },
{ "kan3.de", true },
{ "kana-mono.biz", true },
@@ -19212,11 +19578,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kanag.pl", true },
{ "kanal-schaefer.de", true },
{ "kanal-tv-haensch.de", true },
- { "kandalife.com", true },
{ "kandianshang.com", true },
{ "kanecastles.com", true },
{ "kanehusky.com", true },
- { "kaneisdi.com", true },
{ "kanetix.ca", true },
{ "kangaroo-bouncycastle.co.uk", true },
{ "kangarooislandholidayaccommodation.com.au", true },
@@ -19239,13 +19603,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kantanmt.com", true },
{ "kantorkita.net", true },
{ "kantorosobisty.pl", true },
+ { "kanuvu.de", false },
{ "kany.me", false },
{ "kanzakiranko.jp", true },
{ "kanzashi.com", true },
{ "kanzlei-myca.de", true },
{ "kanzlei-oehler.com", true },
{ "kanzlei-sixt.de", true },
- { "kanzshop.com", true },
+ { "kaotik4266.com", true },
{ "kap-genial.de", true },
{ "kapgy-moto.com", true },
{ "kapiorr.duckdns.org", true },
@@ -19274,12 +19639,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "karlbowden.com", true },
{ "karlic.net", true },
{ "karlin.run", true },
- { "karlis-kavacis.id.lv", true },
{ "karlloch.de", true },
{ "karlsmithmn.org", true },
{ "karlzotter.com", true },
{ "karmaassurance.ca", true },
- { "karmabaker.com", true },
+ { "karmaflux.com", true },
{ "karmainsurance.ca", true },
{ "karmaplatform.com", true },
{ "karmaspa.se", true },
@@ -19294,9 +19658,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kartec.com", true },
{ "karten-verlag.de", true },
{ "kartonmodellbau.org", true },
- { "karula.org", true },
{ "karupp-did.net", true },
- { "kasadara.com", true },
{ "kasei.im", true },
{ "kashinavi.com", true },
{ "kashmirobserver.net", true },
@@ -19310,6 +19672,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kat.marketing", true },
{ "katagena.com", true },
{ "katalogbutikker.dk", true },
+ { "katata-kango.ac.jp", true },
{ "katcleaning.com.au", true },
{ "katedra.de", true },
{ "kateduggan.net", true },
@@ -19319,7 +19682,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "katex.org", true },
{ "kathardt.de", true },
{ "kathegiraldo.com", true },
- { "kathrinbaumannphotography.com", true },
{ "kati-raumplaner.de", true },
{ "katiechai.xyz", true },
{ "katieskandy.co.uk", true },
@@ -19334,7 +19696,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "katyusha.net", false },
{ "katzenbrunnen-test.de", true },
{ "katzensklave.me", true },
- { "katzspeech.com", true },
{ "kau-boys.com", true },
{ "kau-boys.de", true },
{ "kaufberatung.community", true },
@@ -19358,7 +19719,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kazumi.ooo", true },
{ "kazumi.ro", true },
{ "kazy111.info", true },
- { "kb3.net", true },
+ { "kb88.com", true },
{ "kba-online.de", true },
{ "kbb-ev.de", true },
{ "kbbouncycastlehire.co.uk", true },
@@ -19406,6 +19767,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "keepersecurity.com", true },
{ "keepingtheplot.co.uk", true },
{ "keepiteasy.eu", true },
+ { "keevitaja.com", true },
{ "keeweb.info", true },
{ "keezin.ga", true },
{ "keganthorrez.com", true },
@@ -19478,6 +19840,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kernel-error.de", true },
{ "kernelpanics.nl", true },
{ "kerrfrequencycombs.org", true },
+ { "kerrnel.com", true },
{ "kersbergen.nl", true },
{ "kersmexico.com", true },
{ "kerstkaart.nl", true },
@@ -19486,10 +19849,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kerzyte.net", true },
{ "kescher.site", true },
{ "kessawear.com", true },
- { "kessel-runners.com", true },
{ "kesslerwine.com", true },
{ "kesteren.org", true },
{ "ketamine.co.uk", true },
+ { "ketaminecareclinic.com", true },
{ "ketosecology.co.uk", true },
{ "ketotadka.com", true },
{ "kettlebellkrusher.com", true },
@@ -19500,6 +19863,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kevinbowers.me", true },
{ "kevinbusse.de", true },
{ "kevincox.ca", false },
+ { "kevingsky.com", true },
+ { "kevinheslinphoto.com", true },
{ "kevinhill.nl", true },
{ "kevinhq.com", true },
{ "kevinkla.es", true },
@@ -19547,7 +19912,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "khetzal.info", true },
{ "khipu.com", true },
{ "khlee.net", true },
- { "khmb.ru", true },
+ { "khmb.ru", false },
{ "khoury-dulla.ch", true },
{ "khs1994.com", true },
{ "khudothiswanpark.vn", true },
@@ -19581,12 +19946,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kidsneversleep.com", true },
{ "kidsplay-plymouth.co.uk", true },
{ "kidsplaybouncycastles.co.uk", true },
- { "kidswallstickers.com.au", true },
{ "kidtoyshop.ru", true },
{ "kidzpartiesllp.co.uk", true },
{ "kidzsmile.co.uk", true },
{ "kiebel.de", true },
{ "kiedys.net", true },
+ { "kiehls.pt", true },
{ "kiekin.org", true },
{ "kiekko.pro", true },
{ "kiel-kind.de", true },
@@ -19604,13 +19969,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "killaraapartments.com.au", true },
{ "killdeer.com", true },
{ "killerit.in", true },
+ { "killerkink.net", true },
{ "killerrobots.com", true },
{ "killymoonbouncycastles.com", true },
{ "kilobyte22.de", true },
{ "kilogram.nl", true },
{ "kilometertje.nl", true },
{ "kimamass.com", true },
- { "kimdumaine.com", true },
{ "kimiris.com", true },
{ "kimis.gr", true },
{ "kimisia.net", true },
@@ -19633,7 +19998,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kine-duthil.fr", true },
{ "kinepolis-studio.be", true },
{ "kinetiq.com", true },
- { "king-henris-castles.co.uk", true },
{ "king-of-the-castles.com", true },
{ "kingant.net", true },
{ "kinganywhere.eu", true },
@@ -19648,8 +20012,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kingstclinic.com", true },
{ "kingtecservices.com", true },
{ "kini24.ru", true },
+ { "kinkcafe.net", true },
{ "kinkenonline.com", true },
- { "kinnettmemorial.org", true },
{ "kinnikinnick.com", true },
{ "kinniyaonlus.com", true },
{ "kinocheck.de", true },
@@ -19659,7 +20023,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kinos.nl", true },
{ "kinozal-tv.appspot.com", true },
{ "kinsights.com", false },
- { "kintawifi.com", false },
{ "kintone.com", true },
{ "kintore.tv", true },
{ "kiocloud.com", true },
@@ -19674,10 +20037,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kirche-dortmund-ost.de", true },
{ "kirchen-im-web.de", true },
{ "kirchengemeinde-markt-erlbach.de", true },
- { "kircp.com", true },
{ "kirei.se", true },
{ "kirig.ph", true },
{ "kirikira.moe", true },
+ { "kirill.ws", true },
{ "kirillaristov.com", true },
{ "kirillpokrovsky.de", true },
{ "kirinas.com", true },
@@ -19691,6 +20054,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kirschbaum.me", true },
{ "kirslis.com", true },
{ "kirstenbos.ca", true },
+ { "kirstin-peters.de", true },
{ "kirwandigital.com", true },
{ "kis-toitoidixi.de", true },
{ "kisallatorvos.hu", true },
@@ -19701,6 +20065,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kissflow.com", true },
{ "kissgyms.com", true },
{ "kissmycreative.com", true },
+ { "kissoft.ro", true },
{ "kisstube.tv", true },
{ "kitabnamabayi.com", true },
{ "kitbag.com.au", true },
@@ -19728,6 +20093,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kiwi.digital", true },
{ "kiwi.wiki", true },
{ "kiwico.com", true },
+ { "kix.moe", true },
{ "kiyotatsu.com", true },
{ "kj-prince.com", true },
{ "kj1396.net", true },
@@ -19806,7 +20172,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "klustermedia.com", true },
{ "klva.cz", true },
{ "klzwzhi.com", true },
- { "km-net.pl", true },
{ "kmashworth.co.uk", true },
{ "kmkz.jp", true },
{ "kmsci.com.ph", true },
@@ -19826,6 +20191,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kngk-group.ru", true },
{ "kngk-transavto.ru", true },
{ "kngk.org", true },
+ { "kngkng.com", true },
{ "kniga.market", false },
{ "knight-industries.org", true },
{ "knightsblog.de", true },
@@ -19855,9 +20221,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kobezda.net", true },
{ "kobofarm.com", true },
{ "koboldcraft.ch", true },
+ { "kobolya.hu", true },
{ "kocherev.org", true },
{ "kochereva.com", true },
{ "kochhar.net", true },
+ { "kochinke.com", true },
+ { "kochinke.us", true },
{ "kockanakocko.si", true },
{ "kodak-ism.com", true },
{ "kodden.com.br", true },
@@ -19872,7 +20241,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "koelnmafia.de", true },
{ "koenen-bau.de", true },
{ "koenigsbrunner-tafel.de", true },
- { "koenleemans.nl", false },
+ { "koenleemans.nl", true },
+ { "koenrouwhorst.nl", false },
{ "koerper-wie-seele.de", false },
{ "koerperkult.ch", true },
{ "koertner-muth.com", true },
@@ -19881,6 +20251,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "koetjesenkanker.nl", true },
{ "kofler.info", true },
{ "kogak.ninja", true },
+ { "kogax.com", true },
{ "kogcoder.com", true },
{ "kogi.fr", true },
{ "kogro.de", true },
@@ -19943,8 +20314,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kongar.org", true },
{ "koniecfica.sk", true },
{ "konijntjes.nl", true },
- { "konings.it", true },
- { "koninkrijk.net", true },
+ { "koningskwartiertje.nl", true },
+ { "konkai.store", true },
{ "konklone.com", true },
{ "konoe.studio", true },
{ "konosuke.jp", true },
@@ -19977,8 +20348,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "korea.dating", true },
{ "koreaboo.com", true },
{ "koretech.nl", true },
+ { "korinar.com", true },
{ "korobi.io", true },
{ "korobkovsky.ru", true },
+ { "koroknaimedical.hu", true },
{ "korono.de", true },
{ "korosiprogram.hu", true },
{ "korp.fr", true },
@@ -19991,7 +20364,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kosho.org", true },
{ "kosonaudioteca.com", true },
{ "kost-magazin.de", true },
- { "kostal.com", true },
+ { "kostal.com", false },
{ "kostecki.com", true },
{ "kostecki.org", true },
{ "kostecki.tel", true },
@@ -20008,6 +20381,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kotori.love", true },
{ "kottur.is", true },
{ "kouki-food.com", true },
+ { "koumakan.cc", true },
{ "koumuwin.com", true },
{ "koushinjo.org", true },
{ "kov.space", true },
@@ -20061,7 +20435,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "krasovsky.me", true },
{ "krausoft.hu", true },
{ "krautomat.com", true },
- { "kraynik.com", true },
{ "krazyboi.com", true },
{ "krazykastles.co.uk", true },
{ "krazykoolkastles.com", true },
@@ -20086,14 +20459,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kriptosec.com", true },
{ "kris.click", true },
{ "krise-chance.ch", true },
+ { "krisftp.fr", true },
{ "krishnenduayur.org", true },
{ "krishofer.com", true },
+ { "krishouse.fr", true },
{ "krislamoureux.com", true },
{ "krismurray.co.uk", true },
{ "krisstarkey.co.uk", true },
{ "kristenpaigejohnson.com", true },
{ "kristiehill.com", true },
- { "kristikala.nl", true },
{ "kristinbailey.com", false },
{ "kristofba.ch", true },
{ "kristofdv.be", true },
@@ -20105,7 +20479,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kromonos.net", true },
{ "kronaw.it", true },
{ "krony.de", true },
- { "kronych.cz", true },
{ "kroon.email", true },
{ "kropkait.pl", true },
{ "kroy.io", true },
@@ -20157,17 +20530,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kubik-rubik.de", false },
{ "kubkprf.ru", true },
{ "kublis.ch", true },
+ { "kuchenfeelisa.de", true },
{ "kuchentraum.eu", true },
{ "kucnibudzet.com", true },
{ "kucukayvaz.com", true },
{ "kudo.co.id", true },
- { "kueche-co.de", true },
+ { "kueche-co.de", false },
{ "kuechenprofi-group.de", false },
{ "kuehndel.org", true },
{ "kuehnel-bs.de", true },
{ "kuehnel-online.eu", true },
{ "kuemmerlin.eu", true },
{ "kuemmling.eu", true },
+ { "kugelblitz.co", true },
{ "kuhn-elektrotechnik.de", true },
{ "kuhne-electronic.de", true },
{ "kuhnelautorepair.com", true },
@@ -20182,10 +20557,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kumachan.biz", true },
{ "kumalog.com", true },
{ "kumasanda.jp", true },
- { "kundo.se", true },
{ "kungerkueken.de", true },
{ "kunstdrucke-textildruck.de", true },
- { "kunstfehler.at", true },
{ "kunstundunrat.de", true },
{ "kuoruan.com", true },
{ "kupferstichshop.com", true },
@@ -20221,14 +20594,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kutukupret.com", true },
{ "kutus.ee", true },
{ "kuzbass-pwl.ru", true },
- { "kuzdrowiu24.pl", true },
{ "kvadratnimeter.si", true },
{ "kvalita-1a.cz", true },
{ "kvalitnitesneni.cz", true },
{ "kvantel.no", true },
{ "kvcc.com.au", true },
{ "kvetinymilt.cz", true },
- { "kvhile.com", true },
{ "kvilt.dk", true },
{ "kvn.tf", true },
{ "kvnsport.ru", true },
@@ -20262,6 +20633,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kyoto-mic.com", true },
{ "kyoto-sake.net", true },
{ "kyoto-tomikawa.jp", true },
+ { "kyoto-tomoshibi.jp", true },
{ "kyprexxo.com", true },
{ "kyras-castles.co.uk", true },
{ "kyunyuki.com", true },
@@ -20270,14 +20642,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "kz.search.yahoo.com", false },
{ "kzar.co.uk", true },
{ "kzsdabas.hu", true },
- { "l-lab.org", true },
{ "l0re.com", true },
{ "l2guru.ru", true },
{ "l33te.net", true },
{ "l4n-clan.de", true },
{ "l7plumbing.com.au", true },
{ "l7world.com", true },
- { "l9.fr", true },
+ { "l9.fr", false },
{ "la-baldosa.fr", true },
{ "la-cave-a-nodo.fr", false },
{ "la-compagnie-des-elfes.fr", true },
@@ -20287,12 +20658,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "la-maison.eu", true },
{ "la-petite-entreprise.com", true },
{ "la-tourmaline.ch", true },
+ { "laac.io", true },
{ "laassari.me", false },
{ "laatikko.io", true },
{ "laatjeniethackmaken.nl", true },
{ "laballoons.com", true },
{ "labande-annonce.fr", true },
{ "labcoat.jp", true },
+ { "labms.com.au", true },
{ "labobooks.com", true },
{ "laboitebio-logique.ca", true },
{ "labortogether.com", true },
@@ -20332,7 +20705,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ladraiglaan.com", true },
{ "lady-2.jp", true },
{ "ladyanna.de", true },
- { "ladybugjam.com", true },
+ { "ladyofhopeparish.org", true },
{ "laeso.es", true },
{ "laextra.mx", true },
{ "lafayette-rushford.com", true },
@@ -20389,6 +20762,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lalucioledigitale.com", true },
{ "lalunecreative.com", true },
{ "lalyre-corcelles.ch", true },
+ { "lamafioso.com", true },
{ "lamaisondelatransformationculturelle.com", true },
{ "lamakat.de", true },
{ "lamanwebinfo.com", true },
@@ -20415,6 +20789,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lampenwelt.de", true },
{ "lampposthomeschool.com", true },
{ "lampy.pl", true },
+ { "lamunyon.com", true },
{ "lan.biz.tr", true },
{ "lanahallen.com", true },
{ "lanbroa.eu", true },
@@ -20454,6 +20829,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lanetix.com", true },
{ "lanforalla.se", true },
{ "lang-php.com", true },
+ { "langatang.com", true },
{ "langbein.org", true },
{ "langguth.io", true },
{ "langkahteduh.com", true },
@@ -20482,6 +20858,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lanzarote-online.info", true },
{ "laos.dating", true },
{ "laozhu.me", true },
+ { "lapakus.com", true },
{ "laparoscopia.com.mx", true },
{ "lapassiondutrading.com", true },
{ "laperfumista.es", true },
@@ -20508,7 +20885,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "largeviewer.com", true },
{ "lariposte.org", true },
{ "lariscus.eu", true },
- { "larky.top", true },
{ "larondinedisinfestazione.com", true },
{ "larptreff.de", true },
{ "larraz.es", true },
@@ -20522,6 +20898,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "larsklene.nl", true },
{ "larsklint.com", true },
{ "laruga.co.uk", true },
+ { "larvatoken.org", true },
{ "lasalle.wa.edu.au", true },
{ "lasarmas.com", true },
{ "lascana.co.uk", true },
@@ -20534,6 +20911,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lask.in", true },
{ "laskas.pl", true },
{ "laspequenassemillas.com", true },
+ { "lasrecetascocina.com", true },
{ "lasrecetasdeguada.com", true },
{ "lasse-it.dk", true },
{ "lasseleegaard.com", true },
@@ -20559,7 +20937,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lateralsecurity.com", true },
{ "latestbuy.com.au", true },
{ "latestdeals.co.uk", true },
- { "latiendadelbebefeliz.com", true },
{ "latiendauno.com", true },
{ "latiendawapa.com", true },
{ "latino.dating", true },
@@ -20581,6 +20958,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "laukstein.com", true },
{ "launayflorian.net", true },
{ "launchkey.com", false },
+ { "launchmylifend.com", true },
{ "launchpad-app2.com", true },
{ "launchpadder2.com", true },
{ "lauraandwill.wedding", false },
@@ -20599,6 +20977,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "laut.digital", true },
{ "lauxzahnheilkunde.de", true },
{ "lauzon-hitter.com", true },
+ { "lavabit.no", true },
{ "lavalite.de", true },
{ "lavamob.com", true },
{ "lavanderia.roma.it", true },
@@ -20609,28 +20988,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lavinya.net", true },
{ "lavishlooksstudio.com.au", true },
{ "lavita.de", true },
+ { "lavitaura.com", true },
{ "lavitrine-une-collection.be", true },
{ "lavoieducoeur.be", true },
{ "lavoiepharmd.com", true },
{ "lavolte.net", true },
- { "lavval.com", false },
+ { "law-colleges.com", true },
{ "law-peters.de", true },
{ "law.co.il", true },
- { "lawformt.com", true },
{ "lawn-seeds.com", true },
{ "lawnuk.com", true },
{ "lawrenceberg.nl", true },
{ "lawrencemurgatroyd.com", true },
+ { "lawrencewhiteside.com", true },
{ "lawyerkf.com", true },
{ "layfully.me", true },
- { "laylo.io", true },
- { "laylo.nl", true },
+ { "laylo.io", false },
+ { "laylo.nl", false },
{ "layoutsatzunddruck.de", true },
- { "lazowik.pl", true },
{ "lazurit.com", true },
{ "lazyboston.com", true },
{ "lazyclock.com", true },
{ "lazyframe.com", true },
+ { "lazyhelp.com", true },
{ "lazytux.org", true },
{ "lb-toner.de", true },
{ "lbayer.com", true },
@@ -20678,12 +21058,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "leadbox.cz", true },
{ "leaderoftheresistance.com", false },
{ "leaderoftheresistance.net", false },
- { "leadinfo.com", true },
{ "leadingsalons.com", true },
{ "leadquest.nl", true },
- { "leadstart.org", true },
{ "leafandseed.co.uk", true },
- { "leafans.tk", true },
+ { "leafans.tk", false },
{ "leafinote.com", true },
{ "leakforums.net", true },
{ "leamsigc.com", true },
@@ -20691,6 +21069,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "leanplando.com", true },
{ "leap-it.be", true },
{ "leapandjump.co.uk", true },
+ { "learndev.info", true },
{ "learnflakes.net", true },
{ "learnforestry.com", true },
{ "learning-id.com", true },
@@ -20703,6 +21082,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "learntube.cz", true },
{ "leaseit24.com", true },
{ "leaseit24.de", true },
+ { "leaseplan.com", true },
{ "leasit.at", true },
{ "leasit.de", true },
{ "leastsignificantbit.de", true },
@@ -20732,13 +21112,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ledscontato.com.br", true },
{ "ledzom.ru", false },
{ "lee-fuller.co.uk", true },
- { "leebiblestudycenter.co.uk", true },
- { "leebiblestudycenter.com", true },
{ "leebiblestudycentre.co.uk", true },
- { "leebiblestudycentre.com", true },
{ "leech360.com", false },
{ "leeclemens.net", false },
- { "leedev.org", true },
{ "leelaylay.com", true },
{ "leere.me", true },
{ "leerliga.de", true },
@@ -20785,7 +21161,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "leigh.life", true },
{ "leilautourdumon.de", true },
{ "leilonorte.com", true },
- { "leiming.co", true },
{ "leinfelder.in", true },
{ "leipzig.photo", true },
{ "leipziger-triathlon.de", true },
@@ -20804,8 +21179,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lemondrops.xyz", true },
{ "lemonop.com", true },
{ "lemonparty.co", true },
- { "lemonthy.ca", true },
- { "lemonthy.com", true },
{ "lemouillour.fr", true },
{ "lemuslimpost.com", true },
{ "lenagroben.de", true },
@@ -20840,7 +21213,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "leonax.net", true },
{ "leonbuitendam.nl", true },
{ "leondenard.com", true },
- { "leonhooijer.nl", false },
{ "leonklingele.de", true },
{ "leowkahman.com", true },
{ "lep.gov", true },
@@ -20887,7 +21259,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lesterchan.net", true },
{ "lesterrassesdusoleil.ch", true },
{ "lesyndicat.info", true },
+ { "let-go.cc", true },
{ "letemps.ch", true },
+ { "leto12.xyz", true },
{ "letraba.com", true },
{ "lets-bounce.com", true },
{ "lets-go-acoustic.de", true },
@@ -20928,6 +21302,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lew.im", true },
{ "lewdawson.com", true },
{ "lewis.li", true },
+ { "lewiscollard.com", true },
{ "lewisdatasecurity.com", true },
{ "lewislaw.com", true },
{ "lewisllewellyn.me", true },
@@ -20943,6 +21318,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lfgss.com", true },
{ "lfklzw.com", true },
{ "lfrconseil.com", true },
+ { "lfullerdesign.com", true },
+ { "lg-waps.go.jp", true },
+ { "lg-waps.jp", true },
+ { "lgbt-colleges.com", true },
{ "lgbt.io", true },
{ "lgbt.ventures", true },
{ "lgbtventures.com", true },
@@ -20951,12 +21330,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lhajn.cz", true },
{ "lhakustik.se", true },
{ "lhalbert.xyz", true },
+ { "lhamaths.online", true },
{ "lhconsult.tk", false },
+ { "lhgavarain.com", true },
{ "lhost.su", true },
{ "li-ke.co.jp", true },
{ "li.search.yahoo.com", false },
{ "liam-w.io", true },
- { "liamelliott.me", true },
{ "liamlin.me", true },
{ "lian-in.com", true },
{ "lian-in.net", true },
@@ -20989,7 +21369,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "libreduca.com", true },
{ "librelamp.com", true },
{ "libremail.nl", true },
- { "librends.org", true },
{ "libreoffice-from-collabora.com", true },
{ "libreofficefromcollabora.com", true },
{ "librervac.org", true },
@@ -21017,15 +21396,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lidogr.com", true },
{ "lidong.me", true },
{ "lidow.eu", true },
+ { "lidtkemotors.com", true },
{ "liduan.net", false },
{ "liebel.org", true },
{ "lieberwirth.biz", true },
{ "lieblingsholz.de", true },
+ { "liemen.net", true },
+ { "lierrmm.space", true },
{ "lieuu.com", true },
{ "lifanov.com", true },
{ "life-emotions.pt", true },
{ "lifeartstudios.net", true },
{ "lifebetweenlives.com.au", true },
+ { "lifeboxhealthcare.co.uk", true },
{ "lifecism.com", true },
{ "lifegrip.com.au", true },
{ "lifeinhex.com", true },
@@ -21044,9 +21427,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "light-up.xyz", true },
{ "light.mail.ru", true },
{ "lightbox.co", true },
- { "lightdark.xyz", true },
{ "lightdream.tech", true },
- { "lighthouseinstruments.com", true },
{ "lighting-centres.co.uk", true },
{ "lightingagoura.com", true },
{ "lightingagourahills.com", true },
@@ -21073,7 +21454,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lightsheep.no", true },
{ "lightspeed.com", false },
{ "lightspeedta.co", true },
- { "lighttp.com", true },
{ "lightupcollective.co.uk", true },
{ "lignite.com", true },
{ "lignoma.com", true },
@@ -21081,6 +21461,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lihaul.dnsalias.net", true },
{ "lijero.co", true },
{ "lijncoaching.nl", true },
+ { "lijstje.be", true },
+ { "lijstje.nl", true },
{ "likc.me", true },
{ "likeablehub.com", true },
{ "likeabox.de", true },
@@ -21088,11 +21470,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "likegeeks.com", true },
{ "likehifi.de", true },
{ "likemovies.de", true },
- { "likenewhearing.com.au", true },
{ "likere.com", true },
{ "likesforinsta.com", true },
{ "likui.me", true },
{ "lilaccakeboutique.com", true },
+ { "liliang13.com", true },
{ "lillepuu.com", true },
{ "lily-bearing.com", true },
{ "lily-inn.com", true },
@@ -21126,7 +21508,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lincolnwayflorist.com", true },
{ "lindalap.fi", true },
{ "lindemann.space", true },
- { "linden.me", true },
{ "lindeskar.se", true },
{ "lindholmen.club", true },
{ "lindnerhof-taktik.de", true },
@@ -21142,7 +21523,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "linearaudio.net", true },
{ "linearaudio.nl", true },
{ "linearmap.com", true },
- { "linernotekids.com", true },
{ "linfamilygc.com", true },
{ "lingerie.com.br", true },
{ "lingeriesilhouette.com", true },
@@ -21181,9 +21561,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "linux.cn", true },
{ "linux.conf.au", true },
{ "linux.fi", true },
- { "linux.im", true },
{ "linux.pizza", true },
{ "linux3.org", true },
+ { "linuxadictos.com", true },
{ "linuxbabe.com", true },
{ "linuxbierwanderung.com", true },
{ "linuxchick.se", true },
@@ -21191,7 +21571,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "linuxdays.cz", true },
{ "linuxforum.ch", true },
{ "linuxhostsupport.com", true },
- { "linuxincluded.com", true },
{ "linuxiuvat.de", true },
{ "linuxlounge.net", true },
{ "linuxos.org", true },
@@ -21217,10 +21596,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "liris-beautywelt.de", true },
{ "lirlandais.ch", true },
{ "lirnberger.com", true },
- { "lisamccorrie.com", true },
{ "lisamortimore.com", true },
{ "lisburnhottubnbounce.co.uk", true },
- { "lisieuxarquitetura.com.br", true },
{ "liskgdt.net", true },
{ "lisky.ru", true },
{ "lislan.org.uk", true },
@@ -21237,6 +21614,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "litebits.com", true },
{ "litemind.com", true },
{ "literarymachin.es", true },
+ { "literature-schools.com", true },
{ "litfin.name", true },
{ "lithan.com", true },
{ "lithesalar.se", true },
@@ -21259,6 +21637,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "littleredsbakeshop.com", true },
{ "littlericket.me", false },
{ "littlescallywagsplay.co.uk", true },
+ { "littleskin.cn", true },
{ "littleswitch.co.jp", true },
{ "littlewatcher.com", true },
{ "litvideoserver.de", true },
@@ -21309,6 +21688,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "living-space.co.nz", true },
{ "living24.de", true },
{ "livingforreal.com", true },
+ { "livinginhimalone.com", true },
{ "livinglocalnashville.com", true },
{ "livingworduk.org", true },
{ "livnev.me", true },
@@ -21325,6 +21705,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lizhi123.net", true },
{ "lizzaran.io", true },
{ "ljason.cn", true },
+ { "ljc.ro", true },
{ "ljs.io", true },
{ "lk-hardware.cz", true },
{ "lknw.de", true },
@@ -21333,6 +21714,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ller.xyz", true },
{ "llm-guide.com", true },
{ "lloyd-day.me", true },
+ { "llslb.com", false },
{ "lm-pumpen.de", false },
{ "lmddgtfy.net", true },
{ "lmerza.com", true },
@@ -21341,6 +21723,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lmsptfy.com", true },
{ "lmtls.me", true },
{ "lmtm.eu", true },
+ { "lng-17.org", true },
{ "lnhequipmentltd.com", true },
{ "lntu.org", true },
{ "lnx.li", true },
@@ -21362,7 +21745,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "local360.net", true },
{ "localbandz.com", true },
{ "localbitcoins.com", true },
- { "localblitz.com", true },
{ "localblock.co.za", true },
{ "localbouncycastle.com", true },
{ "localdecor.com.br", true },
@@ -21382,13 +21764,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "locationvoitureportugal.com", true },
{ "locatorplus.gov", true },
{ "locauxrama.fr", true },
- { "locker.email", false },
+ { "locker.email", true },
{ "locker.plus", true },
{ "lockify.com", true },
{ "lockpick.nl", true },
{ "lockpicks.se", true },
{ "lockr.io", true },
- { "locksmith-durbannorth.co.za", true },
{ "locksmith-sanantonio-tx.com", true },
{ "locksmithbalchsprings.com", true },
{ "locksmithballito.com", true },
@@ -21397,7 +21778,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "locksmithedmonds.com", true },
{ "locksmithgarland-tx.com", true },
{ "locksmithgrapevinetx.com", true },
- { "locksmithhillcrest.co.za", true },
{ "locksmithindurban.co.za", true },
{ "locksmithlivoniami.com", true },
{ "locksmithmadisonheights.com", true },
@@ -21406,7 +21786,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "locksmithopen.com", true },
{ "locksmithsammamishwa.com", true },
{ "locksmithsanantoniotexas.com", true },
- { "locksmithsbluff.com", true },
{ "locksmithscottsdaleaz.com", true },
{ "locksmithseattleco.com", true },
{ "locksmithservice-houston.com", true },
@@ -21416,6 +21795,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "locksmiththewoodlands.com", true },
{ "locomore.com", true },
{ "locomotionds.com", true },
+ { "locomotive.net.br", true },
{ "locurimunca.co", true },
{ "lodash.com", false },
{ "loddeke.eu", true },
@@ -21434,13 +21814,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "logentries.com", false },
{ "logexplorer.net", true },
{ "logfile.at", true },
- { "logfro.de", true },
{ "logicchen.com", true },
{ "logiciel-entreprise-seurann.fr", true },
{ "logicio.ch", false },
{ "logicio.de", false },
{ "logicio.net", false },
{ "logicne-hise.si", true },
+ { "logicoma.com", true },
{ "logicz.top", true },
{ "login.corp.google.com", true },
{ "login.gov", false },
@@ -21465,11 +21845,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "logue.be", true },
{ "logze.nl", true },
{ "lohanaflores.com.br", true },
+ { "lohl1kohl.de", true },
{ "lohmeier.it", true },
{ "loichot.ch", true },
{ "loigiai.net", true },
{ "loihay.net", true },
- { "lojadamimo.com.br", true },
{ "lojadanidrea.com.br", true },
{ "lojadarenda.com.br", true },
{ "lojadewhisky.com.br", true },
@@ -21480,7 +21860,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lojamagicalx.com", true },
{ "lojamascate.com.br", true },
{ "lojamoleco.com.br", true },
- { "lojamulticapmais.com.br", true },
{ "lojaprimemed.com.br", true },
{ "lojaprojetoagua.com.br", true },
{ "lojasceletro.com.br", true },
@@ -21517,6 +21896,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "london.dating", true },
{ "londongallery.net", true },
{ "londongynaecologist.co", true },
+ { "londonkan.jp", true },
{ "londonkeyholdingcompany.co.uk", true },
{ "lonelytweets.com", true },
{ "lonesomecosmonaut.com", true },
@@ -21545,14 +21925,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lookbetweenthelines.com", true },
{ "lookup-dns.net", true },
{ "lookyman.net", true },
- { "lookzook.com", true },
{ "loom.no", true },
{ "loony.info", true },
{ "loopower.com", true },
{ "loopstart.org", true },
+ { "looseleafsecurity.com", true },
{ "loothole.com", true },
{ "loovto.net", true },
{ "loqu8.com", true },
+ { "lord.sh", true },
{ "lordofthebrick.com", true },
{ "lore.azurewebsites.net", true },
{ "lorenadumitrascu.ro", true },
@@ -21584,11 +21965,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "loucanfixit.com", true },
{ "louerunhacker.fr", true },
{ "louisvillecarguys.com", true },
- { "louisvillevmug.info", true },
{ "loune.net", true },
{ "loungecafe.net", true },
{ "loungecafe.org", true },
{ "love4taylor.me", true },
+ { "loveamber.me", true },
{ "loveandadoreboutique.com", true },
{ "lovebigisland.com", true },
{ "lovebo9.com", true },
@@ -21609,12 +21990,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lovesmagical.com", true },
{ "lovesupremefestival.com", true },
{ "lovetravel360.com", true },
+ { "lovevape.co", true },
{ "loveyounastya.com", true },
{ "loveysa.ch", true },
{ "lovg.ren", true },
{ "lovingearth.co", true },
+ { "lovingthermo.com", true },
{ "lovizaim.ru", true },
{ "low-diets.com", true },
+ { "lowcarblab.com", true },
{ "lowcostwire.com.au", true },
{ "lowerpricefinder.com", true },
{ "lowmagnitude.com", true },
@@ -21626,14 +22010,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "loyaltyondemand.club", true },
{ "loyaltyondemand.eu", true },
{ "lp-support.nl", true },
+ { "lprcommunity.co.za", true },
{ "lpt-nebreziny.eu", true },
+ { "lqs.me", true },
{ "lra-cloud.de", true },
{ "lrssystems.com", true },
{ "ls-alarm.de", true },
{ "lsal.me", true },
{ "lsc-dillingen.de", true },
{ "lsc.gov", true },
- { "lshiy.com", true },
{ "lsmpx.com", true },
{ "lsquo.com", true },
{ "lsws.de", true },
@@ -21655,7 +22040,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lucacastelnuovo.nl", false },
{ "lucafontana.net", true },
{ "lucafrancesca.me", true },
- { "lucakrebs.de", true },
{ "lucasantarella.com", true },
{ "lucasbergen.ca", true },
{ "lucascobb.com", true },
@@ -21669,17 +22053,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lucidframeworks.com", true },
{ "lucidlight.de", true },
{ "lucidoccult.com", true },
+ { "lucie.jp", true },
{ "lucielavickova.com", true },
{ "luckycastles.co.uk", true },
{ "luckyfrog.hk", true },
{ "luckyxf.com", true },
{ "lucy.science", true },
{ "lucyparsonslabs.com", true },
+ { "lucysan.net", true },
{ "lucz.co", true },
{ "ludek.biz", true },
{ "ludikovsky.name", true },
{ "ludogue.net", true },
{ "ludovic-muller.fr", true },
+ { "ludum.pl", true },
{ "ludwig.im", true },
{ "ludwiggrill.de", true },
{ "ludwigjohnson.se", true },
@@ -21766,7 +22153,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lupinenorthamerica.com", true },
{ "luqsus.pl", true },
{ "luso-livros.net", true },
- { "lusteniny.cz", false },
+ { "lusteniny.cz", true },
{ "lustige-zitate.com", true },
{ "lustin.fr", true },
{ "lustrum.ch", true },
@@ -21783,8 +22170,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "luvare.com", true },
{ "luvbridal.com.au", true },
{ "luxcraft.eng.br", true },
- { "luxescreenprotector.nl", true },
- { "luxofit.de", true },
+ { "luxescreenprotector.nl", false },
{ "luxsci.com", true },
{ "luxurynsight.net", true },
{ "luxurytimepieces.net", true },
@@ -21795,16 +22181,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "luxwatch.com", true },
{ "luyckx.net", true },
{ "luzat.com", true },
+ { "luzfaltex.com", true },
{ "lv.search.yahoo.com", false },
{ "lv0.it", true },
{ "lv5.top", true },
{ "lvmoo.com", true },
{ "lvrsystems.com", true },
{ "lw-addons.net", true },
- { "lwl.moe", true },
{ "lwl12.com", true },
{ "lxd.cc", true },
{ "lxd.pm", true },
+ { "lyam.fr", true },
{ "lycee-saintjoseph-mesnieres.fr", true },
{ "lychankiet.name.vn", false },
{ "lydudlejning.net", true },
@@ -21833,10 +22220,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "lyx.dk", true },
{ "lzh.one", true },
{ "lzwc.nl", true },
+ { "lzzr.me", true },
{ "m-22.com", true },
{ "m-chemical.com.hk", true },
- { "m-edmondson.co.uk", true },
{ "m-gh.info", true },
+ { "m-idea.jp", true },
{ "m-kleinert.de", true },
{ "m-mail.fr", true },
{ "m-orthodontic.com", true },
@@ -21848,6 +22236,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "m132.eu", true },
{ "m134.eu", true },
{ "m2epro.com", true },
+ { "m2il.co", true },
{ "m2os.com", true },
{ "m4rcus.de", true },
{ "ma-eir.nl", true },
@@ -21871,8 +22260,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "macgenius.com", true },
{ "mach-politik.ch", true },
{ "macha.cloud", true },
- { "machbach.com", true },
- { "machbach.net", true },
{ "machetewp.com", true },
{ "machikka.com", false },
{ "macht-elektro.de", true },
@@ -21897,10 +22284,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "macosxfilerecovery.com", true },
{ "macoun.de", true },
{ "macros.co.jp", true },
+ { "macstore.pe", true },
{ "mactools.com.co", true },
{ "mad.ninja", true },
{ "madae.nl", true },
{ "madars.org", false },
+ { "madbicicletas.com", true },
{ "madbin.com", true },
{ "madbouncycastles.co.uk", true },
{ "maddi.biz", true },
@@ -21924,6 +22313,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "madoka.nu", true },
{ "madreacqua.org", true },
{ "madridartcollection.com", true },
+ { "madscientistwebdesign.com", true },
{ "madtec.de", true },
{ "madusecurity.com", true },
{ "mae-berlinistanbul.com", true },
@@ -21958,6 +22348,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "magewell.nl", true },
{ "maggie.com", true },
{ "magi-cake.com", true },
+ { "magi.systems", true },
{ "magic-cards.info", true },
{ "magical-secrets.com", true },
{ "magical.rocks", true },
@@ -21983,7 +22374,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "magnoliastrong.com", true },
{ "magnunbaterias.com.br", true },
{ "magonote-nk.com", true },
- { "magosmedellin.com", true },
{ "magu.kz", true },
{ "maguire.email", true },
{ "magwin.co.uk", true },
@@ -22007,6 +22397,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mail.google.com", true },
{ "mail.storage", true },
{ "mail.yahoo.com", false },
+ { "mail180.com", true },
{ "mail4you.in", true },
{ "mailbox.mg", true },
{ "mailbox.org", true },
@@ -22044,12 +22435,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "majkassab.net", true },
{ "majkassab.org", true },
{ "majkl.me", true },
+ { "majkl.xyz", true },
+ { "majkl578.cz", true },
{ "majkyto.cz", true },
+ { "majlovesreg.one", true },
{ "majolka.com", true },
{ "makaleci.com", true },
{ "makalu.me", true },
{ "make-your-own-song.com", true },
{ "makeaboldmove.com", true },
+ { "makechanges.com.au", true },
{ "makedin.net", true },
{ "makem-bounce.co.uk", true },
{ "makenaiyo-fx.com", true },
@@ -22057,7 +22452,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "makersatwork.com", true },
{ "maketheneighborsjealous.com", true },
{ "makeurbiz.com", true },
+ { "makeyourlaws.org", true },
{ "maki-chan.de", true },
+ { "makinen.ru", true },
{ "makino.games", true },
{ "makkusu.photo", true },
{ "makowitz.cz", true },
@@ -22092,6 +22489,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mall.sk", true },
{ "mallach.net", true },
{ "mallhonda.com", true },
+ { "mallner.me", true },
{ "mallonline.com.br", true },
{ "malmoesport.se", true },
{ "malnex.de", true },
@@ -22101,7 +22499,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "malufs.com.br", true },
{ "malware.watch", true },
{ "malwareinvestigator.gov", true },
- { "malwarekillers.com", true },
{ "malwaretips.com", false },
{ "malwareverse.us", true },
{ "maly.cz", true },
@@ -22115,6 +22512,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mamiecouscous.com", true },
{ "mammals.net", true },
{ "mammaw.com", true },
+ { "mammeitalianeavienna.com", true },
{ "mammooc.org", true },
{ "mamospienas.lt", true },
{ "mamot.fr", false },
@@ -22147,6 +22545,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mangahigh.com", true },
{ "mangapoi.com", true },
{ "mangaristica.com", true },
+ { "mangnhuapvc.com.vn", true },
{ "manhattanchoralensemble.org", true },
{ "manhole.club", true },
{ "manhuagui.com", true },
@@ -22174,6 +22573,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mantabiofuel.com", true },
{ "mantor.org", false },
{ "mantra.pictures", true },
+ { "manualidadeson.com", true },
{ "manuall.co.uk", true },
{ "manuall.de", true },
{ "manuall.fr", true },
@@ -22184,8 +22584,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "manualscollection.com", true },
{ "manuel-herrmann.de", true },
{ "manuel-schefczyk.de", true },
- { "manuel7espejo.com", true },
- { "manuelahidalgo.org", true },
{ "manueldopheide.com", true },
{ "manueli.de", true },
{ "manuelpinto.in", false },
@@ -22215,7 +22613,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "maplanetebeaute.fr", true },
{ "mapletime.com", true },
{ "maps.net", true },
- { "mapservices.nl", true },
{ "mapstack.org", true },
{ "maquettage.com", true },
{ "maquinariaspesadas.org", true },
@@ -22225,6 +22622,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marble.com", true },
{ "marbogardenlidkoping.se", true },
{ "marc-hammer.de", true },
+ { "marc-schlagenhauf.de", true },
+ { "marcaixala.me", true },
{ "marcaudefroy.com", true },
{ "marcbeije.com", true },
{ "marcberndtgen.de", true },
@@ -22242,12 +22641,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marcelpreuss.de", true },
{ "marcelsiegert.com", true },
{ "marcelwaldvogel.ch", true },
+ { "marcelwiedemeier.com", true },
{ "marcelwolf.coach", true },
{ "marcgoertz.de", true },
{ "marche-contre-monsanto.ch", true },
{ "marchukov.com", true },
{ "marchwj.pl", true },
{ "marciaimportados.com.br", true },
+ { "marcianoandtopazio.com", true },
{ "marclay.co.uk", true },
{ "marco-goltz.de", true },
{ "marco-hegenberg.net", true },
@@ -22255,13 +22656,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marcocasoni.com", true },
{ "marcohager.de", true },
{ "marcoherten.com", true },
+ { "marcoslater.com", true },
{ "marcuskoh.com", true },
{ "marcusstafford.com", true },
{ "marechal-company.com", true },
+ { "marek.pro", true },
{ "marek.su", true },
{ "marelijah.org", true },
{ "margagriesser.de", true },
- { "margan.ch", true },
{ "margecommunication.com", true },
{ "margo-co.ch", true },
{ "margo.ml", true },
@@ -22294,14 +22696,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marinelausa.com", false },
{ "marines-shop.com", true },
{ "mario.party", false },
- { "marioabela.com", true },
{ "mariogeckler.de", true },
{ "mariposah.ch", true },
{ "marisamorby.com", false },
{ "maritim.go.id", false },
{ "mariushubatschek.de", true },
{ "mariviolin.com", true },
- { "marix.ro", true },
{ "marjeta-gurtner.ch", true },
{ "marjoleindens.be", true },
{ "marjoriecarvalho.com.br", true },
@@ -22322,10 +22722,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marketing-2.de", true },
{ "marketing.limited", true },
{ "marketing91.com", true },
+ { "marketingbrandingnews.net", true },
{ "marketingco.nl", true },
{ "marketingconverts.com", true },
{ "marketingforfood.com", true },
{ "marketinggenerators.nl", true },
+ { "marketingtrendnews.com", true },
{ "marketingvirtuales.com", true },
{ "marketizare.ro", true },
{ "marketlinks.org", true },
@@ -22357,11 +22759,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marktissink.nl", true },
{ "markup-ua.com", true },
{ "markus-dev.com", true },
+ { "markus-keppeler.de", true },
{ "markus-musiker.de", true },
{ "markus-ullmann.de", true },
{ "markus.design", true },
{ "markusehrlicher.de", true },
{ "markusgran.de", true },
+ { "markuskeppeler.de", true },
{ "markuskeppeler.no-ip.biz", true },
{ "marl.fr", true },
{ "marloncommunications.com", true },
@@ -22384,6 +22788,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marsanvet.com", true },
{ "marsble.com", true },
{ "marseillekiteclub.com", true },
+ { "marshallford.me", true },
{ "marshallscastles.com", true },
{ "marshallwilson.com", true },
{ "marshmallow.co", true },
@@ -22431,19 +22836,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "marylandbasementandcrawlspacewaterproofing.com", true },
{ "masarik.sh", true },
{ "masatotaniguchi.jp", true },
+ { "masautonomo.com", true },
{ "masayahost.com", true },
+ { "mascorazon.com", true },
{ "mascosolutions.com", true },
{ "masdillah.com", true },
+ { "maservant.net", true },
{ "mashandco.it", true },
{ "mashandco.tv", true },
{ "masiniunelte.store.ro", true },
{ "masiul.is", true },
{ "maskice.hr", true },
{ "maskim.fr", true },
- { "maslife365.com", true },
{ "maslin.io", true },
{ "masrur.org", true },
{ "massaboutique.com", true },
+ { "massage-colleges.com", true },
{ "massage-vitalite.fr", true },
{ "massage4u.net", true },
{ "massagecupping.com", true },
@@ -22460,7 +22868,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mastah.fr", true },
{ "mastd.me", false },
{ "mastellone.us", true },
- { "mastepinnelaand.nl", true },
{ "master-net.org", true },
{ "mastercardpac.com", true },
{ "masterdemolitioninc.com", true },
@@ -22477,9 +22884,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mastodon.at", true },
{ "mastodon.host", true },
{ "mastodon.rocks", true },
+ { "mastodon.top", true },
{ "mat.tt", true },
{ "matanz.de", true },
{ "matatabimix.com", true },
+ { "matatall.com", true },
+ { "matbad.de", true },
{ "match.audio", true },
{ "matcha-iga.jp", true },
{ "matchatea24.com", true },
@@ -22488,26 +22898,29 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "matdogs.com", true },
{ "matejgroma.com", true },
{ "matel.org", true },
+ { "materassi.roma.it", true },
{ "materiaischiquinho.com.br", true },
{ "material-ui.com", true },
{ "material-world-fuyouhin.com", true },
{ "materialism.com", true },
{ "materialyinzynierskie.pl", true },
+ { "maternalsafety.org", true },
{ "maternum.com", true },
{ "mateuszchyla.pl", true },
+ { "math-colleges.com", true },
{ "math.hamburg", true },
{ "mathalexservice.info", true },
- { "mathematik.rocks", true },
+ { "mathematik.rocks", false },
{ "mathematris.com", true },
{ "mathembedded.com", true },
{ "matheo-schefczyk.de", true },
{ "mathfinder.org", true },
{ "mathhire.org", true },
- { "mathias.is", true },
{ "mathiasbynens.be", true },
{ "mathiasgarbe.de", true },
{ "mathiaswagner.org", true },
{ "mathieuguimond.com", true },
+ { "mathis.com.tr", true },
{ "maths.network", true },
{ "mathsource.ga", true },
{ "mathspace.co", true },
@@ -22515,7 +22928,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mathsweek.org.nz", true },
{ "mathsweek.school.nz", true },
{ "mathys.io", true },
- { "matildajaneclothing.com", true },
{ "matjaz.it", true },
{ "matlss.com", true },
{ "matmessages.com", true },
@@ -22531,6 +22943,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "matrixreq.com", true },
{ "matsu-semi.com", true },
{ "matsu-walk.com", true },
+ { "matt-brooks.com", true },
{ "matt-royal.gr", true },
{ "matt.re", true },
{ "mattandyana.com", true },
@@ -22570,11 +22983,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mattmccutchen.net", true },
{ "mattmcshane.com", true },
{ "mattonline.me", true },
- { "mattwservices.co.uk", true },
{ "matviet.vn", true },
{ "matway.com", true },
{ "matway.net", true },
- { "matze.co", true },
{ "mauerwerkstag.info", true },
{ "mauldincookfence.com", true },
{ "mauran.me", true },
@@ -22600,12 +23011,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "max-moeglich.de", true },
{ "max-went.pl", true },
{ "max.gov", true },
+ { "maxb.fm", true },
{ "maxbeenen.de", true },
{ "maxbruckner.de", true },
{ "maxbruckner.org", true },
{ "maxchan.info", true },
{ "maxdev72.freeboxos.fr", true },
{ "maxfox.me", true },
+ { "maxh.me.uk", true },
{ "maxhamon.ovh", true },
{ "maximdeboiserie.be", true },
{ "maximdens.be", true },
@@ -22619,10 +23032,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "maxisito.it", true },
{ "maxkaul.de", true },
{ "maxmilton.com", true },
+ { "maxmind.com", true },
{ "maxp.info", true },
{ "maxpl0it.com", true },
{ "maxr1998.de", true },
- { "maxrandolph.com", true },
{ "maxtruxa.com", true },
{ "maxundlara.at", true },
{ "maxwaellenergie.de", true },
@@ -22635,6 +23048,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mayavi.co.in", true },
{ "maydex.info", true },
{ "mayerbrownllz.com", true },
+ { "mayoimobiliare.ro", true },
{ "mayomarquees.com", true },
{ "mayopartyhire.com", true },
{ "maypolevilla.co.uk", true },
@@ -22642,8 +23056,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mazda-mps.de", true },
{ "mazda-thermote.com", true },
{ "mazda626.net", true },
+ { "maze.design", true },
{ "maze.fr", true },
{ "mazternet.ru", true },
+ { "mazurlabs.tk", true },
{ "mazzotta.me", true },
{ "mb-is.info", true },
{ "mb300sd.com", true },
@@ -22663,7 +23079,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mble.mg", true },
{ "mbp.banking.co.at", false },
{ "mbr-net.de", true },
- { "mbrooks.info", true },
{ "mbs-journey.com", true },
{ "mbsec.net", true },
{ "mburns.duckdns.org", true },
@@ -22717,6 +23132,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mcprocdn.com", true },
{ "mcrn.jp", true },
{ "mcsinflatables.co.uk", true },
+ { "mcsports.es", true },
{ "mcsrvstat.us", true },
{ "mctools.org", true },
{ "mcuuid.net", true },
@@ -22742,6 +23158,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mdoering.de", true },
{ "mdosch.de", true },
{ "mdpraha.cz", true },
+ { "mdrthmcs.io", true },
{ "mds-paris.com", true },
{ "mdsave.com", true },
{ "mdx.no", true },
@@ -22761,8 +23178,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mebaneattorney.com", true },
{ "mebanesteakhouse.com", true },
{ "mecanicoautomotriz.org", true },
+ { "mechanics-schools.com", true },
{ "mechanus.io", true },
{ "mechmk1.me", true },
+ { "med-colleges.com", true },
{ "med-otzyv.ru", true },
{ "med360.at", true },
{ "medba.se", true },
@@ -22781,6 +23200,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "media-instance.ru", true },
{ "media-library.co.uk", true },
{ "media-pi.com", true },
+ { "media-service.fr", true },
{ "media-serwis.com", true },
{ "mediaarea.net", true },
{ "mediabackoffice.co.jp", true },
@@ -22799,6 +23219,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mediamarkt.pl", true },
{ "mediapart.fr", true },
{ "mediarithmics.com", true },
+ { "mediarithmics.io", true },
{ "mediarocks.de", true },
{ "mediaselection.eu", true },
{ "mediationculturelleclp.ch", true },
@@ -22810,6 +23231,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mediawiki.org", true },
{ "mediawin.pl", true },
{ "medic-world.com", true },
+ { "medical-assistant-colleges.com", true },
{ "medicalabroad.org", true },
{ "medicalcountermeasures.gov", true },
{ "medicare-providers.net", true },
@@ -22822,6 +23244,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "medienweite.de", true },
{ "medifi.com", true },
{ "medigap-quote.net", true },
+ { "medik8.com.cy", true },
{ "medikuma.com", true },
{ "medino.com", true },
{ "medinside.ch", true },
@@ -22829,6 +23252,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "medinsider.ch", true },
{ "medinsider.li", true },
{ "medireport.fr", true },
+ { "meditadvisors.com", true },
{ "meditel.nl", true },
{ "medium.com", true },
{ "medja.net", true },
@@ -22855,6 +23279,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "meeko.cc", true },
{ "meereskunst.de", true },
{ "meerutcake.com", true },
+ { "meesteresmisty.nl", true },
{ "meet.google.com", true },
{ "meetawesomepeople.net", true },
{ "meetbot.fedoraproject.org", true },
@@ -22892,6 +23317,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "megasslstore.com", true },
{ "megauction.tk", true },
{ "megaxchange.com", true },
+ { "mego.cloud", true },
{ "megumico.net", true },
{ "megustariasaber.com", true },
{ "megztosidejos.lt", true },
@@ -22931,6 +23357,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mekesh.net", true },
{ "mekesh.ru", true },
{ "meklon.net", true },
+ { "mekongeye.com", true },
{ "melaniebernhardt.com", true },
{ "melaniegruber.de", true },
{ "melbourne.dating", true },
@@ -22962,7 +23389,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "members-only-shopping.com", true },
{ "members.nearlyfreespeech.net", false },
{ "membershipservices.org.uk", true },
- { "membersonline.org", true },
{ "meme-photostudio.com.tw", true },
{ "meme.fi", true },
{ "meme.institute", true },
@@ -22970,7 +23396,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "memepasmal.net", true },
{ "memesbee.com", true },
{ "memfrob.org", true },
- { "memind.net", true },
{ "memiux.com", true },
{ "memo-linux.com", true },
{ "memo.ee", true },
@@ -22986,6 +23411,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "menhera.org", true },
{ "menielias.com", true },
{ "menkyo-blog.com", true },
+ { "mennace.com", true },
{ "menntagatt.is", true },
{ "menole.com", true },
{ "menole.de", true },
@@ -23010,6 +23436,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "menzel-motors.com", true },
{ "menzietti.it", true },
{ "mephedrone.org", true },
+ { "meps.net", true },
{ "mer.gd", true },
{ "meransuedtirol.com", true },
{ "meraseo.com", true },
@@ -23024,22 +23451,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "merchant-automotive.com", true },
{ "mercier-auto.com", true },
{ "mercier-cars.co.uk", true },
+ { "mercredifiction.io", true },
{ "mercury.photo", true },
{ "mercuryamericas.com", false },
{ "meremeti-online.gr", true },
+ { "meremobil.dk", true },
{ "merenbach.com", true },
{ "merenita.com", true },
{ "merenita.eu", true },
{ "merenita.net", true },
{ "merenita.nl", true },
{ "meric-graphisme.info", true },
+ { "meridianfresno.com", true },
{ "meridianmetals.com", true },
{ "meridianstore.com.br", true },
{ "merkel.me", true },
{ "merlet.eu", true },
{ "merlinsoap.com", true },
- { "merloat.club", true },
- { "merloat.com", true },
{ "merojob.com", true },
{ "meronberry.jp", true },
{ "merson.org", true },
@@ -23061,7 +23489,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "messagevortex.net", true },
{ "messdorferfeld.de", true },
{ "messenger.co.tz", true },
- { "messenger.com", false },
+ { "messenger.com", true },
{ "messengerwebbrands.com", true },
{ "messer24.ch", true },
{ "messymom.com", true },
@@ -23069,20 +23497,24 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mestr.es", true },
{ "mesvt.com", true },
{ "meta-db.com", true },
+ { "meta-word.com", true },
{ "meta.sc", true },
{ "metachris.com", true },
{ "metacoda.com", true },
{ "metacode.biz", true },
{ "metadatawiki.com", true },
+ { "metaether.net", true },
{ "metafurquest.net", true },
{ "metalu.ch", true },
- { "metanic.org", true },
{ "metanic.services", true },
{ "metanodo.com", true },
{ "metapeen.nl", true },
{ "metaregistrar.com", true },
{ "metasquare.com.au", true },
{ "metasquare.nyc", true },
+ { "metaword.com", true },
+ { "metaword.net", true },
+ { "metaword.org", true },
{ "meteenonline.nl", true },
{ "meteo-parc.com", true },
{ "meteo-r.ovh", true },
@@ -23094,7 +23526,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "meteobox.mx", true },
{ "meteobox.pl", true },
{ "meteobox.sk", true },
+ { "meteocat.net", true },
{ "meteorapp.space", true },
+ { "meteorologiaenred.com", true },
{ "meteosherbrooke.com", true },
{ "meteosmit.it", true },
{ "meterhost.com", true },
@@ -23103,7 +23537,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "metro-lawn-care.com", true },
{ "metro-web.net", true },
{ "metroairvirtual.com", true },
- { "metrobriefs.com", true },
{ "metrolush.com", true },
{ "metronaut.de", true },
{ "metropop.ch", true },
@@ -23117,6 +23550,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mevs.cz", true },
{ "mexican.dating", true },
{ "mexicanjokes.net", true },
+ { "mexico.sh", true },
{ "mexicom.org", true },
{ "meyash.co", true },
{ "mf-fischer.de", true },
@@ -23125,6 +23559,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mfgusa.com", true },
{ "mfits.co.uk", true },
{ "mflodin.se", true },
+ { "mfpccprod.com", true },
{ "mfxbe.de", true },
{ "mfz.mk", true },
{ "mgcraft.net", true },
@@ -23154,12 +23589,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "miasarafina.de", true },
{ "mibuiin.com", true },
{ "micado-software.com", true },
- { "micaiahparker.com", true },
{ "micalodeal.ch", true },
- { "micasamgmt.com", false },
{ "micbase.com", true },
{ "michadenheijer.com", true },
{ "michael-schefczyk.de", true },
+ { "michael-schilling.de", true },
{ "michael-steinhauer.eu", true },
{ "michael.band", true },
{ "michaelasawyer.com", true },
@@ -23170,7 +23604,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "michaelhrehor.com", true },
{ "michaeliscorp.com", true },
{ "michaelismold.com", true },
- { "michaelizquierdo.com", true },
{ "michaeljdennis.com", true },
{ "michaelkuchta.me", true },
{ "michaelleibundgut.com", true },
@@ -23180,6 +23613,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "michaels-homepage-service.de", true },
{ "michaelschmidt.ch", true },
{ "michaelschubert.com", true },
+ { "michaelschule-rheine.de", true },
+ { "michaelslatkine.com", true },
{ "michaelsnoeren.nl", true },
{ "michaelsweater.com", true },
{ "michaeltaboada.me", true },
@@ -23226,9 +23661,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "midnightmango.co.uk", true },
{ "midnightmango.de", true },
{ "midnightmechanism.com", true },
+ { "midrandplumber24-7.co.za", true },
{ "midstatebasement.com", true },
{ "midtowndentistry.com", true },
{ "midwestbloggers.org", true },
+ { "midwestplus.com", true },
{ "midweststructuralrepair.com", true },
{ "miegl.com", true },
{ "miembarcacion.com", true },
@@ -23251,7 +23688,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mijcorijneveld.nl", true },
{ "mijn-financien.be", true },
{ "mijnavg.eu", true },
- { "mijnetickets.nl", false },
{ "mijnetz.nl", true },
{ "mijnkerstkaarten.be", true },
{ "mijnkinderkleding.com", true },
@@ -23271,11 +23707,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mikeblog.site", true },
{ "mikebutcher.ca", true },
{ "mikecb.org", true },
- { "mikegarnett.co.uk", true },
{ "mikegerwitz.com", true },
{ "mikeguy.co.uk", true },
{ "mikehamburg.com", true },
{ "mikehilldesign.co.uk", true },
+ { "mikekreuzer.com", true },
{ "mikerichards.photography", false },
{ "miketabor.com", true },
{ "miketheuer.com", true },
@@ -23285,9 +23721,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mikewritesstuff.com", true },
{ "mikeybailey.org", true },
{ "mikhirev.ru", true },
- { "mikhlevich.ru", true },
{ "miki-boras.de", true },
{ "miki.it", true },
+ { "mikkelscheike.com", true },
+ { "mikkelvej.dk", true },
{ "mikkonen.bio", true },
{ "miklcct.com", true },
{ "miknight.com", true },
@@ -23299,6 +23736,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "miku.party", true },
{ "mikumaycry.com", true },
{ "mikumiku.stream", true },
+ { "mikupic.com", true },
{ "mikywow.eu", true },
{ "mil-spec.ch", true },
{ "mil0.com", true },
@@ -23319,10 +23757,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "milldyke.nl", true },
{ "millefleurs.eu", true },
{ "millennium-thisiswhoweare.net", true },
- { "millenniumweb.com", false },
{ "millersminibarns.com", true },
{ "millettable.com", true },
{ "millhousenchurch.com", true },
+ { "millibitcoin.jp", true },
{ "million5.com", true },
{ "million6.com", true },
{ "million8.com", true },
@@ -23337,9 +23775,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "millions19.com", true },
{ "millions20.com", true },
{ "millions22.com", true },
- { "millions25.com", true },
- { "millions26.com", true },
- { "millions27.com", true },
{ "millions28.com", true },
{ "millions29.com", true },
{ "millions31.com", true },
@@ -23409,8 +23844,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mindoktor.se", false },
{ "mindorbs.com", true },
{ "mindstretchers.co.uk", true },
- { "mindwork.space", true },
{ "mine-craftlife.com", true },
+ { "mine-pixl.de", true },
{ "mine260309.me", true },
{ "minebier.dk", true },
{ "minecraft-forum.eu", true },
@@ -23435,6 +23870,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mingming.info", true },
{ "mingram.net", true },
{ "mingwah.ch", true },
+ { "minh.at", false },
{ "mini2.fi", true },
{ "minigames.com", true },
{ "miniglueck.net", true },
@@ -23451,19 +23887,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ministeriumfuerinternet.de", true },
{ "minitruckin.net", true },
{ "minitrucktalk.com", true },
+ { "miniwallaby.com", true },
{ "minkymoon.jp", true },
{ "minnesotakinkyyouth.org", true },
{ "minnesotamathcorps.org", true },
{ "minnesotareadingcorps.org", true },
{ "minnit.chat", true },
{ "minobar.com", true },
- { "minorshadows.net", true },
{ "minpingvin.dk", true },
{ "minschuns.ch", true },
{ "mintclass.com", true },
{ "mintosherbs.com", true },
{ "mintrak2.com", true },
{ "mintse.com", true },
+ { "minu.link", true },
{ "minube.co.cr", true },
{ "minux.info", true },
{ "mipapo.de", true },
@@ -23482,7 +23919,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mirepublic.co.nz", true },
{ "mireservaonline.es", true },
{ "mirfire.com", true },
- { "mirjamderijk.nl", true },
+ { "mirjamderijk.nl", false },
{ "mirkofranz.de", true },
{ "mironet.cz", true },
{ "mirrorbot.ga", true },
@@ -23505,6 +23942,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "missdream.org", true },
{ "misseguf.dk", true },
{ "missevent.pl", true },
+ { "missguidedus.com", true },
{ "mission-orange.de", true },
{ "missionsgemeinde.de", true },
{ "missip.nl", true },
@@ -23531,6 +23969,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mitarbeitermotivation-anleitungen.de", true },
{ "mitchellhandymanservices.co.uk", true },
{ "mitchelmore.ca", true },
+ { "mitdip-mit-group-ch.azurewebsites.net", true },
{ "miticobikes.com", true },
{ "mitigationcommission.gov", true },
{ "mitnetz-gas.de", true },
@@ -23547,7 +23986,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mittagonghomestead.com.au", true },
{ "mittelunsachlich.de", true },
{ "mittenofficesystems.com", true },
- { "mityinc.com", true },
{ "mitylite.com", true },
{ "mitzpettel.com", true },
{ "miui-germany.de", true },
@@ -23574,6 +24012,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mizipack.com", true },
{ "mizque.ch", true },
{ "mizu.coffee", true },
+ { "mizucoffee.net", true },
{ "mizuho-trade.net", true },
{ "mizumax.me", true },
{ "mj420.com", true },
@@ -23598,8 +24037,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mkes.com", true },
{ "mkg-chirurgie-bruchsal.de", true },
{ "mkg-scherer.de", true },
+ { "mkg-wiebelskirchen.de", true },
{ "mkhsoft.eu", true },
{ "mkimage.com", true },
+ { "mkjl.ml", true },
{ "mkk.de", true },
{ "mkkkrc.ru", true },
{ "mklpedia.de", true },
@@ -23616,6 +24057,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mlcnfriends.com", true },
{ "mlemay.com", true },
{ "mlfaw.com", true },
+ { "mlii.net", true },
{ "mlmjam.com", true },
{ "mlp.ee", true },
{ "mlpvector.club", true },
@@ -23647,6 +24089,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mnium.de", true },
{ "mnml.art", true },
{ "mnml.jp", true },
+ { "mnmt.no", true },
{ "mnnknz.de", true },
{ "mnsure.org", true },
{ "mnt-tech.fr", true },
@@ -23706,10 +24149,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "modding-welt.com", true },
{ "mode-hautnah.de", true },
{ "mode-individuell.de", true },
+ { "modehaus-marionk.de", true },
{ "modelcase.co.jp", false },
{ "modelclub-draveil.eu", true },
{ "modelcube.com", true },
- { "modeldimension.com", true },
{ "modelisme-rc.net", true },
{ "modelisme-voiture-rc.fr", true },
{ "modelservis.cz", true },
@@ -23728,16 +24171,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "modul21.eu", true },
{ "module.market", true },
{ "modulex-gmbh.de", true },
+ { "moe-max.jp", true },
+ { "moe.wtf", true },
+ { "moeali.com", true },
{ "moechel.com", true },
{ "moefactory.com", true },
{ "moeking.me", true },
+ { "moeli.org", true },
{ "moellers.systems", true },
+ { "moeqing.net", true },
{ "moetrack.com", true },
{ "moeyoo.net", true },
{ "mofohome.dyndns.org", true },
{ "moha-swiss.com", true },
{ "mohanmekap.com", true },
- { "mohela.com", true },
{ "moin.jp", true },
{ "moipourtoit.ch", true },
{ "moipourtoit.com", true },
@@ -23750,6 +24197,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mojefedora.cz", true },
{ "mojilitygroup.com", true },
{ "mojizuri.com", true },
+ { "mojnet.eu", true },
+ { "mojnet.net", true },
{ "mojzis.com", true },
{ "mojzis.cz", true },
{ "mojzisova.com", true },
@@ -23765,6 +24214,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "molun.net", false },
{ "molunerfinn.com", true },
{ "molwick.com", true },
+ { "momentsofimpact.info", true },
{ "momentum.photos", true },
{ "momentumdash.com", true },
{ "momirfarooq.com", true },
@@ -23775,8 +24225,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "momut.org", true },
{ "momy-genealogie.info", true },
{ "mon-partage.fr", true },
- { "mon-trafic.com", true },
{ "mon22.ch", true },
+ { "mona-antenna.com", true },
{ "mona-dress.com", true },
{ "monachatdeco.com", true },
{ "monaco-automaten.de", true },
@@ -23802,6 +24252,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "monique.io", true },
{ "moniquedekermadec.com", true },
{ "moniquemunhoz.com.br", true },
+ { "monitman.com", true },
{ "monitoring.kalisz.pl", true },
{ "monitzer.com", true },
{ "monix.io", true },
@@ -23818,6 +24269,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mono0x.net", true },
{ "monobank.no", true },
{ "monodukuri.com", true },
+ { "monokoo.com", true },
{ "monolithapps.com", true },
{ "monolithindustries.com", true },
{ "monolithinteractive.com", true },
@@ -23860,13 +24312,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "moonagic.io", true },
{ "moonbench.xyz", true },
{ "moonbot.io", true },
+ { "moonchart.co.uk", true },
{ "moondrop.org", true },
{ "moonkin.eu", true },
{ "moonlightcapital.ml", true },
{ "moonmelo.com", true },
{ "moonraptor.co.uk", true },
{ "moonraptor.com", true },
- { "moonrhythm.info", false },
{ "moonshyne.org", true },
{ "moontaj.com", true },
{ "moonvpn.org", true },
@@ -23881,6 +24333,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mooselook.de", true },
{ "moosmann-moehrle.de", true },
{ "moot-info.co.za", true },
+ { "moovablestorage.com", true },
{ "moparcraft.net", true },
{ "moparisthebest.com", true },
{ "moparisthebest.net", true },
@@ -23917,6 +24370,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "moritztremmel.de", true },
{ "moriz.de", true },
{ "moriz.net", true },
+ { "mormon-colleges.com", true },
{ "mormonleaks.io", true },
{ "morningcurve.com", true },
{ "morningstar.moe", true },
@@ -23940,7 +24394,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mosscade.com", true },
{ "mosshi.be", true },
{ "mosstier.com", true },
- { "mostlyinfinite.com", true },
+ { "mostlikelyto.fail", true },
{ "mostlyoverhead.com", true },
{ "motd.ch", true },
{ "motd.today", true },
@@ -23957,6 +24411,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "motifstudio.com.ua", true },
{ "motionless.nl", true },
{ "motiweb.fr", true },
+ { "motocollection.pl", true },
{ "motohell.com", true },
{ "motojato.com.br", true },
{ "motonauticaibiza.com", true },
@@ -23970,7 +24425,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "motovated.co.nz", true },
{ "motowilliams.com", true },
{ "motstats.co.uk", true },
- { "mottomortgage.com", true },
{ "moucloud.cn", true },
{ "moulinaparoles.ca", true },
{ "mountain-rock.ru", true },
@@ -24031,12 +24485,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mplicka.cz", true },
{ "mplusm.eu", true },
{ "mpnpokertour.com", true },
- { "mpodraza.pl", true },
- { "mpreserver.com", false },
{ "mprsco.eu", true },
{ "mpsgarage.com.au", true },
{ "mpsoundcraft.com", true },
- { "mpu-giessen.com", true },
{ "mpu-vorbereitung.com", true },
{ "mpy.ovh", true },
{ "mqas.net", true },
@@ -24067,7 +24518,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mrketolocksmith.com", true },
{ "mrknee.gr", true },
{ "mrkrabat.de", true },
- { "mrmoregame.de", true },
{ "mrnh.de", true },
{ "mrning.com", true },
{ "mrprintables.com", true },
@@ -24094,10 +24544,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mshemailmarketer.com.au", true },
{ "msi-zlin.cz", true },
{ "msiegmund.com", true },
+ { "msize48.ch", true },
{ "msmails.de", true },
{ "msno.no", true },
{ "msnr.net", true },
- { "msopopop.cn", true },
{ "mspsocial.net", true },
{ "msquadrat.de", true },
{ "msroot.de", true },
@@ -24116,8 +24566,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mtane0412.com", true },
{ "mtasa.com", true },
{ "mtasa.hu", true },
- { "mtb.wtf", true },
- { "mtcq.jp", true },
{ "mtd.org", true },
{ "mtg-tutor.de", true },
{ "mtgeni.us", true },
@@ -24162,6 +24610,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "muh.io", true },
{ "mui.jp", true },
{ "muitadica.com", true },
+ { "mujerfutura.com", true },
{ "muk-kobetsu.com", true },
{ "mulaccosmetics.com", true },
{ "mulaisehat.com", true },
@@ -24176,7 +24625,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "multigeist.de", true },
{ "multikalender.de", false },
{ "multimail.work", true },
- { "multimatte.com", true },
+ { "multimatte.com", false },
{ "multimed.krakow.pl", true },
{ "multimedia-pool.com", true },
{ "multiplayernow.com", true },
@@ -24192,7 +24641,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "multizone.games", true },
{ "multrier.fr", true },
{ "mum.ceo", true },
- { "muma.ml", true },
{ "mumakil.fi", true },
{ "mumbaionlinegifts.com", true },
{ "muminkoykiran.com", true },
@@ -24200,6 +24648,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "munch.me", true },
{ "munchcorp.com", true },
{ "mundoarabe.com.br", true },
+ { "mundodapoesia.com", true },
{ "mundodasmensagens.com", true },
{ "mundokinderland.com.br", true },
{ "mundolarraz.es", true },
@@ -24208,9 +24657,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mundtec.com.br", true },
{ "munduch.cz", true },
{ "munduch.eu", true },
+ { "munirajiwa.com", true },
{ "munki.org", true },
{ "munkibuilds.org", true },
- { "munwr.com", false },
+ { "munwr.com", true },
{ "muqu.co", true },
{ "mur-vegetal-interieur.fr", true },
{ "murakami-sah.com", true },
@@ -24274,7 +24724,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mutantmonkey.info", true },
{ "mutantmonkey.sexy", true },
{ "muthai.in.th", true },
- { "mutuals.cool", true },
{ "mutuelle.fr", true },
{ "muusika.fun", true },
{ "muusikoiden.net", true },
@@ -24296,7 +24745,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mwe.st", true },
{ "mwezi-foundation.org", true },
{ "mwezi.org", true },
- { "mwohlfarth.de", true },
{ "mwtdev.se", true },
{ "mww.moe", true },
{ "mx-quad.fr", true },
@@ -24332,7 +24780,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "my4thtelco.sg", true },
{ "myabcm.com", true },
{ "myaccount.google.com", false },
- { "myactivity.google.com", true },
+ { "myactivity.google.com", false },
{ "myadpost.com", true },
{ "myadself.com", true },
{ "myaggic.com", true },
@@ -24368,7 +24816,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mycofairtrade.com", true },
{ "mycompanion.cz", true },
{ "myconan.net", true },
+ { "myconnect.cn", true },
{ "myconsulting.ch", true },
+ { "mycookrecetas.com", true },
{ "mycr.eu", true },
{ "mycreativeartsconsulting.com", true },
{ "mycreativenook.com", true },
@@ -24397,7 +24847,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myeberspaecher.com", true },
{ "myeffect.today", true },
{ "myeisenbahn.de", true },
- { "myeml.net", true },
{ "myessaygeek.com", true },
{ "myetherwallet.com", true },
{ "myf.cloud", true },
@@ -24412,6 +24861,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myg21.com", true },
{ "mygadgetguardian.lookout.com", false },
{ "mygallery.homelinux.net", true },
+ { "mygate.at", false },
{ "mygeneral.org", true },
{ "mygeotrip.com", true },
{ "mygigabitnation.com", true },
@@ -24428,9 +24878,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myhealthreviews.com", true },
{ "myhollywoodnews.com", true },
{ "myhome-24.pl", true },
+ { "myhuthwaite.com", true },
{ "myimds.com", true },
{ "myimmitracker.com", true },
{ "myinvite.nl", true },
+ { "myipaddr.de", true },
{ "myipv4.de", true },
{ "myjudo.net", true },
{ "myjumparoo.co.uk", true },
@@ -24445,6 +24897,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myliveupdates.com", true },
{ "mylookout.com", false },
{ "mylstrom.com", true },
+ { "mymadina.com", true },
{ "mymall.co.jp", true },
{ "mymarketingcourses.com", true },
{ "mymb.pm", true },
@@ -24456,11 +24909,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mymotor.nl", true },
{ "myms.eu", true },
{ "mymun.com", true },
- { "mymun.net", true },
{ "mymusiclist.alwaysdata.net", true },
{ "mymx.lu", true },
{ "myna.go.jp", true },
{ "mynameistavis.com", true },
+ { "mynetworkingbuddy.com", true },
{ "mynext.events", true },
{ "mynextmove.org", true },
{ "mynn.io", true },
@@ -24490,7 +24943,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myperks.in", true },
{ "myphotoshopbrushes.com", true },
{ "mypillcard.com", true },
+ { "mypizza-bremen.de", true },
{ "myplaceonline.com", true },
+ { "mypnu.net", true },
{ "mypress.mx", true },
{ "myprintcard.de", true },
{ "myproblog.com", true },
@@ -24501,6 +24956,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myraytech.net", false },
{ "myrealestatemate.com.au", true },
{ "myrealestateschool.com", true },
+ { "myred.net", true },
{ "myref.net", true },
{ "myrekber.co.id", true },
{ "myrent.quebec", true },
@@ -24521,7 +24977,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myrepublic.eu.com", true },
{ "myrepublic.ga", true },
{ "myrepublic.gq", true },
- { "myrepublic.icu", true },
+ { "myrepublic.icu", false },
{ "myrepublic.id", true },
{ "myrepublic.in", true },
{ "myrepublic.limited", true },
@@ -24578,7 +25034,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mysockfactory.ch", true },
{ "mysockfactory.com", true },
{ "mysocrat.com", true },
- { "mysongbird.xyz", true },
{ "mysoundtalks.com", false },
{ "myspicer.com", true },
{ "mysqldump-secure.org", true },
@@ -24587,7 +25042,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "mysteriouscode.io", true },
{ "mysterydata.com", true },
{ "mysterymind.ch", true },
- { "mysterysear.ch", true },
{ "mystic-welten.de", true },
{ "mystickphysick.com", true },
{ "mysticplumes.com", true },
@@ -24623,7 +25077,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myvoipnews.com", true },
{ "myvpl.com", true },
{ "mywari.com", true },
- { "mywebinar.io", true },
{ "mywebmanager.co.uk", true },
{ "mywebpanel.eu", true },
{ "mywebpanel.nl", true },
@@ -24633,6 +25086,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "myxnr.com", true },
{ "myyubikey.net", true },
{ "myyubikey.org", true },
+ { "myzhili.com", true },
{ "myzina.cz", false },
{ "mz-mz.net", true },
{ "mza.com", true },
@@ -24654,7 +25108,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "n4v.eu", true },
{ "n5118.com", true },
{ "n6a.net", true },
- { "n7.education", true },
{ "n8mgt.com", true },
{ "n8nvi.com", true },
{ "n8solutions.net", true },
@@ -24692,6 +25145,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nailattitude.ch", true },
{ "nailchiodo.com", true },
{ "nailsalon-aztplus.com", true },
+ { "nailtodayminneapolis.com", true },
{ "nairobibusinessreview.com", true },
{ "naive.network", true },
{ "najany.de", true },
@@ -24702,10 +25156,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nakalabo.jp", true },
{ "nakama.tv", true },
{ "nakandya.com", true },
+ { "nakanishi-paint.com", true },
{ "nakayama.systems", true },
{ "nakedalarmclock.me", true },
{ "nakedtruthbeauty.com", true },
{ "nakene.com", true },
+ { "nakliyat.name.tr", true },
{ "nakliyatsirketi.biz.tr", true },
{ "nako.no", true },
{ "nalepky-na-zed.cz", true },
@@ -24734,6 +25190,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nanarose.ch", true },
{ "nanch.com", true },
{ "nandex.org", true },
+ { "nange.cn", true },
{ "nange.co", true },
{ "nankiseamansclub.com", true },
{ "nannytax.ca", true },
@@ -24783,9 +25240,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nashira.cz", true },
{ "nashvillelidsurgery.com", true },
{ "nashzhou.me", true },
- { "nasme.tk", true },
{ "nasrsolar.com", true },
- { "nassi.me", true },
{ "nastoletni.pl", true },
{ "nataldigital.com", true },
{ "nataliedawnhanson.com", true },
@@ -24812,6 +25267,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nationalcrimecheck.com.au", true },
{ "nationalhomequotes.com", true },
{ "nationalmap.gov", true },
+ { "nationalpassportservice.info", true },
{ "nationalpriorities.org", true },
{ "nationaltaxprep.com", true },
{ "nationaltrails.ru", true },
@@ -24850,7 +25306,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "navenlle.com", true },
{ "navienna.com", true },
{ "navient.com", true },
- { "navitime.me", true },
+ { "navigate-it-services.de", false },
{ "navstevnik.sk", true },
{ "navycs.com", true },
{ "nawir.de", true },
@@ -24941,19 +25397,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nchangfong.com", true },
{ "nchponline.org", true },
{ "ncic.gg", true },
- { "nclvle.co.uk", true },
{ "ncm-malerbetrieb.de", true },
{ "ncsc.gov.uk", true },
{ "ncsccs.com", true },
{ "ncstep.org", true },
+ { "nctx.co.uk", true },
{ "ndarville.com", true },
+ { "ndatc.com", true },
{ "ndbt.com", true },
{ "ndcpolipak.com", true },
{ "ndeoffshore.com", true },
{ "nder.be", true },
{ "ndfa.net", true },
+ { "ndfirefighter.com", true },
{ "ndhlink.com", true },
{ "ndpbrn-research.org", true },
+ { "ndphp.org", true },
+ { "ndpigskin.com", true },
{ "nds-helicopter.de", true },
{ "ndy.sex", true },
{ "ne-on.org", true },
@@ -24969,7 +25429,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nebelheim.de", true },
{ "nebenbeiblog.ch", true },
{ "nebra.io", true },
+ { "nebracy.com", true },
{ "nebul.at", true },
+ { "nebula.exchange", true },
{ "nebulae.co", true },
{ "nebuluxcapital.com", true },
{ "necessaryandproportionate.net", true },
@@ -24990,7 +25452,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "neeerd.org", true },
{ "neel.ch", true },
{ "neemzy.org", true },
- { "neet-investor.biz", true },
{ "nefertitis.cz", true },
{ "neffat.si", true },
{ "neflabs.com", true },
@@ -25040,10 +25501,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "neobits.nl", true },
{ "neocities.org", true },
{ "neoclick.io", true },
- { "neocoding.com", true },
{ "neodrive.ch", true },
{ "neoedresources.org", true },
{ "neoeliteconsulting.com", true },
+ { "neohu.com", true },
{ "neojo.org", true },
{ "neokobe.city", true },
{ "neolaudia.es", true },
@@ -25064,7 +25525,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nepageeks.com", true },
{ "nepal-evolution.org", true },
{ "nephelion.org", true },
- { "nephos.xyz", true },
+ { "nephy.jp", true },
{ "nepovolenainternetovahazardnihra.cz", true },
{ "nepremicninar.com", true },
{ "nepremicnine.click", true },
@@ -25117,7 +25578,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "netflixlife.com", true },
{ "netfog.de", true },
{ "netfuture.ch", true },
- { "netfxharmonics.com", true },
{ "nethackwiki.com", true },
{ "nethask.ru", true },
{ "nethostingtalk.com", true },
@@ -25153,7 +25613,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nettools.link", true },
{ "nettopower.dk", true },
{ "nettoyage.email", true },
- { "nettplusultra-rhone.fr", true },
{ "nettx.co.uk", true },
{ "netulo.com", true },
{ "netvizura.co.uk", true },
@@ -25189,7 +25648,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "neuroethics.com", true },
{ "neurogroove.info", true },
{ "neurolab.no", true },
- { "neuronasdigitales.com", true },
{ "neuropharmacology.com", true },
{ "neurotransmitter.net", true },
{ "neurozentrum-zentralschweiz.ch", true },
@@ -25225,7 +25683,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "newcityinfo.ch", true },
{ "newcitystudio.ch", true },
{ "newcloudwhodis.com", true },
- { "newcreamforface.com", true },
{ "newday.host", true },
{ "newearth.press", true },
{ "newfangledscoop.com", true },
@@ -25239,17 +25696,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "newknd.com", true },
{ "newlifeband.de", true },
{ "newmarketbouncycastlehire.co.uk", true },
- { "newmed.com.br", true },
{ "newmediaone.net", true },
+ { "newmelalife.com", true },
{ "newmovements.net", true },
{ "newmusicjackson.org", true },
{ "newodesign.com", true },
- { "newpathintegratedtherapy.com", true },
{ "newposts.ru", true },
{ "newreleases.io", true },
{ "news47ell.com", true },
{ "newsa2.com", true },
- { "newsaboutgames.de", true },
{ "newserumforskin.com", true },
{ "newsmotor.info", true },
{ "newspsychology.com", true },
@@ -25271,6 +25726,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nextcloud.co.za", true },
{ "nextcloud.com", true },
{ "nextcloud.nerdpol.ovh", true },
+ { "nextclouddarwinkel.nl", true },
{ "nextend.net", true },
{ "nextevolution.co.uk", true },
{ "nextgen.sk", true },
@@ -25279,7 +25735,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nextgreatmess.com", true },
{ "nexthop.jp", true },
{ "nextiot.de", true },
- { "nextlevel-it.co.uk", true },
{ "nextmbta.com", true },
{ "nextme.se", true },
{ "nextnely.com", true },
@@ -25312,7 +25767,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ngasembaru.com", true },
{ "ngc.gov", false },
{ "nghe.net", true },
- { "nginxconfig.com", true },
{ "nginxconfig.io", true },
{ "ngndn.jp", true },
{ "ngvf.de", true },
@@ -25323,7 +25777,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nhgteam.hu", true },
{ "nhimf.org", true },
{ "nhome.ba", true },
- { "nhsolutions.be", true },
{ "nhw.ovh", true },
{ "ni-mate.com", true },
{ "ni.search.yahoo.com", false },
@@ -25344,13 +25797,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nicesco.re", true },
{ "nicestudio.co.il", false },
{ "nichijou.com", true },
+ { "nicholasperkins.io", true },
{ "nicholaspruss.com", true },
{ "nicholasquigley.com", true },
{ "nicholaswilliams.net", true },
{ "nichteinschalten.de", false },
{ "nichthelfer.de", true },
{ "nicic.gov", true },
- { "nickcleans.co.uk", true },
{ "nickcraver.com", true },
{ "nickdekruijk.nl", true },
{ "nickguyver.com", true },
@@ -25365,7 +25818,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nickscomputers.nl", true },
{ "nickserve.com", true },
{ "nickstories.de", true },
- { "nicktheitguy.com", true },
{ "niclasreich.de", true },
{ "nicn.me", true },
{ "nico.st", true },
@@ -25383,7 +25835,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nicolemathew.com", true },
{ "niconico.ooo", true },
{ "niconode.com", false },
- { "nicoobook.com", true },
{ "nicsezcheckfbi.gov", true },
{ "nicul.in", true },
{ "nidro.de", true },
@@ -25426,22 +25877,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nightmoose.org", true },
{ "nightsi.de", true },
{ "nightstand.io", true },
- { "nightwinds.tk", true },
{ "nigt.cf", true },
{ "nihon-no-sake.net", true },
+ { "nii2.org", true },
{ "nijiero-ch.com", false },
{ "nijikata.com", true },
{ "nijm.nl", true },
{ "nikandcara.com", true },
{ "nikao-tech.com", true },
{ "nikavandenbos.nl", true },
- { "niki.ai", true },
{ "nikimix.com", true },
{ "nikkasystems.com", true },
{ "nikkila.me", true },
{ "nikklassen.ca", true },
{ "niklas.pw", true },
- { "niklasanderson.com", true },
{ "niklasbabel.com", true },
{ "nikolasgrottendieck.com", true },
{ "nikomo.fi", false },
@@ -25497,7 +25946,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nitrous-networks.com", true },
{ "nitschinger.at", true },
{ "niu.moe", true },
- { "niva.synology.me", true },
{ "nivi.ca", true },
{ "nix.black", true },
{ "nixonlibrary.gov", true },
@@ -25524,10 +25972,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nlrb.gov", true },
{ "nlt.by", false },
{ "nmd.so", true },
+ { "nmmlp.org", true },
{ "nmnd.de", true },
{ "nmontag.com", true },
{ "nn.cz", true },
- { "nn78.com", true },
{ "nna774.net", true },
{ "nnqc.nl", true },
{ "no-ip.cz", true },
@@ -25554,7 +26002,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nodelab-it.de", true },
{ "nodelia.com", true },
{ "nodesec.cc", true },
- { "nodesturut.cl", true },
{ "nodevops.com", true },
{ "noeatnosleep.me", true },
{ "noedidacticos.com", true },
@@ -25566,6 +26013,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "noez.de", true },
{ "nofrillsdns.com", true },
{ "nogerondier.eu", true },
+ { "nogetime.com", true },
{ "noglobalwarrants.org", true },
{ "nohats.ca", true },
{ "nohkan.fr", true },
@@ -25598,12 +26046,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nonametheme.com", true },
{ "noncombatant.org", true },
{ "noob-box.net", true },
+ { "noobow.me", true },
{ "noobswhatelse.net", true },
{ "noobunbox.net", true },
{ "noodles.net.nz", true },
{ "noodplan.co.za", true },
{ "noodweer.be", true },
{ "noofficewalls.com", true },
+ { "noomist.com", true },
{ "noon-entertainments.com", true },
{ "noop.ch", true },
{ "noordsee.de", true },
@@ -25622,6 +26072,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nordlichter-brv.de", true },
{ "nordmoregatebilklubb.com", true },
{ "nordnetz-hamburg.de", true },
+ { "nordseeblicke.de", true },
{ "nordwal.de", true },
{ "nordwaldzendo.de", true },
{ "noreply.mx", true },
@@ -25633,7 +26084,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "norman-preusser-gmbh.de", true },
{ "normanbauer.com", true },
{ "normandgascon.com", true },
- { "normankranich.de", true },
+ { "noroshi-burger.com", true },
{ "norrkemi.se", true },
{ "norrliden.de", true },
{ "norsewars.com", true },
@@ -25642,6 +26093,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "northbrisbaneapartments.com.au", true },
{ "northconsulting.fr", true },
{ "northcountykiaparts.com", true },
+ { "northdakotahealthnetwork.com", true },
{ "northdevonbouncycastles.co.uk", true },
{ "northeastcdc.org", true },
{ "northeastrodeo.co.uk", true },
@@ -25655,7 +26107,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "northpole.dance", true },
{ "northridgeelectrical.com", true },
{ "northumbriagames.co.uk", true },
- { "northwest-events.co.uk", true },
{ "norys-escape.de", true },
{ "nos-medias.fr", true },
{ "nos-oignons.net", true },
@@ -25664,6 +26115,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nosfermiers.com", true },
{ "noslite.nl", true },
{ "nospoint.cz", true },
+ { "nosproduitsdequalite.fr", true },
{ "nosqlzoo.net", true },
{ "nossasenhora.net", true },
{ "nossasenhoradodesterro.com.br", true },
@@ -25676,7 +26128,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "notacooldomain.com", true },
{ "notadd.com", true },
{ "notallmine.net", true },
- { "notalone.gov", true },
{ "notar-glagowski.com", true },
{ "notar-glagowski.de", true },
{ "notar-peikert.com", true },
@@ -25698,7 +26149,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "notoriousdev.com", true },
{ "notrecourrier.net", true },
{ "notsafefor.work", true },
- { "nottres.com", true },
{ "noudjalink.nl", true },
{ "noustique.com", true },
{ "nova-dess.ch", true },
@@ -25707,8 +26157,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nova.live", true },
{ "novabench.com", true },
{ "novacoast.com", false },
- { "novadermis.es", true },
{ "novafreixo.pt", true },
+ { "novascan.net", true },
{ "novawave.ca", true },
{ "nove.city", true },
{ "noveciti.com", true },
@@ -25724,11 +26174,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "novgorod-avia.ru", true },
{ "novilaw.com", true },
{ "novilidery.com", true },
+ { "novinivo.com", true },
{ "novodiegomaia.com.br", true },
{ "novojet.cl", true },
{ "novoresume.com", false },
{ "novosibavia.ru", true },
{ "novurania.com", true },
+ { "nowall.online", true },
{ "nowhere.dk", true },
{ "nowitzki.me", true },
{ "nowlas.org", true },
@@ -25742,6 +26194,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "npath.de", true },
{ "npcrcss.org", true },
{ "npmcdn.com", true },
+ { "npregion.org", true },
{ "npsas.org", true },
{ "npw.net", true },
{ "nqesh.com", true },
@@ -25762,7 +26215,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nscnet.jp", true },
{ "nsfw-story.com", true },
{ "nshipster.cn", true },
+ { "nshipster.co.kr", true },
{ "nshipster.com", true },
+ { "nshipster.es", true },
{ "nsm.ee", true },
{ "nsm.stat.no", true },
{ "nso.ie", true },
@@ -25777,6 +26232,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nte.email", true },
{ "nth.sh", true },
{ "nti.de", true },
+ { "ntia.gov", true },
{ "ntotten.com", true },
{ "ntppool.org", false },
{ "ntwt.us", true },
@@ -25794,6 +26250,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nuamooreaindonesia.com", true },
{ "nubella.com.au", true },
{ "nubu.at", true },
+ { "nuclea.id", true },
{ "nuclea.site", true },
{ "nuclearcat.com", true },
{ "nucleuscore.org", true },
@@ -25847,6 +26304,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nutri-spec.me", true },
{ "nutricaovegana.com", true },
{ "nutriciametabolics-shop.de", true },
+ { "nutridieta.com", true },
{ "nutripedia.gr", true },
{ "nutrishop.com", true },
{ "nutrivisa.com.br", true },
@@ -25882,6 +26340,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "nycoyote.org", true },
{ "nydig.com", true },
{ "nydnxs.com", true },
+ { "nyghtus.net", true },
{ "nyhaoyuan.net", true },
{ "nyiad.edu", true },
{ "nyip.co.uk", true },
@@ -25952,6 +26411,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "occentus.net", true },
{ "occmon.net", true },
{ "occonnections.org", true },
+ { "occupational-therapy-colleges.com", true },
{ "ocd2016.com", true },
{ "ocdadmin.com", true },
{ "oceandns.eu", true },
@@ -25978,8 +26438,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ocsr.nl", true },
{ "octarineparrot.com", true },
{ "octav.name", false },
+ { "octo.im", true },
{ "octohedralpvp.tk", true },
- { "octohost.net", true },
{ "octolopagon.games", true },
{ "octopus-agents.com", true },
{ "octosniff.net", true },
@@ -25995,6 +26455,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oddsandevensbookkeeping.ca", true },
{ "oddtime.net", true },
{ "odensc.me", true },
+ { "odhosc.ca", true },
{ "odifi.com", true },
{ "odinseye.net", true },
{ "odoo.co.th", true },
@@ -26017,6 +26478,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oenings.eu", true },
{ "ofcampuslausanne.ch", true },
{ "ofda.gov", true },
+ { "ofertasadsl.com", true },
{ "offandonagain.org", true },
{ "offbyinfinity.com", true },
{ "offenekommune.de", true },
@@ -26121,6 +26583,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oleodecopayba.com.br", true },
{ "oles-hundehaus.de", true },
{ "olfnewcastle.com", true },
+ { "olfsecane.org", true },
{ "olgiati.org", true },
{ "olgui.net", true },
{ "olgun.eu", true },
@@ -26139,7 +26602,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oliverniebuhr.de", true },
{ "oliverspringer.eu", true },
{ "olivierberardphotographe.com", true },
- { "olivierlemoal.fr", true },
{ "olivierpieters.be", true },
{ "oliviervaillancourt.com", true },
{ "olivlabs.com", true },
@@ -26161,10 +26623,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "olympic-research.com", true },
{ "om1.com", true },
{ "omanko.porn", true },
- { "omarsuniagamusic.ga", true },
{ "omdesign.cz", true },
{ "omegahosting.net", true },
{ "omegathermoproducts.nl", true },
+ { "omeopatiadinamica.it", true },
{ "omertabeyond.com", true },
{ "omertabeyond.net", true },
{ "ometepeislandinfo.com", true },
@@ -26175,6 +26637,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "omifind.com", true },
{ "omitech.co.uk", true },
{ "omlmetal.co.jp", true },
+ { "omniaclubs.com", true },
{ "omniasig.ro", true },
{ "omniasl.com", true },
{ "omniatv.com", true },
@@ -26205,6 +26668,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ond-inc.jp", true },
{ "ondcp.gov", true },
{ "onderwijstransparant.nl", true },
+ { "ondevamosjantar.com", true },
{ "ondrej.org", true },
{ "ondrejhoralek.cz", true },
{ "one---line.com", true },
@@ -26224,6 +26688,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "onedrive.live.com", false },
{ "onee3.org", true },
{ "onefour.ga", false },
+ { "onegoodthingbyjillee.com", true },
{ "oneheartbali.church", true },
{ "oneidentity.me", true },
{ "oneiroi.co.uk", true },
@@ -26242,19 +26707,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "onestopcastles.co.uk", true },
{ "onetcenter.org", true },
{ "onetcodeconnector.org", true },
+ { "onetech.it", true },
{ "onetime.info", true },
{ "onetonline.org", true },
{ "oneway.ga", true },
{ "onewaymail.com", true },
{ "oneweb.hu", true },
{ "onfarma.it", true },
- { "ongea.io", true },
{ "onhistory.co.uk", true },
{ "onhub1.com", true },
{ "oni.nl", true },
{ "onice.ch", true },
{ "onionbot.me", true },
- { "onionplay.live", true },
{ "onionplay.org", true },
{ "onionscan.org", true },
{ "oniria.ch", true },
@@ -26279,7 +26743,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "onlinecasino.vlaanderen", true },
{ "onlinecensorship.org", true },
{ "onlinecollegeessay.com", true },
- { "onlinecorners.com", true },
{ "onlinefashion.it", true },
{ "onlineinfographic.com", true },
{ "onlinekmc.com", true },
@@ -26313,6 +26776,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ontdekhetzelf.nu", true },
{ "onthebriteside.com", true },
{ "ontras.com", false },
+ { "ontsc.com", true },
+ { "ontservice.com", true },
{ "ontsnappingskamer.nl", true },
{ "onurer.net", true },
{ "onvey.io", true },
@@ -26342,6 +26807,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "open-bs.com", true },
{ "open-bs.ru", true },
{ "open-desk.org", true },
+ { "open-domotics.info", true },
{ "open-freax.fr", true },
{ "open-gaming.net", true },
{ "open-infrastructure.net", true },
@@ -26350,9 +26816,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "open-sauce-recipes.co.uk", true },
{ "open-source.gr", true },
{ "open.gl", true },
- { "openacademies.com", true },
{ "openacte.ch", true },
- { "openas.org", true },
{ "openbankproject.com", true },
{ "openbayes.com", true },
{ "openbeecloud.com", true },
@@ -26372,11 +26836,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "opengovpartnership.de", true },
{ "openings.ninja", true },
{ "openintelligence.uk", true },
- { "openiocdb.com", true },
{ "openitforum.pl", true },
{ "openkim.org", true },
{ "openkvk.nl", true },
- { "openmirrors.cf", true },
+ { "openmirrors.ml", true },
{ "openmtbmap.org", true },
{ "opennippon.com", true },
{ "opennippon.ru", true },
@@ -26388,6 +26851,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "openrealestate.co", true },
{ "openresty.com", true },
{ "openreview.net", true },
+ { "openroademail.com", true },
{ "openruhr.de", true },
{ "openscreen.lu", true },
{ "opensource-cms.nl", true },
@@ -26417,8 +26881,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oplop.appspot.com", true },
{ "opoleo.com", false },
{ "oportho.com.br", true },
- { "oportunidadesemfoco.com.br", true },
- { "opp.ag", true },
{ "oppaiti.me", true },
{ "oppejoud.ee", true },
{ "opportunis.me", true },
@@ -26455,6 +26917,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "optmos.at", true },
{ "optometryscotland.org.uk", true },
{ "optoutday.de", true },
+ { "opure.ml", true },
{ "opure.ru", true },
{ "opus-codium.fr", true },
{ "oraculum.cz", true },
@@ -26464,6 +26927,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "orangefinanse.com.pl", true },
{ "orangejetpack.com", true },
{ "orangenbaum.at", true },
+ { "oranges.tokyo", true },
+ { "orangetravel.eu", true },
{ "orangutan-appeal.org.uk", true },
{ "orbu.net", true },
{ "orca.pet", true },
@@ -26506,6 +26971,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "orimex-mebel.ru", true },
{ "orion-universe.com", true },
{ "orioncokolada.cz", true },
+ { "oriondynamic.be", true },
{ "orionfinancialservices.com", true },
{ "oriongames.eu", true },
{ "orkestar-krizevci.hr", true },
@@ -26514,6 +26980,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "orleika.io", true },
{ "orlives.de", false },
{ "ormer.nl", true },
+ { "orocojuco.com", true },
{ "orovillelaw.com", true },
{ "orro.ro", true },
{ "orrs.de", true },
@@ -26523,9 +26990,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "orthotictransfers.com", true },
{ "ortlepp.eu", true },
{ "ortodonciaian.com", true },
+ { "orum.in", true },
{ "orwell1984.today", true },
{ "oryva.com", true },
- { "orz.uno", true },
{ "os-chrome.ru", true },
{ "os-s.net", true },
{ "os-t.de", true },
@@ -26542,7 +27009,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "oscarvk.ch", true },
{ "oscloud.com", true },
{ "osepideasthatwork.org", true },
- { "osereso.tn", true },
{ "oses.mobi", true },
{ "oshayr.com", true },
{ "oshell.me", true },
@@ -26562,7 +27028,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "osomjournal.org", true },
{ "ospf.sk", true },
{ "ospree.me", true },
- { "osquery.io", true },
{ "ostan-collections.net", true },
{ "osterkraenzchen.de", true },
{ "ostimwebyazilim.com", true },
@@ -26575,17 +27040,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "osx86spain.com", true },
{ "osxentwicklerforum.de", true },
{ "oszri.hu", true },
- { "otako.pl", true },
{ "otakubox.de", true },
{ "otakurepublic.com", true },
{ "otakurumi.de", true },
{ "otakuyun.com", true },
- { "otchecker.com", true },
{ "otellio.com", true },
{ "otellio.de", true },
{ "otellio.it", true },
{ "oticasaopaulo.com.br", true },
{ "oticasvisao.net.br", true },
+ { "otmo7.com", true },
+ { "otoblok.com", true },
+ { "otokiralama.name.tr", true },
{ "otorrino.pt", true },
{ "otoy.com", true },
{ "otoya.space", true },
@@ -26594,7 +27060,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "otrm.de", true },
{ "otsfreestyle.jp", true },
{ "otsu.beer", true },
- { "ottoproject.io", true },
{ "ottoversand.at", true },
{ "otus-magnum.com", true },
{ "otvaracie-hodiny.sk", true },
@@ -26612,9 +27077,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ourcloud.at", true },
{ "ourdocuments.gov", true },
{ "ourevents.net", true },
+ { "ourmaster.org", true },
{ "ouruglyfood.com", true },
{ "ourwedding.xyz", true },
{ "ourworldindata.org", true },
+ { "out-of-scope.de", true },
{ "outdoorfurniture.ie", true },
{ "outdoorimagingportal.com", true },
{ "outdoorlightingagoura.com", true },
@@ -26641,6 +27108,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "outpostinfo.com", true },
{ "outsideconnections.com", true },
{ "outsiders.paris", true },
+ { "ovabag.com", true },
{ "ovelhaostra.com", true },
{ "overalglas.nl", true },
{ "overamsteluitgevers.nl", true },
@@ -26657,7 +27125,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "overthecloud.it", true },
{ "overthinkingit.com", true },
{ "overtrolls.de", true },
- { "overture.london", true },
{ "overwall.org", true },
{ "overzicht.pro", true },
{ "overzicht.ws", true },
@@ -26666,6 +27133,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ovnrain.com", true },
{ "ovpn.to", true },
{ "ovvy.net", false },
+ { "owall.ml", true },
{ "owapi.net", true },
{ "owennelson.co.uk", true },
{ "owid.cloud", true },
@@ -26677,15 +27145,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "owlishmedia.com", true },
{ "own3d.ch", true },
{ "ownc.at", true },
+ { "owncloud.ch", true },
{ "ownmay.com", true },
{ "oxborrow.ca", true },
{ "oxelie.com", true },
{ "oxo.cloud", true },
- { "oxygaming.com", true },
{ "oxygin.net", true },
{ "oxytocin.org", true },
+ { "oxzeth3sboard.com", true },
+ { "oyashirosama.tokyo", true },
{ "oyosoft.fr", true },
{ "oyosoft.net", true },
+ { "oysterworldwide.com", true },
{ "ozark.be", true },
{ "oznamovacipovinnost.cz", true },
{ "ozonitron.com", true },
@@ -26712,11 +27183,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paas-inf.net", true },
{ "paass.net", true },
{ "paazmaya.fi", true },
+ { "pablofain.com", true },
{ "pabuzo.vn", true },
{ "pacatlantic.com", true },
{ "pacco.com.br", true },
{ "pace.car", true },
- { "paceda.nl", true },
{ "pacelink.de", true },
{ "pacifco.com", true },
{ "pacificcashforcars.com.au", true },
@@ -26732,7 +27203,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "packagingproject.management", true },
{ "packagist.org", false },
{ "packaware.com", true },
- { "packer.io", true },
{ "packetdigital.com", true },
{ "packetlinux.com", true },
{ "packshot-creator.com", true },
@@ -26742,6 +27212,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "padberx-marketing-consultants.de", true },
{ "paddy.rocks", true },
{ "padianda.com", true },
+ { "padkit.org", true },
+ { "padovani.de", true },
{ "padpilot.co", true },
{ "padrepio.in", true },
{ "padron.com.es", true },
@@ -26759,7 +27231,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pageantsnews.com", false },
{ "pagedesignhub.com", true },
{ "pagedesignpro.com", true },
- { "pagedesignshop.com", true },
{ "pagedesignweb.com", true },
{ "pagefulloflies.io", true },
{ "pageperform.com", true },
@@ -26792,12 +27263,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paktolos.net", true },
{ "palabr.as", true },
{ "palapadev.com", true },
+ { "palariviera.com", true },
{ "palatin.at", true },
{ "palava.tv", true },
{ "palavatv.com", true },
{ "palazzo.link", true },
{ "palazzo.work", true },
- { "paleolowcarb.de", true },
{ "paleotraining.com", true },
{ "palladium46.com", true },
{ "pallas.in", true },
@@ -26828,13 +27299,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "panda-community.com", true },
{ "panda.tf", true },
{ "pandemicflu.gov", true },
+ { "pandkonijn.nl", true },
{ "pandoraflora.com", true },
{ "pandymic.com", true },
{ "paneldewelopera.pl", true },
{ "paneu.de", true },
{ "panic.tk", true },
{ "panier-legumes.bio", true },
+ { "paniyanovska.ua", true },
{ "panj.ws", true },
+ { "panjee.com", true },
{ "panjee.fr", true },
{ "panlex.org", true },
{ "panmetro.com", true },
@@ -26878,6 +27352,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "papiermeteenverhaal.nl", true },
{ "papierniczy.eu", true },
{ "papillon-events.be", true },
+ { "papion.it", true },
{ "papotage.net", true },
{ "paprikas.fr", true },
{ "paraborsa.net", true },
@@ -26887,6 +27362,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paradigi.com.br", true },
{ "paradise-engineer.com", true },
{ "paradise-engineering.com", true },
+ { "paradise-travel.net", true },
{ "paradiselost.com", true },
{ "paradoxdesigns.org", true },
{ "paragonie.com", false },
@@ -26895,11 +27371,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paranoidcrypto.com", true },
{ "paranoidmode.com", true },
{ "paranoidpenguin.net", true },
- { "paranoxer.hu", true },
{ "parasitologyclub.org", true },
{ "paratlan.hu", true },
{ "paratxt.org", true },
- { "parcelbroker.co.uk", true },
+ { "parcelbroker.co.uk", false },
{ "parchcraftaustralia.com", true },
{ "parckwart.de", true },
{ "parcon.it", true },
@@ -26939,15 +27414,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "parsemail.org", true },
{ "parser.nu", true },
{ "parsonsfamilyhomes.com", true },
- { "partage.ovh", true },
{ "partecipa.tn.it", true },
{ "parthkolekar.me", true },
- { "participatorybudgeting.de", true },
- { "participatorybudgeting.info", true },
{ "partijhandel.website", true },
{ "partijtjevoordevrijheid.nl", false },
{ "partiono.com", true },
- { "partiwatch.com", true },
{ "partner.sh", true },
{ "partnerbeam.com", true },
{ "partnermobil.de", true },
@@ -27075,6 +27546,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "patriksima.cz", true },
{ "patriksimek.cz", true },
{ "patriotstationatchalfont.com", true },
+ { "patrocinio.com.br", true },
{ "patrz.eu", true },
{ "patsch-photography.de", true },
{ "patsyforyou.ch", true },
@@ -27085,6 +27557,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paudley.ca", true },
{ "paudley.com", true },
{ "paudley.org", true },
+ { "paul-barton.co.uk", true },
{ "paul-bronski.de", true },
{ "paul.reviews", true },
{ "pauladamsmith.com", true },
@@ -27159,7 +27632,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "paytonmoledor.com", true },
{ "payupay.ru", true },
{ "payzang.com", true },
- { "payzwin.com", true },
{ "pb.ax", false },
{ "pback.se", true },
{ "pbosquet.com", true },
@@ -27189,10 +27661,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pclaeuft.de", true },
{ "pclob.gov", true },
{ "pcloud.com", true },
- { "pcmedia.co.nz", true },
{ "pcmkrembangan.or.id", true },
{ "pcmr.info", true },
{ "pcnotdienst-oldenburg-rastede.de", true },
+ { "pcreparatiehardenberg.nl", true },
{ "pcrypt.org", true },
{ "pcsetting.com", true },
{ "pctonic.net", true },
@@ -27239,7 +27711,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pedroventura.com", false },
{ "peeekaaabooo.com", true },
{ "peekier.com", true },
- { "peen.ch", true },
{ "peep.gq", true },
{ "peercraft.at", true },
{ "peercraft.be", true },
@@ -27265,6 +27736,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "peerigon.com", true },
{ "peername.com", true },
{ "peernode.net", true },
+ { "peertube.social", true },
{ "peervpn.net", true },
{ "peerweb.com", true },
{ "peetah.com", true },
@@ -27304,6 +27776,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pensador.com", true },
{ "pensador.info", true },
{ "pensioenfonds-ey.nl", true },
+ { "pension-waldesruh.de", true },
{ "pensionpilot.ca", true },
{ "penslabyrinth.com", true },
{ "pentandra.com", true },
@@ -27315,7 +27788,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pentoo.ch", true },
{ "penz.media", true },
{ "peoplelikemeapp.com", true },
- { "peoplesbankal.com", true },
{ "peoplesdecade.org", true },
{ "peoplesguardian.org", true },
{ "pepemodelismo.com.br", true },
@@ -27340,7 +27812,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "perfektesgewicht.com", true },
{ "perfektesgewicht.de", true },
{ "performancehealth.com", true },
- { "performancesantafe.org", true },
+ { "performing-art-schools.com", true },
{ "perfumeaz.com", true },
{ "perfumes.com.br", true },
{ "periscope.tv", true },
@@ -27386,7 +27858,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "petbooking.it", true },
{ "petcarvers.com", true },
{ "petdesign.pet", true },
- { "peteboc.com", true },
{ "petech.ro", true },
{ "petelew.is", true },
{ "peter.org.ua", true },
@@ -27419,9 +27890,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "petpower.eu", true },
{ "petr.as", true },
{ "petrasestakova.cz", true },
+ { "petravdbos.nl", true },
{ "petresort.pt", true },
+ { "petroleum-schools.com", true },
{ "petroscand.eu", true },
{ "petrostathis.com", true },
+ { "petrotranz.com", true },
{ "petrpikora.com", true },
{ "petrucciresidential.com", true },
{ "petruzz.net", true },
@@ -27451,7 +27925,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pfmeasure.com", true },
{ "pfo.io", true },
{ "pfotentour-berlin.de", true },
- { "pfrost.me", true },
{ "pfudor.tk", true },
{ "pg-forum.de", true },
{ "pg-mana.net", true },
@@ -27471,6 +27944,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pharmaabsoluta.com.br", true },
{ "pharmaboard.de", true },
{ "pharmaboard.org", true },
+ { "pharmacie-fr.org", false },
{ "pharmacieplusfm.ch", true },
{ "pharmafoto.ch", true },
{ "pharmaphoto.ch", true },
@@ -27489,6 +27963,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "phcimages.com", true },
{ "phcorner.net", true },
{ "phdhub.it", true },
+ { "phelx.de", true },
{ "phenixairsoft.com", true },
{ "phget.com", true },
{ "phi-works.com", true },
@@ -27517,6 +27992,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "philna.sh", true },
{ "philosoftware.com.br", true },
{ "philosopherswool.com", true },
+ { "philosophy-colleges.com", true },
{ "philosophyguides.org", true },
{ "philphonic.de", true },
{ "philslab.ninja", true },
@@ -27529,7 +28005,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "phocean.net", true },
{ "phoenixlogan.com", true },
{ "phone-service-center.de", true },
- { "phonix-company.fr", true },
{ "phormance.com", true },
{ "phosagro.biz", false },
{ "phosagro.com", false },
@@ -27557,8 +28032,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "phparcade.com", true },
{ "phpartners.org", true },
{ "phpbbchinese.com", true },
- { "phpdistribution.com", true },
{ "phpdorset.co.uk", true },
+ { "phpinfo.in.th", true },
{ "phpkari.cz", true },
{ "phpliteadmin.org", true },
{ "phpmyadmin.net", true },
@@ -27568,7 +28043,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "phra.gs", true },
{ "phrive.space", true },
{ "phryanjr.com", false },
- { "phryneas.de", true },
{ "phuket-idc.com", true },
{ "phuket-idc.de", true },
{ "phunehehe.net", true },
@@ -27579,6 +28053,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "physicalist.com", true },
{ "physicaltherapist.com", false },
{ "physicpezeshki.com", true },
+ { "physics-schools.com", true },
{ "physiotherapie-seiwald.de", true },
{ "physiovesenaz.ch", true },
{ "pi-box.ml", true },
@@ -27589,11 +28064,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pianetaottica.com", true },
{ "pianetaottica.it", true },
{ "pianetatatuaggi.it", true },
- { "pianomover.co.uk", true },
{ "pianyigou.com", true },
{ "piatabrasil.com.br", true },
{ "piboubes.me", true },
- { "pic.gov", true },
+ { "pic.gov", false },
{ "pic.sr", true },
{ "pic2map.com", true },
{ "picchietti.io", true },
@@ -27630,7 +28104,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pieland.eu", true },
{ "pieldenaranja.com", true },
{ "piem.org", true },
- { "pieperhome.de", true },
{ "pieq.eu", true },
{ "pieq.eu.org", true },
{ "pier28.com", true },
@@ -27657,6 +28130,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pileofgarbage.net", true },
{ "piliszek.net", true },
{ "pill.id", true },
+ { "pilot-colleges.com", true },
{ "pilot.co", true },
{ "pilotgrowth.com", true },
{ "pilsoncontracting.com", true },
@@ -27680,12 +28154,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pinkapple.com", true },
{ "pinkbike.com", true },
{ "pinkbikecycle.com", true },
- { "pinkcasino.co.uk", true },
{ "pinkerton.io", true },
{ "pinkladyapples.co.uk", true },
{ "pinklecfest.org", true },
{ "pinklittlenotebook.com", true },
{ "pinkwalk.co.nz", true },
+ { "pinkyf.com", false },
{ "pinkylam.me", true },
{ "pinnacleallergy.net", true },
{ "pinnaclelife.co.nz", true },
@@ -27731,6 +28205,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pirateproxy.tf", true },
{ "pirateproxy.tv", true },
{ "pirates-comic.com", true },
+ { "pirates.click", true },
{ "piratesforums.co", true },
{ "pircher.co.uk", true },
{ "pires.ovh", true },
@@ -27744,6 +28219,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pissblau.com", true },
{ "pissflaps.co.uk", true },
{ "pisupp.ly", true },
+ { "pitbullsecuritysolutions.ca", true },
{ "pitchpinecapital.com", true },
{ "pitchupp.com", true },
{ "pitfire.io", true },
@@ -27755,10 +28231,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pix5.de", true },
{ "pixabay.com", true },
{ "pixe2019.org", true },
+ { "pixel-kraft.de", true },
{ "pixel.facebook.com", false },
{ "pixel.google.com", true },
{ "pixelbash.de", true },
- { "pixelcubed.com", true },
{ "pixelfou.com", true },
{ "pixelminers.net", true },
{ "pixelpirat.ch", true },
@@ -27770,6 +28246,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pixiv.cat", true },
{ "pixiv.moe", true },
{ "pixivimg.me", true },
+ { "pixlfox.com", true },
{ "pixloc.fr", true },
{ "pizala.de", true },
{ "pizza-show.fr", true },
@@ -27785,7 +28262,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pizzeria-mehrhoog.de", true },
{ "pizzeriaamadeus.hr", true },
{ "pizzeriacolore.com", true },
- { "pj009.com", true },
{ "pj539999.com", true },
{ "pjentertainments.co.uk", true },
{ "pjili.com", true },
@@ -27816,9 +28292,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "plainjs.com", true },
{ "plainmark.com", true },
{ "plaintech.net.au", true },
- { "plaintray.com", true },
{ "plaisirdumouvement.com", true },
{ "plan-immobilier.fr", true },
+ { "plan-it-events.de", true },
{ "planboardapp.com", true },
{ "planecon.nz", true },
{ "planer.me", true },
@@ -27865,6 +28341,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "plasticsurgeryartist.com", true },
{ "plasticsurgerynola.com", true },
{ "plasticsurgeryservices.com", true },
+ { "plastiflex.it", true },
{ "plastovelehatko.cz", true },
{ "platformadmin.com", true },
{ "platinumexpress.com.ar", true },
@@ -27910,13 +28387,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "plesse.pl", true },
{ "plexa.de", true },
{ "plexhome13.ddns.net", true },
- { "plexi.dyndns.tv", true },
{ "plexmark.tk", true },
{ "plextv.de", true },
{ "pliosoft.com", true },
{ "plissee-experte.de", true },
{ "plitu.de", true },
- { "plixer.com", true },
{ "plny.eu", true },
{ "plob.org", true },
{ "plochka.bg", true },
@@ -27943,7 +28418,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "plumlocosoft.com", true },
{ "plumnet.ch", true },
{ "plumpie.net", false },
- { "plumplat.com", true },
{ "plur.com.au", true },
{ "plural.cafe", true },
{ "plurr.me", true },
@@ -27994,7 +28468,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pmsf.eu", true },
{ "pmsfdev.com", true },
{ "pmt-documenten.nl", true },
- { "pn.id.lv", true },
{ "pnakosoft.com", true },
{ "pnakosoft.com.au", true },
{ "pneu01.fr", true },
@@ -28058,6 +28531,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pole-emotion.ch", true },
{ "poleacademie.com", true },
{ "poles4pilots.com", true },
+ { "police-schools.com", true },
{ "policedriver.com", true },
{ "policereferencecheck.com", true },
{ "policesromandesrecrutement.ch", true },
@@ -28080,6 +28554,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "polit.im", true },
{ "politic.org.ua", true },
{ "politicachubut.com.ar", true },
+ { "political-science-schools.com", true },
{ "politiezoneriho.be", true },
{ "politik-bei-uns.de", true },
{ "polizeiwallis.ch", true },
@@ -28130,7 +28605,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ponyfoo.com", true },
{ "ponzi.life", true },
{ "poodlefan.net", true },
- { "pookl.com", true },
{ "poolspondsandwaterscapes.com", true },
{ "poolvilla-margarita.net", false },
{ "poon.io", true },
@@ -28153,13 +28627,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "porg.es", true },
{ "pork.org.uk", true },
{ "porkel.de", true },
+ { "pornbay.eu", true },
+ { "porncandi.com", true },
+ { "porndragon.net", true },
{ "pornfacefinder.com", false },
+ { "pornflare.net", true },
+ { "porngay.co", true },
{ "pornhubhd.biz", true },
{ "porniwi.com", true },
{ "pornloupe.com", true },
+ { "pornmega.net", true },
{ "pornofilmovi.us", true },
{ "pornomens.be", true },
+ { "pornshop.biz", true },
{ "pornspider.to", true },
+ { "pornstop.net", true },
+ { "pornsuper.net", true },
+ { "porny.xyz", true },
{ "porpcr.com", true },
{ "pors-sw.cz", true },
{ "port.im", true },
@@ -28171,10 +28655,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "portablespeakersfinder.com", true },
{ "portailevangelique.ca", true },
{ "portal.tirol.gv.at", true },
+ { "portalcarapicuiba.com", true },
{ "portalcarriers.com", true },
{ "portalcentric.net", true },
{ "portalkla.com.br", true },
- { "portalzine.de", true },
{ "portamiinpista.it", true },
{ "porte.roma.it", true },
{ "portercup.com", true },
@@ -28195,6 +28679,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "posalji.me", true },
{ "posaunenchor-senden.de", true },
{ "posbank.co.uk", true },
+ { "poschtiliste.ch", true },
{ "poseidonwaterproofing.com", true },
{ "poshcastles.co.uk", true },
{ "poshlashes.se", true },
@@ -28209,7 +28694,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "post-darwinism.com", true },
{ "post.com.ar", true },
{ "post.io", true },
- { "post.we.bs", true },
{ "postal.dk", true },
{ "postal3.es", true },
{ "postblue.info", true },
@@ -28227,6 +28711,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "postn.eu", true },
{ "postpot.co.kr", true },
{ "posttigo.com", true },
+ { "postura-corretta.it", true },
{ "posyperfume.com", true },
{ "potatiz.com", true },
{ "potatofrom.space", true },
@@ -28242,7 +28727,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "potrillionaires.com", true },
{ "potterscraftcider.com", true },
{ "pottersheartministry.org", true },
- { "pottreid.com", true },
+ { "pottreid.com", false },
{ "pottshome.co.uk", true },
{ "potworowski.de", true },
{ "potzwonen.nl", true },
@@ -28262,11 +28747,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "power-meter.cc", true },
{ "power-tools24.com", true },
{ "powerball.shop", true },
+ { "powerblanket.com", true },
{ "powercloud.technology", true },
{ "powerdent.net.br", true },
{ "poweredbyiris.nl", true },
{ "poweredbypurdy.com", true },
{ "powerfortunes.com", true },
+ { "powerinboxperformance.com", true },
{ "powermatic7.com", true },
{ "powermeter.at", true },
{ "powermint.de", true },
@@ -28276,9 +28763,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "powersergdatasystems.com", true },
{ "powersergholdings.com", true },
{ "powersergthisisthetunnelfuckyouscott.com", true },
- { "powersergthisisthewebsitefuckyouscott.com", true },
{ "powersergusercontent.com", true },
- { "powertothebuilder.com", true },
{ "powerwellness-korecki.de", true },
{ "pozemedicale.org", true },
{ "pozlife.net", true },
@@ -28300,9 +28785,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ppy.sh", true },
{ "pr.search.yahoo.com", false },
{ "pr1sm.com", true },
- { "pr2studio.com", true },
{ "prac.to", true },
{ "pracowniatkanin.com", true },
+ { "practicalprogrammer.tech", true },
{ "practiceflow.nl", true },
{ "practicepanther.com", true },
{ "practo.com", true },
@@ -28313,17 +28798,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "praguepsychology.com", true },
{ "praguepsychology.cz", true },
{ "pragueswim.cz", true },
+ { "praha-9.eu", true },
{ "prajwalkoirala.com", true },
{ "prakhar.uk", true },
{ "prakharprasad.com", true },
{ "praktijkdevecht.nl", true },
{ "praktijkpassepartout.nl", true },
+ { "prashchar.uk", true },
+ { "pratopronto.org", true },
+ { "pratorotoli.it", true },
{ "praxino.de", true },
{ "praxis-dingeldey.de", true },
{ "praxis-familienglueck.de", true },
{ "praxis-odermath.de", true },
{ "prayerrequest.com", true },
- { "prazeresdavida.com.br", true },
{ "prazynka.pl", true },
{ "prc-newmedia.com", true },
{ "prc.gov", true },
@@ -28333,14 +28821,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "preciseassemblies.com", true },
{ "precision.st", true },
{ "precisiondigital-llc.com", true },
+ { "precisionmachineservice.com", true },
{ "precode.eu", true },
{ "predoiu.ro", true },
{ "prefix.eu", true },
- { "pregono.com", true },
{ "pregunteleakaren.gov", true },
{ "preigu.de", true },
{ "preis-alarm.info", true },
{ "preis-alarm.org", true },
+ { "preload.link", true },
{ "preloaded-hsts.badssl.com", true },
{ "prelogica.com.br", true },
{ "preludes.org", true },
@@ -28362,21 +28851,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "premiumcredit.am", true },
{ "premiumweb.co.id", true },
{ "premiumwebdesign.it", true },
+ { "premtech.nl", true },
{ "prenatalgeboortekaartjes.nl", true },
{ "prepaid-cards.xyz", true },
{ "prepaid-voip.nl", true },
{ "prepaidkredietkaart.be", true },
{ "prepare-job-hunting.com", true },
- { "preposted.com", true },
{ "presbee.com", true },
{ "presbvm.org", true },
+ { "presbyterian-colleges.com", true },
{ "prescotonline.co.uk", true },
{ "present-m.com", true },
- { "presentesdegrife.com.br", true },
{ "president.bg", true },
{ "prespanok.sk", true },
{ "pressakey.com", true },
- { "pressakey.de", true },
{ "presscenter.jp", true },
{ "pressertech.com", true },
{ "presses.ch", true },
@@ -28385,7 +28873,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pressrush.com", true },
{ "pressup.it", true },
{ "pressureradio.com", true },
- { "prestburyscouts.org.uk", true },
{ "prestige-car-location.ch", true },
{ "prestige-portal.com", true },
{ "prestigebouncycastles.co.uk", true },
@@ -28397,6 +28884,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pretix.eu", true },
{ "pretrialservices.gov", true },
{ "pretty.hu", true },
+ { "prettygirlcheats.com", true },
{ "prettynode.com", true },
{ "pretwolk.nl", true },
{ "pretzelx.com", true },
@@ -28405,6 +28893,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "priceremoval.net", true },
{ "pricesniffer.co", true },
{ "prideindomination.com", true },
+ { "pridetechdesign.com", false },
{ "prielwurmjaeger.de", true },
{ "primaconsulting.net", true },
{ "primalbase.com", true },
@@ -28413,8 +28902,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "primewho.org", true },
{ "primoloyalty.com", true },
{ "primorus.lt", true },
- { "primotilesandbathrooms.co.uk", false },
- { "princeagency.com", true },
+ { "princesparktouch.com", true },
{ "princessefoulard.com", true },
{ "principalsexam.com", true },
{ "principalship.net", true },
@@ -28430,6 +28918,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "printeknologies.com", true },
{ "printerleasing.be", true },
{ "printf.de", true },
+ { "printler.com", true },
{ "printmet.com", true },
{ "printus.de", true },
{ "prior-it.be", true },
@@ -28483,6 +28972,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "privatepokertour.com", true },
{ "privatepropertymallorca.com", true },
{ "privatestatic.com", false },
+ { "privatevoid.net", true },
{ "privatewolke.com", true },
{ "privatfrei.de", true },
{ "privatpatient-krankenhaus.de", true },
@@ -28490,7 +28980,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "privea.fr", true },
{ "privelust.nl", true },
{ "priverify.com", true },
- { "privu.me", true },
{ "privy-staging.com", true },
{ "privy.com", true },
{ "prjktruby.com", false },
@@ -28514,7 +29003,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "probiv.biz", true },
{ "probiv.cc", true },
{ "procarservices.com", true },
- { "procens.us", true },
{ "procensus.com", true },
{ "procert.ch", true },
{ "processesinmotion.com", true },
@@ -28539,7 +29027,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "productboard.com", true },
{ "productdesignsoftware.com.au", true },
{ "production.vn", true },
- { "productived.net", false },
{ "productlondon.com", true },
{ "productoinnovador.com", true },
{ "productpeo.pl", true },
@@ -28569,6 +29056,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "progenda.be", true },
{ "progenitor.space", true },
{ "progeon.nl", true },
+ { "progettograjau.com", true },
{ "progg.no", true },
{ "proggersession.com", true },
{ "proggersession.de", true },
@@ -28590,7 +29078,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "projectarmy.net", false },
{ "projectblackbook.us", true },
{ "projectborealisgitlab.site", false },
- { "projectcastle.tech", true },
{ "projectforge.org", true },
{ "projectlinuseasttn.org", true },
{ "projectnom.com", true },
@@ -28633,6 +29120,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "propagandism.org", true },
{ "propagationtools.com", true },
{ "propepper.net", true },
+ { "propermatches.com", true },
{ "properticons.com", true },
{ "property-catalogue.eu", true },
{ "propertygroup.pl", true },
@@ -28682,6 +29170,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "provence-appartements.com", true },
{ "providencecmc.com", true },
{ "providerlijst.com", true },
+ { "providerlijst.ml", true },
{ "providerlijst.nl", true },
{ "provision-isr.nl", true },
{ "provitec.com", true },
@@ -28741,6 +29230,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "psicoexpansao.com.br", true },
{ "psicologajanainapresotto.com.br", true },
{ "psicologasandrabernal.es", true },
+ { "psicologo-especialista-barcelona.com", true },
+ { "psicologo-infantil-barcelona.com", true },
{ "psicologoforensemadrid.com", true },
{ "psm.org.ph", true },
{ "psochecker.com", true },
@@ -28768,8 +29259,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "psychoco.net", false },
{ "psychologie-hofner.at", true },
{ "psychotherapie-kp.de", true },
+ { "psycolleges.com", true },
{ "psydix.org", true },
{ "psylab.cc", true },
+ { "psylab.re", true },
+ { "psylab.vip", true },
{ "psytrance-pro.com", true },
{ "pt-d.ru", true },
{ "pt-server.de", true },
@@ -28868,7 +29362,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "put.re", true },
{ "putatara.net", true },
{ "putman-it.nl", true },
- { "putney.io", true },
+ { "putney.io", false },
{ "putomani.rs", true },
{ "putrock.be", true },
{ "puurwonengeldrop.nl", false },
@@ -28892,6 +29386,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "pwnedpass.tk", true },
{ "pwnies.dk", true },
{ "pwolk.com", true },
+ { "pxl-mailtracker.com", true },
{ "pxl.cl", true },
{ "pxx.io", true },
{ "py-amf.org", true },
@@ -28920,6 +29415,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "q-inn.nl", true },
{ "q-technologies.com.au", true },
{ "q123123.com", true },
+ { "q1q2q3.tk", true },
{ "q5118.com", true },
{ "qa-brandywineglobal.com", true },
{ "qa-team.xyz", true },
@@ -28946,13 +29442,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "qcstudentcenter.com", true },
{ "qcstyleacademy.com", true },
{ "qctravelschool.com", true },
+ { "qdabogados.com", true },
{ "qdon.space", false },
{ "qedcon.org", false },
{ "qelectrotech.org", true },
{ "qetesh.de", true },
{ "qetic.co.jp", true },
{ "qewc.com", true },
- { "qgblog.org", true },
{ "qgustavor.tk", true },
{ "qhse-professionals.nl", true },
{ "qianalysis.com", true },
@@ -28988,8 +29484,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "qponverzum.hu", true },
{ "qq-navi.com", true },
{ "qq52o.me", true },
- { "qqrss.com", true },
- { "qqvips.com", true },
{ "qr-city.org", true },
{ "qr.cl", true },
{ "qrbird.com", true },
@@ -29002,7 +29496,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "qtn.net", true },
{ "qto.com", true },
{ "qto.net", true },
- { "qto.org", true },
{ "qtpass.org", true },
{ "qtpower.co.uk", true },
{ "qtpower.net", true },
@@ -29010,7 +29503,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "qtvr.com", true },
{ "qtxh.net", true },
{ "quackerswaterproofing.com", true },
- { "quaedam.org", true },
{ "quaggan.co", true },
{ "quai10.org", false },
{ "qualite-ecole-et-formation.ch", true },
@@ -29069,7 +29561,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "querkommentar.de", true },
{ "query-massage.com", true },
{ "question.com", true },
- { "questionable.host", true },
{ "questsocial.it", true },
{ "quevisiongrafica.com", true },
{ "quic.stream", true },
@@ -29079,7 +29570,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "quietapple.org", true },
{ "quikchange.net", true },
{ "quikpay.com.au", true },
- { "quikrmovies.to", true },
{ "quilmo.com", true },
{ "quimatic.com.br", true },
{ "quinnlabs.com", true },
@@ -29091,10 +29581,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "quitarlasmanchasde.com", true },
{ "quitimes.com", true },
{ "quizogames.com", true },
+ { "quizstore.net", true },
{ "qul.link", true },
{ "quli.nl", false },
{ "qunzi.la", true },
{ "quocdesign.ch", true },
+ { "quote.gq", true },
{ "quoteidiot.com", true },
{ "quotev.com", true },
{ "quovadisaustria.com", true },
@@ -29122,6 +29614,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "r-t-b.fr", true },
{ "r0t.co", true },
{ "r0uzic.net", true },
+ { "r1a.eu", true },
{ "r1ch.net", true },
{ "r2d2pc.com", true },
{ "r33.space", true },
@@ -29141,7 +29634,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ra.vc", true },
{ "ra4wvpn.com", true },
{ "raah.co", true },
- { "rabbit.wales", false },
{ "rabbitfinance.com", true },
{ "rabica.de", true },
{ "rabotaescort.com", true },
@@ -29167,15 +29659,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "racoo.net", true },
{ "racozo.com", true },
{ "racunovodstvo-prina.si", true },
+ { "rada-group.eu", true },
{ "radar.sx", true },
{ "radaravia.ru", true },
{ "radarnext.com", true },
{ "radartatska.se", true },
{ "radartek.com", true },
{ "radcube.hu", true },
+ { "radegundisfest.de", true },
{ "radfieldhomecare.co.uk", true },
{ "radfieldhomecarefranchising.co.uk", true },
- { "radical.org", true },
{ "radicaloptimism.org", true },
{ "radicalsub.com.br", true },
{ "radins.com", true },
@@ -29184,12 +29677,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "radio1.ie", true },
{ "radioafibra.com.br", true },
{ "radiocomsaocarlos.com.br", true },
+ { "radiofmimagen.net", true },
{ "radioilusion.es", true },
{ "radiom.fr", true },
{ "radiomodem.dk", true },
{ "radiomontebianco.it", true },
{ "radionicabg.com", true },
{ "radiopolarniki.spb.ru", true },
+ { "radior9.it", true },
{ "radiormi.com", true },
{ "radiorsvp.com", false },
{ "radiosendungen.com", true },
@@ -29202,6 +29697,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "radyn.com", true },
{ "raeu.me", true },
{ "raeven.nl", true },
+ { "raevinnd.com", true },
{ "rafaelmagalhaesweb.com", true },
{ "rafey.xyz", true },
{ "raffaellaosti.com", true },
@@ -29213,6 +29709,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rage4.com", true },
{ "raghavdua.in", true },
{ "rahulpnath.com", true },
+ { "raidensnakesden.co.uk", true },
+ { "raidensnakesden.com", true },
+ { "raidensnakesden.net", true },
{ "raidstone.net", true },
{ "rail-o-rama.nl", true },
{ "rail24.nl", true },
@@ -29228,10 +29727,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "railvideo.nl", true },
{ "railwaytech.net", true },
{ "raimixmotoparts.com.br", true },
+ { "rain.bz", true },
{ "rainbowbay.org", true },
{ "rainbowinflatables.co.uk", true },
{ "rainbowstore.com.au", true },
{ "rainbowstore.com.ua", true },
+ { "rainel.at", true },
{ "rainforest.engineering", true },
{ "rainpaper.com", true },
{ "rainstormsinjuly.co", true },
@@ -29274,6 +29775,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "randomdysfunctions.com", true },
{ "randomkoalafacts.com", true },
{ "randomprecision.co.uk", true },
+ { "randomquotesapp.com", true },
{ "ranfurlychambers.co.nz", true },
{ "rangde.org", true },
{ "rangercollege.edu", true },
@@ -29315,6 +29817,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rasty.cz", true },
{ "ratd.net", true },
{ "ratebridge.com", true },
+ { "ratelsec.com", true },
{ "rathbonesonline.com", true },
{ "rathgeb.org", true },
{ "ratinq.co", true },
@@ -29325,7 +29828,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "raulrivero.es", true },
{ "rault.io", true },
{ "raum4224.de", true },
- { "rauros.net", true },
{ "rautelow.de", true },
{ "rautermods.net", true },
{ "ravchat.com", true },
@@ -29334,7 +29836,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ravensbuch.de", true },
{ "ravhaaglanden.org", true },
{ "ravindran.me", true },
- { "raviparekh.co.uk", true },
{ "ravis.org", true },
{ "rawdutch.nl", true },
{ "rawinfosec.com", true },
@@ -29343,6 +29844,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "raxion.tk", true },
{ "ray-home.de", true },
{ "ray-works.de", true },
+ { "rayan-it.ir", true },
+ { "rayanitco.com", true },
{ "rayiris.com", true },
{ "raykitchenware.com", true },
{ "raymcbride.com", true },
@@ -29367,6 +29870,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rbran.com", true },
{ "rbtvshitstorm.is", true },
{ "rburchell.com", true },
+ { "rbx-talk.xyz", true },
{ "rc-offi.net", true },
{ "rc-rp.com", true },
{ "rc-shop.ch", true },
@@ -29380,21 +29884,22 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rcmpsplib.com", true },
{ "rcmurphy.com", true },
{ "rcnitrotalk.com", true },
- { "rcorporation.be", true },
{ "rcraigmurphy.com", true },
{ "rcraigmurphy.net", true },
{ "rcsolutions.nl", true },
{ "rct.sk", true },
{ "rctalk.com", true },
{ "rdfproject.it", true },
+ { "rdh.asia", true },
{ "rdjb2b.com", true },
{ "rdl.at", false },
+ { "rdmc.fr", true },
{ "rdmrotterdam.nl", true },
{ "rdmtaxservice.com", true },
{ "rdns.cc", true },
- { "rdplumbingsolutions.com.au", true },
{ "rdv-prefecture.com", true },
{ "rdwh.tech", true },
+ { "rdxsattamatka.mobi", true },
{ "re-curi.com", true },
{ "re-engines.com", true },
{ "reachhead.com", true },
@@ -29423,7 +29928,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "realestateonehowell.com", true },
{ "realestateradioshow.com", true },
{ "realfreedom.city", true },
- { "realgarant-shop.de", false },
{ "realhorsegirls.net", true },
{ "realhypnosistraining.com.au", true },
{ "realitea.co.uk", true },
@@ -29431,17 +29935,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "reality0ne.com", false },
{ "realitycrazy.com", true },
{ "reallifeforums.com", true },
+ { "realloc.me", true },
{ "really-simple-plugins.com", true },
{ "really-simple-ssl.com", true },
{ "really.ai", true },
{ "reallytrusted.com", true },
{ "realme.govt.nz", true },
{ "realmofespionage.xyz", true },
+ { "realoteam.ddns.net", true },
{ "realum.com", true },
{ "realum.de", true },
{ "realum.eu", true },
{ "realum.net", true },
- { "realvnc.help", true },
{ "realwaycome.com", true },
{ "realwildart.com", true },
{ "realworldholidays.co.uk", true },
@@ -29466,8 +29971,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "receiliart.com", true },
{ "receptionpoint.com", true },
{ "receptionsbook.com", true },
- { "recepty.eu", false },
+ { "recepty.eu", true },
{ "recetasdecocinaideal.com", true },
+ { "recetin.com", true },
{ "rechenknaecht.de", true },
{ "rechtsanwaeltin-vollmer.de", true },
{ "rechtsanwalt-koeppen-feucht.de", true },
@@ -29498,7 +30004,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "red-t-shirt.ru", true },
{ "red-trigger.net", true },
{ "red2fred2.com", true },
- { "redable.hosting", true },
{ "redable.nl", true },
{ "redactieco.nl", true },
{ "redb.cz", true },
@@ -29530,6 +30035,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "redelectrical.co.uk", true },
{ "redessantaluzia.com.br", true },
{ "redfox-infosec.de", true },
+ { "redfoxmarketiing.com", true },
{ "redgatesoftware.co.uk", true },
{ "redgoose.ca", true },
{ "redhandedsecurity.com.au", true },
@@ -29542,9 +30048,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rediske.me", true },
{ "redit.com", true },
{ "redivis.com", true },
+ { "redleslie.com", true },
{ "redletter.link", true },
{ "redlinelap.com", true },
{ "redlink.de", true },
+ { "redmind.se", true },
{ "redmore.me", true },
{ "redneragenturen.org", true },
{ "rednsx.org", true },
@@ -29553,6 +30061,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "redshiftlabs.com.au", true },
{ "redshoeswalking.net", true },
{ "redsicom.com", true },
+ { "redsquirrelcampsite.co.uk", true },
{ "redstoner.com", true },
{ "redteam-pentesting.de", true },
{ "redwaterhost.com", true },
@@ -29562,14 +30071,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "redzurl.com", false },
{ "reed-sensor.com", true },
{ "reedloden.com", true },
+ { "reedyforkfarm.com", true },
{ "reegle.com", true },
{ "reepay.com", true },
{ "rees-carter.net", true },
{ "reesmichael1.com", true },
{ "reevaappliances.co.uk", true },
- { "reevoo.com", true },
- { "reevu.net", true },
{ "reezer.org", true },
+ { "refactor.zone", false },
{ "referdell.com", true },
{ "refficience.com", true },
{ "refill-roboter.de", true },
@@ -29630,8 +30139,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rehabphilippines.com", true },
{ "rehabthailand.com", true },
{ "rehabthailand.org", true },
- { "reher.pro", true },
{ "rei.codes", true },
+ { "rei.ki", true },
{ "reichardt-home.goip.de", true },
{ "reichel-steinmetz.de", true },
{ "reichelt-cloud.de", true },
@@ -29643,7 +30152,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "reimaginebelonging.org", true },
{ "reimann.me", true },
{ "reimers.de", true },
- { "rein.kr", true },
{ "reinaldudras.ee", true },
{ "reinaldudrasfamily.ee", true },
{ "reinencaressa.be", true },
@@ -29651,7 +30159,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "reinhard.codes", true },
{ "reinhardtsgrimma.de", true },
{ "reinierjonker.nl", true },
- { "reinoldus.ddns.net", true },
{ "reinout.nu", true },
{ "reinouthoornweg.nl", true },
{ "reinventetoi.com", false },
@@ -29665,6 +30172,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rejsehuskelisten.dk", true },
{ "rekisuta.com", true },
{ "reklamjog.hu", true },
+ { "rekonstrukcestatu.cz", true },
{ "rekorsanat.com.tr", true },
{ "rekyou.com", false },
{ "relates.link", true },
@@ -29676,7 +30184,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "release-monitoring.org", true },
{ "releasetimes.io", true },
{ "reliancebank.bank", true },
- { "reliant3sixty.com", true },
{ "relocatefeds.gov", false },
{ "relojeriajoyeria.com", true },
{ "relojes-online.com", true },
@@ -29699,13 +30206,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "remini.cz", true },
{ "remirampin.com", true },
{ "remissan.com", true },
- { "remitatm.com", false },
{ "remonti.info", true },
{ "remote.so", true },
{ "remoteham.com", true },
{ "remoteutilities.com", true },
{ "removalcellulite.com", true },
{ "removedrepo.com", true },
+ { "remrol.ru", true },
{ "remszeitung.de", true },
{ "renaissanceplasticsurgery.net", true },
{ "renascentia.asia", true },
@@ -29715,9 +30222,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rene-schwarz.com", true },
{ "rene-stolp.de", true },
{ "renearends.nl", true },
- { "reneclemens.nl", true },
{ "renedekoeijer.com", true },
{ "renedekoeijer.nl", true },
+ { "renee.today", true },
{ "reneleu.ch", true },
{ "renem.net", false },
{ "renemayrhofer.com", true },
@@ -29748,6 +30255,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "repaik.com", true },
{ "repair.by", true },
{ "repaper.org", true },
+ { "reparo.pe", true },
{ "repaxan.com", true },
{ "repkord.com", true },
{ "replicaswiss.nl", true },
@@ -29770,7 +30278,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "repugnantconclusion.com", true },
{ "reputationweaver.com", true },
{ "reqrut.net", true },
- { "request-trent.com", true },
{ "requestr.co.uk", true },
{ "res-kc.com", true },
{ "resama.eu", true },
@@ -29787,6 +30294,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "residence-simoncelli.com", true },
{ "residentiallocksmithsanantoniotx.com", true },
{ "resine.roma.it", true },
+ { "resinflooringcompany.com", true },
{ "resist.ca", true },
{ "resistav.com", true },
{ "resolvefa.co.uk", true },
@@ -29801,12 +30309,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "respectmyprivacy.eu", true },
{ "respectmyprivacy.net", true },
{ "respectmyprivacy.nl", true },
+ { "respecttheflame.com", true },
{ "respon.jp", true },
{ "responer.com", true },
{ "responsibledisclosure.nl", false },
{ "responsive-shop.com", true },
{ "responsivepaper.com", true },
{ "respostas.com.br", true },
+ { "ressl.ch", true },
{ "restaurant-oregano.de", true },
{ "restaurant-rosengarten.at", true },
{ "restaurantguru.com", true },
@@ -29827,10 +30337,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "retetenoi.net", true },
{ "retetop95.it", true },
{ "reticon.de", true },
- { "retireyourpassword.org", true },
{ "retmig.dk", true },
{ "reto.ch", true },
{ "reto.com", true },
+ { "reto.io", true },
{ "retokromer.ch", true },
{ "retractableawningssydney.com.au", true },
{ "retro.rocks", true },
@@ -29866,12 +30376,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "review.jp", true },
{ "reviewninja.net", true },
{ "reviews.anime.my", false },
- { "reviewspedia.org", true },
{ "revirt.global", true },
{ "revision.co.zw", true },
{ "revisionnotes.xyz", true },
{ "revisit.date", true },
{ "revivalinhisword.com", true },
+ { "revivalprayerfellowship.com", true },
{ "revivingtheredeemed.org", true },
{ "revlect.com", true },
{ "revolt.tv", true },
@@ -29890,6 +30400,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rezultant.ru", true },
{ "rfeif.org", true },
{ "rftoon.com", true },
+ { "rfxanalyst.com", true },
{ "rga.sh", true },
{ "rgavmf.ru", true },
{ "rgbinnovation.com", true },
@@ -29903,7 +30414,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rheinturm.nrw", true },
{ "rheocube.com", true },
{ "rhese.net", true },
- { "rhetthenckel.com", true },
+ { "rhetorical.ml", true },
{ "rheuma-online.de", true },
{ "rhevelo.com", true },
{ "rhinelander.ca", true },
@@ -29978,10 +30489,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rightnetworks.com", true },
{ "rightstuff.link", true },
{ "righttobuy.gov.uk", true },
- { "rigolitch.fr", true },
{ "rigsalesaustralia.com", true },
{ "rijk-catering.nl", false },
- { "rijsinkunst.nl", true },
+ { "rijsinkunst.nl", false },
{ "rik.onl", true },
{ "riku.pw", true },
{ "rile5.com", true },
@@ -29997,11 +30507,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ringjewellery.co.uk", true },
{ "rinvex.com", true },
{ "rio-weimar.de", true },
+ { "rioshop.com.br", true },
{ "rioxmarketing.com", true },
{ "rip-sport.cz", true },
{ "ripaton.fr", true },
{ "ripmixmake.org", true },
- { "ripple.com", true },
{ "riqy86.nl", true },
{ "ris.fi", true },
{ "risada.nl", true },
@@ -30027,8 +30537,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rivalsa.cn", true },
{ "rivastation.de", true },
{ "riverbanktearooms.co.uk", true },
+ { "riverbendroofingnd.com", true },
{ "riverford.co.uk", true },
{ "rivermist.com.au", true },
+ { "riverridgecc.com", true },
{ "riversidebaptistchurch.net", true },
{ "riversideradio.nl", true },
{ "riverviewcourtapts.com", true },
@@ -30039,13 +30551,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rivy.org", true },
{ "rix.ninja", true },
{ "rixter.com", true },
- { "rixzz.ovh", true },
{ "riyono.com", true },
{ "rizalpalawan.gov.ph", true },
{ "rizospastis.gr", true },
{ "rj-onderneemt.nl", true },
{ "rkfp.cz", true },
- { "rkkhok.hu", true },
+ { "rkkhok.hu", false },
{ "rkmns.edu.in", true },
{ "rlalique.com", true },
{ "rld.org", true },
@@ -30069,7 +30580,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rn29.me", true },
{ "rnag.ie", true },
{ "rnb-storenbau.ch", true },
- { "rnbjunk.com", true },
{ "rngmeme.com", true },
{ "rnt.cl", true },
{ "ro.search.yahoo.com", false },
@@ -30081,11 +30591,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rob006.net", true },
{ "robandjanine.com", true },
{ "robbertt.com", false },
+ { "robbiecrash.me", true },
{ "robdavidson.network", true },
{ "robert-flynn.de", true },
- { "robertattfield.com", true },
- { "robertayamashita.com", true },
- { "robertayamashita.com.br", true },
{ "robertbln.com", true },
{ "robertg.me", true },
{ "robertglastra.com", true },
@@ -30113,6 +30621,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "robinsonyu.com", true },
{ "robinwill.de", true },
{ "robinwinslow.uk", true },
+ { "robjager-fotografie.nl", true },
{ "robocop.no", true },
{ "robodeidentidad.gov", true },
{ "robohash.org", true },
@@ -30141,7 +30650,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rockcanyonbank.com", true },
{ "rockcellar.ch", true },
{ "rockenfuerlachenhelfen.de", true },
- { "rocket-wars.de", true },
{ "rocketevents.com.au", true },
{ "rocketgnomes.com", true },
{ "rocketr.net", true },
@@ -30166,6 +30674,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rodinnebyvanie.eu", true },
{ "rodinneodpoledne2018.cz", true },
{ "rodolfo.gs", true },
+ { "rodomonte.org", true },
{ "rodrigocarvalho.blog.br", true },
{ "rody-design.com", true },
{ "rodzina-kupiec.eu.org", true },
@@ -30198,9 +30707,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "roguetechhub.org", true },
{ "rohedaten.de", true },
{ "rohitagr.com", true },
- { "rohlik.cz", true },
{ "rointe.online", true },
- { "roiscroll.com", true },
{ "roka9.de", true },
{ "rokki.ch", true },
{ "rokort.dk", true },
@@ -30208,6 +30715,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rokudenashi.de", true },
{ "roland.io", true },
{ "rolandinsh.com", true },
+ { "rolandlips.com", true },
+ { "rolandlips.nl", true },
+ { "rolandreed.cn", true },
{ "rolandszabo.com", true },
{ "roleplayhome.com", true },
{ "roligprylar.se", true },
@@ -30226,18 +30736,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "romano.guru", true },
{ "romanpavlodar.kz", true },
{ "romantelychko.com", true },
- { "romantic-quotes.co.uk", true },
{ "romantica-hotel.de", true },
{ "romanticfirstdance.com", true },
{ "romanticschemer.com", true },
{ "romanticsexshopguatemala.com", true },
{ "romanticvillas.com.au", false },
{ "romapa.com", true },
+ { "romar-bos.nl", true },
{ "romarin.es", true },
{ "romaservicegroup.it", true },
{ "romatrip.it", true },
{ "rome.dating", true },
{ "rommelwood.de", true },
+ { "romun.net", true },
+ { "romy.tw", true },
{ "ronanrbr.com", true },
{ "rondommen.nl", true },
{ "rondouin.fr", true },
@@ -30265,7 +30777,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rooneytours.nl", true },
{ "roopakv.com", true },
{ "roosabels.nl", false },
- { "roosterpgplus.nl", true },
{ "root-space.eu", true },
{ "root.bg", true },
{ "root.cz", true },
@@ -30283,10 +30794,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rootsbar.fr", true },
{ "rootscope.co.uk", false },
{ "rootspersona.com", true },
- { "rootswitch.com", true },
+ { "rootswitch.com", false },
{ "rootusers.com", true },
{ "ropd.info", true },
- { "roromendut.online", true },
{ "roryneville.com", true },
{ "rosabellas.co.uk", true },
{ "rosalindturner.co.uk", true },
@@ -30303,10 +30813,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rosenkeller.org", true },
{ "roseofyork.com", true },
{ "roseofyorkbooking.com", true },
+ { "roseon.net", true },
{ "roseparkhouse.com", true },
{ "rosesciences.com", true },
{ "rosetiger.life", true },
{ "rosevillefacialplasticsurgery.com", true },
+ { "roshhashanahfun.com", true },
{ "roslynpad.net", true },
{ "rosnertexte.at", true },
{ "rosset.me", true },
@@ -30319,7 +30831,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rotek.at", true },
{ "roten.email", true },
{ "rothe.io", true },
- { "rothkranz.net", true },
{ "rothnater.ch", true },
{ "rotkreuzshop.de", true },
{ "rotol.me", true },
@@ -30405,6 +30916,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "royalbluewa3.cc", true },
{ "royalcitytaxi.ca", true },
{ "royalcitytaxi.com", true },
+ { "royalfoxrealtor.com", true },
{ "royalmarinesassociation.org.uk", true },
{ "royalnissanparts.com", true },
{ "royalpalacenogent.fr", true },
@@ -30430,7 +30942,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rrdesignsuisse.com", true },
{ "rrg-partner.ch", true },
{ "rring.me", true },
- { "rritv.com", true },
{ "rro.rs", true },
{ "rrudnik.com", true },
{ "rrwolfe.com", true },
@@ -30495,11 +31006,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rubytune.com", true },
{ "rucksack-rauf-und-weg.de", true },
{ "ruckzuck-privatpatient.de", true },
- { "rucnerobene.eu", true },
{ "ruconsole.com", true },
{ "rud.is", true },
{ "rudd-o.com", true },
- { "rudelune.fr", true },
{ "ruderverein-gelsenkirchen.de", true },
{ "rudewiki.com", true },
{ "rudhaulidirectory.com", true },
@@ -30531,6 +31040,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rulu.co", true },
{ "rulu.tv", true },
{ "rulutv.com", true },
+ { "rumlager.de", true },
{ "rummage4property.co.uk", true },
{ "rumplesinflatables.co.uk", true },
{ "rumtaste.com", true },
@@ -30599,6 +31109,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rxbn.de", true },
{ "rxbusiness.com", true },
{ "rxcheck.com", true },
+ { "rxgroup.io", true },
{ "rxight.com", true },
{ "ryan-design.com", true },
{ "ryan-gehring.com", true },
@@ -30614,7 +31125,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "rychlikoderi.cz", true },
{ "rydermais.tk", true },
{ "rynekpierwotny.pl", true },
- { "ryois.me", true },
+ { "rys.pw", true },
{ "ryu22e.org", true },
{ "ryuu.es", true },
{ "ryyule.com", true },
@@ -30632,6 +31143,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "s-pegasus.com", true },
{ "s-s-paint.com", true },
{ "s007.co", true },
+ { "s0laris.co.uk", true },
{ "s10y.eu", true },
{ "s13d.fr", true },
{ "s16e.no", true },
@@ -30656,6 +31168,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "saabpartsdistribution.com", true },
{ "saamhorigheidsfonds.nl", false },
{ "saastopankki.fi", true },
+ { "saba-piserver.info", true },
{ "sabahattin-gucukoglu.com", true },
{ "sabe.cz", true },
{ "sabine-forschbach.de", true },
@@ -30665,6 +31178,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sabtunes.com", true },
{ "sacaentradas.com", true },
{ "saccani.net", true },
+ { "sacharidovejednotky.eu", true },
{ "sackers.com", true },
{ "sackmesser.ch", true },
{ "saclier.at", true },
@@ -30678,7 +31192,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sadhawkict.org", true },
{ "sadmansh.com", true },
{ "sadou.kyoto.jp", true },
- { "sadsu.com", true },
{ "saenforcement.agency", true },
{ "saengsook.com", true },
{ "saengsuk.com", true },
@@ -30742,10 +31255,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "saimoe.org", true },
{ "sainetworks.net", true },
{ "saint-bernard-gouesch.fr", true },
+ { "saint-cyril.com", true },
{ "saintaardvarkthecarpeted.com", true },
{ "saintanthonyscorner.com", true },
{ "sainth.de", true },
{ "saintmichelqud.com", true },
+ { "saintpatrick-norristown.net", true },
{ "saintsrobotics.com", true },
{ "saipariwar.com", true },
{ "saiputra.com", true },
@@ -30756,13 +31271,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sakaki.anime.my", false },
{ "sakostacloud.de", true },
{ "sakura-paris.org", true },
+ { "sakura.zone", true },
+ { "sakuracdn.com", true },
{ "sakuracommunity.com", true },
{ "sakuraflores.com.br", true },
{ "sakuraplay.com", true },
{ "salamon-it.de", false },
{ "salde.net", true },
{ "sale4ru.ru", true },
- { "saleaks.org", true },
{ "saleduck.at", true },
{ "saleduck.ch", true },
{ "saleduck.co.id", true },
@@ -30795,11 +31311,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "salonasymetria.com", true },
{ "salonasymetria.pl", true },
{ "salonsantebienetre.ch", true },
+ { "salrosadohimalaia.com", true },
{ "salsa-straubing.de", true },
{ "saltbythesea.com", true },
{ "saltercane.com", false },
{ "saltireconservation.com", true },
- { "saltro.nl", true },
{ "saltstack.cz", true },
{ "salud.top", false },
{ "saludsexualmasculina.org", true },
@@ -30810,6 +31326,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "salva.re", true },
{ "salvagedfurnitureparlour.com", true },
{ "sam-football.fr", true },
+ { "samanacafe.com", true },
{ "samanthasgeckos.com", true },
{ "samanthasicecream.com", true },
{ "samappleton.com", true },
@@ -30825,19 +31342,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "samegoal.org", true },
{ "samel.de", true },
{ "samenwerkingsportaal.nl", true },
+ { "samenwerkingsportaal.tk", true },
{ "sameworks.com", true },
{ "samgrayson.me", true },
{ "samhuri.net", true },
{ "samifar.in", true },
- { "samin.tk", true },
{ "samip.fi", true },
{ "samitechnic.com", true },
{ "samizdat.cz", true },
{ "samkelleher.com", true },
{ "saml-gateway.org", true },
+ { "samlaw.co.nz", true },
{ "samlivogarv.dk", true },
{ "sammamish--locksmith.com", true },
- { "sammenlignakasser.dk", true },
{ "sammyservers.com", true },
{ "sammyservers.net", true },
{ "samnya.cn", true },
@@ -30850,6 +31367,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "samuellaulhau.fr", true },
{ "samui-samui.de", false },
{ "samuirehabcenter.com", true },
+ { "samvanderkris.xyz", true },
{ "samwilberforce.com", true },
{ "samwrigley.co.uk", true },
{ "samwu.tw", true },
@@ -30867,6 +31385,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sanatorii-sverdlovskoy-oblasti.ru", true },
{ "sanatorionosti.com.ar", true },
{ "sanchez.adv.br", true },
+ { "sand-islets.de", true },
{ "sandalj.com", true },
{ "sandbagexpress.com", true },
{ "sandbox.mydigipass.com", false },
@@ -30892,6 +31411,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sandtonplumber24-7.co.za", true },
{ "sandtonvipcompanions.com", true },
{ "sandyrobsonhypnotherapy.co.uk", true },
+ { "sanemind.de", true },
{ "sanemind.eu", true },
{ "sanepsychologen.nl", true },
{ "sanex.ca", false },
@@ -30905,7 +31425,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sanitairwinkel.nl", true },
{ "sanitrak.cz", true },
{ "sanmuding.com", true },
- { "sannesfotklinikk.no", true },
{ "sanpham-balea.org", true },
{ "sanskritiyoga.com", true },
{ "sansonehowell.com", true },
@@ -30932,7 +31451,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sapindus.pl", true },
{ "sapk.fr", true },
{ "saposute-s.jp", true },
- { "sapphireblue.me", true },
{ "sapphirepearl.com.sg", true },
{ "sapprendre.ch", true },
{ "saprima.de", true },
@@ -30947,6 +31465,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sarasturdivant.com", true },
{ "sardegnatirocini.it", true },
{ "sarink.eu", true },
+ { "saro.me", true },
{ "saronno5stelle.it", true },
{ "sarpsb.org", true },
{ "sarumtechnologies.com", true },
@@ -30976,12 +31495,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sattamatkachart.in", true },
{ "sattamatkamobi.mobi", true },
{ "saturn.pl", true },
+ { "saturngames.co.uk", true },
{ "satyanarayana.xyz", true },
{ "saudavel.com.vc", true },
{ "saudeealimentos.com", true },
{ "saudeintimadamulher.com.br", true },
{ "saudenoclique.com.br", true },
{ "sauer-systems.net", true },
+ { "sauerbrey.eu", true },
{ "sauerland-schnittgruen.de", true },
{ "saulchristie.com", true },
{ "saumon-de-france.com", true },
@@ -31005,6 +31526,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "savic.com", true },
{ "saviezvousque.net", true },
{ "savingrecipe.com", true },
+ { "savingsoftheyear.com", true },
{ "savingsomegreen.com", true },
{ "savingsstoreonline.ca", true },
{ "savisasolutions.co.za", true },
@@ -31049,10 +31571,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sc5.jp", true },
{ "scaarus.com", true },
{ "scaffalature.roma.it", true },
- { "scaffoldhireeastrand.co.za", true },
- { "scaffoldhirefourways.co.za", true },
- { "scaffoldhirerandburg.co.za", true },
- { "scaffoldhiresandton.co.za", true },
{ "scalacollege.nl", true },
{ "scalaire.com", true },
{ "scalaire.fr", true },
@@ -31099,17 +31617,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "schenkes.de", true },
{ "scherfke.de", true },
{ "scheuchenstuel.at", true },
+ { "schgroup.com", true },
{ "schier.info", true },
{ "schil.li", true },
{ "schildbach.de", true },
{ "schillers-friedberg.de", true },
{ "schimmel-test.info", true },
- { "schippendale.de", true },
- { "schippers-it.nl", true },
{ "schizoids.net", true },
{ "schlachter.ca", true },
{ "schlaf.guru", true },
{ "schlafguru.com", true },
+ { "schlagenhauf.info", true },
+ { "schlagma.de", false },
{ "schlarp.com", true },
{ "schlechtewitze.com", true },
{ "schlick.wedding", true },
@@ -31118,13 +31637,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "schlueter-software.de", true },
{ "schmaeh-coaching.ch", true },
{ "schmelle.me", true },
- { "schmelzle.io", true },
{ "schmetterlingsapp.at", true },
{ "schmid.tv", true },
{ "schmidthomes.com", true },
{ "schmidtplasticsurgery.com", true },
{ "schmitt-max.com", true },
{ "schmitz.link", true },
+ { "schnapke.name", true },
{ "schneeketten-ratgeber.de", true },
{ "schnegg.name", true },
{ "schneids.me", true },
@@ -31133,16 +31652,21 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "schnouki.net", true },
{ "schnyder-werbung.ch", true },
{ "schoeck-elektro.de", true },
+ { "schoeller.click", true },
{ "schoepski.de", true },
{ "schoknecht.net", true },
{ "schoknecht.one", true },
{ "schokofoto.de", true },
{ "schokokeks.org", true },
+ { "scholar.group", true },
+ { "scholar.site", true },
{ "scholarly.com.ph", true },
{ "scholarly.ph", true },
{ "scholarnet.cn", true },
+ { "scholarstyle.com", true },
{ "scholierenvervoerzeeland.nl", true },
{ "schollbox.de", false },
+ { "scholledev.com", true },
{ "scholz-kallies.de", true },
{ "schont.org", true },
{ "school-b.us", true },
@@ -31308,7 +31832,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sdg-tracker.org", true },
{ "sdho.org", true },
{ "sdns.fr", true },
- { "sdocast.com", true },
{ "sdsi.us", true },
{ "sdsk.one", true },
{ "sdsmanagement.me", true },
@@ -31321,6 +31844,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "se.search.yahoo.com", false },
{ "seac.me", true },
{ "seacam-store.com", true },
+ { "seachef.it", true },
{ "seafood.co.nz", true },
{ "seaholmwines.com", true },
{ "sealaw.com", true },
@@ -31375,7 +31899,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sebastiaanwijnimport.nl", true },
{ "sebastian-janich.de", true },
{ "sebastian-kraus.me", true },
- { "sebastian-lutsch.de", true },
{ "sebastian.expert", true },
{ "sebastianblade.com", true },
{ "sebastianboegl.de", true },
@@ -31391,8 +31914,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sec.gov", true },
{ "sec.red", true },
{ "sec3ure.co.uk", true },
+ { "sec44.com", true },
{ "sec455.com", true },
- { "sec4share.me", true },
{ "sec530.com", true },
{ "sec555.com", true },
{ "secbone.com", true },
@@ -31408,7 +31931,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "secondchancejobsforfelons.com", true },
{ "seconfig.sytes.net", true },
{ "secpatrol.de", true },
+ { "secpoc.online", true },
{ "secretar.is", true },
+ { "secretary-schools.com", true },
{ "secretsanta.fr", true },
{ "secretsdujeu.com", true },
{ "secretserveronline.com", true },
@@ -31459,6 +31984,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "securitycamerascincinnati.com", true },
{ "securitycamerasjohnsoncity.com", true },
{ "securityfest.com", true },
+ { "securitygladiators.com", true },
{ "securityheaders.com", true },
{ "securityheaders.io", true },
{ "securityheaders.nl", true },
@@ -31473,7 +31999,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "securitystreak.com", true },
{ "securitytrails.com", true },
{ "securitywithnick.com", true },
- { "securitywithoutborders.org", true },
+ { "securityzap.com", true },
{ "securocloud.com", true },
{ "secutrans.com", true },
{ "secuvera.de", false },
@@ -31493,17 +32019,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "seeks.ru", true },
{ "seekthe.net", true },
{ "seemeagain.com", true },
- { "seemeasaperson.com", true },
{ "seesuite.com", true },
{ "seewhatididhere.com", true },
{ "seeworkdone.com", true },
{ "seezeitlodge-bostalsee.de", true },
{ "sefru.de", true },
{ "seg-leipzig.org", true },
+ { "seg-sys.com", true },
{ "segaretro.org", true },
{ "segitz.de", true },
{ "segmetic.com", true },
{ "segulink.com", true },
+ { "seguros-de-salud-y-vida.com", true },
{ "segurosbalboa.com.ec", false },
{ "segurosocial.gov", true },
{ "seguroviagem.srv.br", false },
@@ -31536,6 +32063,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "self-xss.info", true },
{ "self.nu", true },
{ "selfassess.govt.nz", true },
+ { "selfdefenserx.com", true },
{ "selfdestruct.net", true },
{ "selfici.com", true },
{ "selfici.cz", true },
@@ -31563,6 +32091,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "seminariruum.ee", true },
{ "semiocast.com", true },
{ "semiread.com", true },
+ { "semjonov.de", true },
{ "semmlers.com", true },
{ "semox.de", true },
{ "semps-2fa.de", true },
@@ -31583,12 +32112,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sendthisfile.com", true },
{ "sendway.com", true },
{ "sendya.me", true },
+ { "senego.com", true },
{ "senekalstorageman.co.za", true },
{ "sengokulife.com", true },
{ "seniorem.eu", true },
{ "seniors.singles", true },
{ "senmendai-reform.com", true },
{ "sennase.net", true },
+ { "senobio.com", true },
{ "senorcontento.com", true },
{ "sensebridge.com", true },
{ "sensebridge.net", true },
@@ -31604,6 +32135,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sentry.nu", true },
{ "senzaparole.de", true },
{ "seo-analyse.com", true },
+ { "seo-dr-it.com", true },
{ "seo-linz.at", true },
{ "seo-nerd.de", true },
{ "seo-portal.de", true },
@@ -31611,6 +32143,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "seo.london", true },
{ "seo.tl", true },
{ "seoagentur2go.de", true },
+ { "seoankara.name.tr", true },
{ "seobutler.com", true },
{ "seocomposer.com", true },
{ "seoenmexico.com.mx", true },
@@ -31651,6 +32184,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "serf.io", true },
{ "sergeemond.ca", true },
{ "sergefonville.nl", true },
+ { "sergeyreznikov.com", true },
{ "sergije-stanic.me", true },
{ "sergiosantoro.it", true },
{ "sergiozygmunt.com", true },
@@ -31683,6 +32217,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "serverd.de", true },
{ "serverexpose.com", true },
{ "serverfrog.de", true },
+ { "serverlog.net", true },
{ "serveroffline.net", false },
{ "serverpedia.de", true },
{ "servers4all.co.uk", true },
@@ -31734,13 +32269,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "severine-trousselard.com", true },
{ "severntrentinsuranceportal.com", true },
{ "sevinci.ch", true },
- { "sevsey.ru", true },
{ "sevsopr.ru", true },
{ "sewafineseam.com", true },
{ "sewinginsight.com", true },
{ "sewoo.co.uk", true },
{ "sexaki.com", true },
{ "sexdocka.nu", true },
+ { "sexflare.net", true },
{ "sexmobil.de", true },
{ "sexservice.io", true },
{ "sexshopnet.com.br", true },
@@ -31763,6 +32298,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sgb.co", true },
{ "sgcaccounts.co.uk", true },
{ "sgi.org", true },
+ { "sgitc.de", true },
{ "sglibellen.de", true },
{ "sgroup-hitoduma.com", true },
{ "sgroup-rec.com", true },
@@ -31774,10 +32310,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sgtt.ch", true },
{ "sgutranscripts.org", true },
{ "sh-heppelmann.de", true },
- { "sh-network.de", false },
{ "sh0rt.zone", true },
{ "sh0shin.org", true },
{ "shaaaaaaaaaaaaa.com", true },
+ { "shaadithailand.com", true },
{ "shad.waw.pl", true },
{ "shadesofgrayadr.com", true },
{ "shadesofgraylaw.com", true },
@@ -31804,6 +32340,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shaicoleman.com", true },
{ "shainessim.com", true },
{ "shakan.ch", true },
+ { "shaken-kyoto.jp", true },
{ "shaken110.com", true },
{ "shakepeers.org", false },
{ "shakerwebdesign.net", true },
@@ -31839,17 +32376,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sharescope.co.uk", false },
{ "shareselecttools.com", true },
{ "sharevari.com", true },
- { "shariahlawcenter.com", true },
- { "shariahlawcenter.org", true },
- { "sharialawcenter.com", true },
- { "sharialawcenter.org", true },
{ "sharisharpe.com", true },
{ "shark5060.net", true },
{ "sharkie.org.za", true },
{ "sharperedge.pw", true },
{ "sharperedgecomputers.com", true },
{ "sharu.me", true },
- { "shasso.com", true },
+ { "sharvey.ca", true },
{ "shaun.net", true },
{ "shaunandamyswedding.com", true },
{ "shaunc.com", true },
@@ -31896,6 +32429,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shgroup.xyz", true },
{ "shgt.jp", true },
{ "shh-listen.com", true },
+ { "shh.sh", true },
{ "shiawasedo.co.jp", true },
{ "shichibukai.net", true },
{ "shico.org", true },
@@ -31907,16 +32441,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shiftdevices.com", true },
{ "shiftj.is", true },
{ "shiftleft.org", true },
- { "shiftpsych.com", true },
+ { "shiftpsych.com", false },
{ "shiga1.jp", true },
{ "shihadwiki.com", true },
{ "shijing.me", true },
{ "shikimori.one", true },
{ "shikimori.org", true },
{ "shimi.net", true },
+ { "shimo.im", true },
{ "shin-inc.jp", true },
{ "shinghoi.com", true },
+ { "shinglereplacementlv.com", true },
{ "shining.gifts", true },
+ { "shinko-osaka.jp", true },
{ "shinnyosangha.org", false },
{ "shinonome-lab.eu.org", true },
{ "shintoism.com", true },
@@ -31925,6 +32462,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shipard.cz", true },
{ "shipcloud.io", true },
{ "shiqi.ca", true },
+ { "shiqi.one", true },
{ "shiqisifu.cc", true },
{ "shirakaba-cc.com", true },
{ "shirao.jp", true },
@@ -31943,6 +32481,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shitsta.in", true },
{ "shivamber.com", true },
{ "shivammaheshwari.com", true },
+ { "shivammathur.com", true },
{ "shivatattvayoga.com", true },
{ "shlmail.info", true },
{ "shmibbles.me", true },
@@ -31960,6 +32499,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shop-hellsheadbangers.com", true },
{ "shop-s.net", true },
{ "shop.fr", true },
+ { "shop4d.com", true },
{ "shopadvies.nl", true },
{ "shopalike.cz", true },
{ "shopalike.dk", true },
@@ -31983,14 +32523,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shophisway.com", true },
{ "shopify.com", true },
{ "shopifycloud.com", true },
- { "shopkini.com", true },
{ "shoplandia.co", true },
+ { "shopperexperts.com", true },
{ "shoppia.se", true },
{ "shopping24.de", true },
{ "shoppr.dk", true },
{ "shopregional.com.br", true },
{ "shopsouthafrican.com", true },
{ "shopstart.dk", true },
+ { "shopstasy.com", true },
{ "shoptec.sk", true },
{ "shorebreaksecurity.com", true },
{ "shorehamfort.co.uk", true },
@@ -32001,7 +32542,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shorten.ninja", true },
{ "shoshin-aikido.de", true },
{ "shoshin.technology", true },
- { "shota.vip", true },
{ "shotbow.net", true },
{ "shotonwhat.com", true },
{ "shouldihookupwithmybarista.com", true },
@@ -32016,6 +32556,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "showroom.cam", true },
{ "showroom.co.uk", true },
{ "showroom.uk", true },
+ { "showroom113.ru", true },
{ "showsonar.com", true },
{ "shredriteservices.com", true },
{ "shreyansh26.me", true },
@@ -32023,6 +32564,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "shrinidhiclinic.in", true },
{ "shrinkhub.com", true },
{ "shrub.ca", true },
+ { "shrug.ml", true },
{ "shteiman.net", true },
{ "shu-fu.net", true },
{ "shuffleradio.nl", true },
@@ -32072,13 +32614,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sidnicio.us", true },
{ "sidonge.com", true },
{ "sidongkim.com", true },
+ { "sidpod.ru", true },
{ "siegemund-frankfurt.de", true },
{ "siel.nl", true },
{ "sielsystems.nl", true },
{ "sientemendoza.com.ar", true },
{ "sierpinska.co", true },
{ "sierpinska.eu", true },
- { "sieulog.com", true },
{ "siewert-kau.de", true },
{ "sift-tool.org", true },
{ "sig6.org", true },
@@ -32126,7 +32668,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "siliconchip.me", true },
{ "silkebaekken.no", true },
{ "silkebeckmann.de", true },
- { "silkon.net", true },
{ "sillisalaatti.fi", true },
{ "sillysnapz.co.uk", true },
{ "silo.org.br", true },
@@ -32213,13 +32754,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "silverkingalaska.com", true },
{ "silverlinkz.net", true },
{ "silverseen.com", true },
+ { "silverswanrecruitment.com", true },
{ "silverwind.io", true },
{ "silvine.xyz", true },
{ "silvobeat.blog", true },
{ "silvobeat.com", true },
{ "sim-karten.net", true },
{ "sim-minaoshi.jp", true },
- { "sim-sim.appspot.com", true },
{ "sim4seed.org", true },
{ "simam.de", true },
{ "simark.ca", true },
@@ -32266,6 +32807,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "simpip.com", true },
{ "simple.com", false },
{ "simpleclassiclife.com", true },
+ { "simplecoding.click", true },
{ "simplecontacts.com", true },
{ "simplednscrypt.org", true },
{ "simpleindianrecipes.com", true },
@@ -32327,6 +32869,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sinterama.biz", true },
{ "sinuelovirtual.com.br", true },
{ "sioeckes.hu", true },
+ { "sipc.org", true },
{ "siratalmustaqim.com", true },
{ "siraweb.org", true },
{ "sirbouncealotcastles.co.uk", true },
@@ -32353,6 +32896,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sit-brn.ru", true },
{ "sit.ec", true },
{ "sitc.sk", true },
+ { "site-helper.com", true },
{ "sitebuilderreport.com", true },
{ "sitedrive.fi", true },
{ "sitefactory.com.br", true },
@@ -32376,14 +32920,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sjaakgilsingfashion.nl", true },
{ "sjatsh.com", true },
{ "sjd.is", true },
+ { "sjdaws.com", true },
{ "sjis.me", true },
{ "sjleisure.co.uk", true },
{ "sjoorm.com", true },
{ "sjsmith.id.au", true },
{ "sjv4u.ch", true },
- { "sjzebs.com", true },
- { "sjzget.com", true },
- { "sjzybs.com", true },
{ "sk-net.cz", true },
{ "skala.io", true },
{ "skalarwelle.eu", true },
@@ -32434,6 +32976,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "skippy.dog", true },
{ "skischule-wildewiese.de", true },
{ "skizzen-zeichnungen.de", true },
+ { "skk.moe", true },
{ "skks.cz", true },
{ "sklepsamsung.pl", true },
{ "sklepwielobranzowymd.com", true },
@@ -32484,8 +33027,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "skynetz.tk", true },
{ "skype.com", true },
{ "skyquid.co.uk", true },
- { "skyris.co", true },
{ "skys-entertainment.com", true },
+ { "skyscapecanopies.com", true },
{ "skysuite.nl", true },
{ "skyynet.de", true },
{ "skyzimba.com.br", true },
@@ -32503,6 +33046,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "slane.cn", false },
{ "slangbellor.com", true },
{ "slanterns.net", true },
+ { "slapen17.nl", true },
{ "slash32.co.uk", true },
{ "slashcrypto.org", true },
{ "slate.to", true },
@@ -32526,7 +33070,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "slevermann.de", true },
{ "slevomat.cz", true },
{ "slicklines.co.uk", true },
- { "slicss.com", true },
{ "slidebatch.com", true },
{ "slides.zone", true },
{ "slik.ai", true },
@@ -32539,12 +33082,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "slink.hr", true },
{ "slip-gaming.tk", true },
{ "slneighbors.org", true },
+ { "slo-net.net", true },
{ "slo-tech.com", true },
{ "sloancom.com", true },
{ "slonep.net", true },
{ "slopeedge.com", true },
{ "slotarazzi.com", true },
- { "slotboss.co.uk", true },
{ "slotcar.com", false },
{ "slotfara.com", true },
{ "slotfara.net", true },
@@ -32556,6 +33099,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "slpower.com", true },
{ "slrd-isperih.com", true },
{ "sluciaconstruccion.com", true },
+ { "sluimann.de", true },
{ "sluitkampzeist.nl", false },
{ "slusham.com", true },
{ "slvh.fr", true },
@@ -32571,9 +33115,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "smadav.ml", true },
{ "smakassen.no", true },
{ "smallcloudsolutions.co.za", true },
+ { "smalldata.tech", true },
{ "smalldogbreeds.net", true },
{ "smalle-voet.de", true },
{ "smallhadroncollider.com", true },
+ { "smallpath.me", true },
{ "smalltalkconsulting.com", true },
{ "smaltimento-rifiuti.org", true },
{ "smaltimento.caserta.it", true },
@@ -32610,7 +33156,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "smartlogstock.com", true },
{ "smartlogtower.com", true },
{ "smartmarketingcoaching.com", true },
- { "smartmeal.ru", true },
{ "smartmessages.net", true },
{ "smartmomsmartideas.com", true },
{ "smartpass.government.ae", true },
@@ -32636,6 +33181,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sme-gmbh.net", true },
{ "smeetsengraas.com", true },
{ "smeso.it", true },
+ { "smiatek.name", true },
{ "smileandpay.com", true },
{ "smiledirectsales.com", true },
{ "smilessoftplay.co.uk", true },
@@ -32655,6 +33201,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "smm.im", true },
{ "smmlaba.io", true },
{ "smokeandmirrors.agency", true },
+ { "smokeus.dk", true },
{ "smol.cat", true },
{ "smoo.st", true },
{ "smoothcomp.com", true },
@@ -32679,7 +33226,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "smskeywords.co.uk", true },
{ "smskmail.com", true },
{ "smsprivacy.org", true },
- { "smtpdev.com", true },
+ { "smtp.in.th", true },
{ "smuncensored.com", true },
{ "smutba.se", true },
{ "smutek.net", true },
@@ -32687,15 +33234,18 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "snackbesteld.nl", true },
{ "snafu.cz", true },
{ "snakafya.com", true },
+ { "snake.dog", true },
{ "snap.com", true },
{ "snapappointments.com", true },
+ { "snapappts.com", true },
{ "snapchat.com", true },
{ "snapfinance.com", true },
{ "snapserv.ch", true },
{ "snapserv.net", true },
{ "snaptier.co", true },
+ { "snaptools.io", true },
{ "snatch.com.ua", true },
- { "snazel.co.uk", true },
+ { "snazel.co.uk", false },
{ "snazzie.nl", true },
{ "sncdn.com", true },
{ "sndbouncycastles.co.uk", true },
@@ -32707,7 +33257,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sneedit.com", true },
{ "sneedit.de", true },
{ "sneeuwhoogtes.eu", true },
- { "sneezry.com", true },
{ "snel4u.nl", true },
{ "snelbv.nl", true },
{ "snelshops.nl", true },
@@ -32727,7 +33276,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "snl.no", true },
{ "snoerendevelopment.nl", true },
{ "snopyta.com", true },
- { "snoringhq.com", true },
{ "snote.io", true },
{ "snoupon.com", true },
{ "snow-online.com", true },
@@ -32744,7 +33292,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "snowpaws.de", true },
{ "snowy.land", true },
{ "snowyluma.me", true },
+ { "snrat.com", true },
{ "snrub.co", true },
+ { "sntravel.co.uk", true },
{ "snuff.porn", true },
{ "snughealth.org.uk", true },
{ "sny.no", true },
@@ -32760,6 +33310,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sobie.ch", true },
{ "sobieray.dyndns.org", true },
{ "sobotkama.eu", true },
+ { "sobreporcentagem.com", true },
{ "soc.net", true },
{ "soccorso-stradale.org", true },
{ "sochi-sochno.ru", true },
@@ -32767,6 +33318,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "social-events.net", false },
{ "social-media-strategies.it", true },
{ "social-media-strategy.org.uk", true },
+ { "social-work-colleges.com", true },
{ "socialhams.net", true },
{ "socializam.com", true },
{ "socialmarketingday.nl", true },
@@ -32783,6 +33335,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "societyhilldance.com", true },
{ "socioambiental.org", true },
{ "sociobiology.com", true },
+ { "sociology-schools.com", true },
{ "sociopathy.org", true },
{ "sockeye.io", true },
{ "sockscap64.com", true },
@@ -32805,6 +33358,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "softbebe.com", true },
{ "softcreatr.de", false },
{ "softonic.com", true },
+ { "softonic.com.br", true },
+ { "softonic.jp", true },
+ { "softonic.pl", true },
{ "softplay4hire.co.uk", true },
{ "softprayog.in", true },
{ "softrobot.se", true },
@@ -32813,6 +33369,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "software.rocks", true },
{ "softwarebetrieb.de", true },
{ "softwaredesign.foundation", false },
+ { "softwarehardenberg.nl", true },
{ "softwarevoortherapeuten.nl", true },
{ "softwaylancing.com", true },
{ "softwerk-edv.de", true },
@@ -32859,6 +33416,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "solicafe.at", true },
{ "solidarita-kosovo.net", true },
{ "solidshield.com", true },
+ { "solidtuesday.com", true },
{ "solihullcarnival.co.uk", true },
{ "solihullinflatables.com", true },
{ "solihulllionsclub.org.uk", true },
@@ -32888,10 +33446,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "somanao.com", true },
{ "somcase.com.br", true },
{ "somecrazy.com", true },
- { "somepills.com", true },
{ "somersetscr.nhs.uk", true },
{ "somersetwellbeing.nhs.uk", true },
{ "sommefeldt.com", true },
+ { "somoshuemul.cl", true },
{ "somosnoticia.com.br", true },
{ "sompani.com", true },
{ "somuchbetterwithage.com", true },
@@ -32903,6 +33461,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sondergaard.de", true },
{ "sondersobk.dk", true },
{ "songluck.com", true },
+ { "songshuzuoxi.com", true },
{ "songsmp3.co", true },
{ "songsmp3.com", true },
{ "songsmp3.info", true },
@@ -32925,6 +33484,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "soomee.be", true },
{ "soomee1.be", true },
{ "soopure.nl", true },
+ { "soothemobilemassage.com.au", true },
{ "soph.jp", true },
{ "soph.us", true },
{ "sopher.io", true },
@@ -32939,8 +33499,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sorakumo.jp", true },
{ "sorcix.com", true },
{ "sorellecollection.com.au", true },
+ { "soren.xyz", true },
{ "sorenstudios.com", true },
{ "sorever.online", true },
+ { "sorincocorada.ro", true },
{ "sorrowfulunfounded.com", true },
{ "sortesim.com.br", true },
{ "soruly.com", true },
@@ -32954,7 +33516,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sosteric.si", true },
{ "sotadb.info", true },
{ "sotar.us", true },
- { "sotavasara.net", true },
{ "sotoasobi.net", true },
{ "sotthewes.nl", true },
{ "sou-co.jp", true },
@@ -32972,13 +33533,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "soumikghosh.com", true },
{ "soumya92.me", true },
{ "soundabout.nl", true },
- { "soundedj.com.br", true },
{ "soundeo.com", true },
{ "soundeo.net", true },
{ "soundhunter.xyz", false },
{ "soundonsound.com", true },
{ "soundprotectionllc.com", true },
{ "soundscrate.com", true },
+ { "soupcafe.org", true },
+ { "souqtajmeel.com", true },
{ "sour.is", true },
{ "souravsaha.com", true },
{ "sourcebox.be", false },
@@ -32989,10 +33551,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "southambouncycastle.co.uk", true },
{ "southamerican.dating", true },
{ "southbankregister.com.au", true },
- { "southernlights.xyz", true },
+ { "southdakotahealthnetwork.com", true },
{ "southernmost.us", true },
{ "southernstructuralsolutions.com", true },
{ "southernutahinfluencers.com", true },
+ { "southflanewsletter.com", true },
{ "southlakenissanparts.com", true },
{ "southmelbourne.apartments", true },
{ "southmorangtownhouses.com.au", true },
@@ -33007,6 +33570,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sovendus.de", true },
{ "sowlutions.com", true },
{ "soybase.org", true },
+ { "soydemac.com", true },
{ "sozai-good.com", true },
{ "sozialy.com", true },
{ "sozon.ca", true },
@@ -33063,6 +33627,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "speak-polish.com", true },
{ "spearfishingmx.com", true },
{ "speargames.net", true },
+ { "specdrones.us", true },
{ "specialtyalloys.ca", true },
{ "speciesism.com", true },
{ "spectrosoftware.de", true },
@@ -33087,8 +33652,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "spellcheckci.com", true },
{ "spellchecker.net", true },
{ "spenglerei-shop.de", true },
+ { "sperandii.it", true },
{ "sperec.fr", true },
- { "sperohub.com", true },
{ "sperrstun.de", true },
{ "spesys-services.fr", true },
{ "spha.info", true },
@@ -33159,7 +33724,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sport-in-sundern.de", true },
{ "sport-potreby.cz", true },
{ "sport-potreby.sk", true },
- { "sport-socken.net", true },
{ "sportakrobatik.at", true },
{ "sportbetuwe.nl", true },
{ "sporter.com", true },
@@ -33167,6 +33731,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sportovnidum.cz", true },
{ "sportparks.com", true },
{ "sportparks.org", true },
+ { "sports-colleges.com", true },
{ "sports.dating", true },
{ "sportsjaw.com", true },
{ "sportsmansblog.com", true },
@@ -33214,7 +33779,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "spydersec.com", true },
{ "spyprofit.ru", true },
{ "spyroszarzonis.com", true },
- { "sqkaccountancy.co.uk", true },
{ "sql-und-xml.de", true },
{ "sqlapius.net", true },
{ "sqlfeatures.com", true },
@@ -33224,9 +33788,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "square-gaming.org", true },
{ "square-src.de", false },
{ "square.com", false },
- { "squareonebgc.com.ph", true },
+ { "squarelab.it", true },
{ "squareup.com", false },
{ "squawk.cc", true },
+ { "squeakql.online", true },
{ "squeezemetrics.com", true },
{ "squido.ch", true },
{ "squidparty.com", true },
@@ -33298,6 +33863,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sso.to", false },
{ "ssready.io", true },
{ "ssready.org", true },
+ { "ssrfq.com", true },
+ { "sssppp.gq", true },
{ "sstaging.com", true },
{ "sstewartgallus.com", true },
{ "ssuc.net", true },
@@ -33306,7 +33873,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "st-antonius-kuenzell.de", true },
{ "st-innovationcup.com", true },
{ "st-kilian-markt-erlbach.de", true },
- { "st-news.de", true },
{ "st-shakyo.jp", true },
{ "st-steuern.de", true },
{ "staatschutz.at", true },
@@ -33315,12 +33881,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stablelib.com", true },
{ "stackpath.com", true },
{ "stackptr.com", true },
- { "stacktile.io", false },
{ "stackunderflow.com", true },
{ "staddlestonesbowness.co.uk", true },
{ "stadm.com", true },
{ "stadsbygd.info", true },
{ "stadt-apotheke-muensingen.de", true },
+ { "stadtbauwerk.at", false },
+ { "stadtbuecherei-bad-wurzach.de", true },
{ "stadterneuerung-hwb.de", true },
{ "stadtpapa.de", true },
{ "stadtplan-ilmenau.de", true },
@@ -33337,10 +33904,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stair.ch", true },
{ "stairfallgames.com", true },
{ "stairlin.com", true },
- { "stakestrategy.com", true },
- { "staklim-malang.info", true },
{ "stako.jp", true },
{ "staktrace.com", true },
+ { "stalder.work", true },
{ "staljedevledder.nl", true },
{ "stalker-shop.com", true },
{ "stalkr.net", true },
@@ -33355,14 +33921,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "standard.co.uk", true },
{ "standardequipment.com", true },
{ "standards.gov", true },
+ { "stannri.org", true },
{ "stanron.com", true },
+ { "stanthony-hightstown.net", true },
{ "stanthonymaryclaret.org", true },
{ "star-citizen.wiki", true },
{ "star-clean.it", true },
{ "starcoachservices.ca", true },
{ "starcomproj.com", true },
{ "stardanceacademy.net", true },
- { "stardust-entertainments.co.uk", true },
{ "stareplanymiast.pl", true },
{ "starflix.uk", true },
{ "starfm.de", true },
@@ -33374,13 +33941,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "starka.st", true },
{ "starkbim.com", true },
{ "starking.net.cn", true },
- { "starlightentertainmentdevon.co.uk", true },
{ "starlim.co.in", true },
{ "starlim.org", true },
{ "starmtech.fr", true },
{ "starpeak.org", true },
{ "starphotoboothsni.co.uk", true },
{ "starsam80.net", true },
+ { "starsguru.com", true },
{ "starsing.bid", true },
{ "starskim.cn", true },
{ "starstreak.net", false },
@@ -33449,6 +34016,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "steborio.pw", true },
{ "steckel.cc", true },
{ "stedb.eu", true },
+ { "stedbg.net", true },
{ "steef389.eu", true },
{ "steel-roses.de", true },
{ "steelephys.com.au", true },
@@ -33464,7 +34032,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stefanorossi.it", true },
{ "stefanovski.io", true },
{ "stefanvanburen.xyz", true },
+ { "stefanvd.net", true },
+ { "stefany.eu", true },
{ "steffentreeservice.com", true },
+ { "stefpastoor.nl", true },
{ "stegmaier-immobilien.de", true },
{ "steidlewirt.de", true },
{ "steigerlegal.ch", true },
@@ -33525,6 +34096,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "steuer-voss.de", true },
{ "steuerberater-essen-steele.com", true },
{ "steuerkanzlei-edel.de", true },
+ { "steuerkanzlei-und-wirtschaftsberater-manke.de", true },
{ "steuern-recht-wirtschaft.de", true },
{ "steuerseminare-graf.de", true },
{ "steuertipps-sonderausgaben.de", true },
@@ -33553,6 +34125,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "steyaert.be", false },
{ "stforex.com", false },
{ "stfw.info", true },
+ { "stgeorgegolfing.com", true },
+ { "stgm.org", true },
{ "stian.net", true },
{ "stichtingliab.nl", true },
{ "stichtingscholierenvervoerzeeland.nl", true },
@@ -33564,15 +34138,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stickertuningfetzt.de", false },
{ "stickies.io", true },
{ "stickmanventures.com", true },
+ { "stickstueb.de", true },
{ "stickswag.eu", true },
{ "stiffordacademy.org.uk", true },
{ "stift-kremsmuenster.at", true },
{ "stiftemaskinen.no", true },
{ "stigharder.com", true },
+ { "stigviewer.com", true },
{ "stijncrevits.be", true },
{ "stijnodink.nl", true },
{ "stikic.me", true },
- { "stikkie.me", true },
{ "stilartmoebel.de", true },
{ "stilecop.com", true },
{ "stillnessproject.com", true },
@@ -33586,12 +34161,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stipsan.me", true },
{ "stirblaut.de", true },
{ "stirlingpoon.com", true },
+ { "stisaac.org", true },
+ { "stisidores.org", true },
{ "stitchfiddle.com", true },
{ "stitchinprogress.com", true },
{ "stivesbouncycastlehire.co.uk", true },
{ "stjohnin.com", true },
{ "stjohnsottsville.org", true },
{ "stjoseph-stcatherine.org", true },
+ { "stjosephspringcity.com", true },
{ "stjscatholicchurch.org", true },
{ "stjustin.org", true },
{ "stln.ml", true },
@@ -33599,9 +34177,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stlukenh.org", true },
{ "stlukesbrandon.org", true },
{ "stm-net.de", true },
- { "stma.is", true },
+ { "stmariagoretti.net", true },
{ "stmarthachurch.com", true },
{ "stmaryextra.uk", true },
+ { "stmattsparish.com", true },
{ "stmichaellvt.com", true },
{ "stmkza.net", true },
{ "stmlearning.com", true },
@@ -33616,6 +34195,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stoffelnet.de", true },
{ "stogiesandmash.com", true },
{ "stokvistrading.nl", true },
+ { "stolbart.com", true },
{ "stolin.info", true },
{ "stolina.de", false },
{ "stolkpotplanten.nl", true },
@@ -33634,7 +34214,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stopfraud.gov", false },
{ "stopthethyroidmadness.com", true },
{ "storageideas.uk", true },
- { "storageshedsnc.com", true },
{ "stordbatlag.no", true },
{ "storedsafe.com", true },
{ "storeit.co.uk", true },
@@ -33647,11 +34226,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "storycollective.nl", true },
{ "storyland.ie", true },
{ "storysift.news", true },
- { "storytea.top", true },
{ "storytell.com", true },
{ "storytime.hu", true },
{ "stouter.nl", true },
{ "stoxford.com", true },
+ { "stpatrickbayshore.org", true },
{ "straatderzotten.nl", true },
{ "strafensau.de", true },
{ "strahlende-augen.info", true },
@@ -33699,7 +34278,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stremio.com", true },
{ "strengthroots.com", true },
{ "stretchmyan.us", true },
- { "stretchpc.com", true },
{ "striata.com", true },
{ "striatadev.com", true },
{ "stricted.net", true },
@@ -33727,6 +34305,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "strongsalpinesucculents.com", true },
{ "strongtowerpc.com", true },
{ "stroomacties.nl", true },
+ { "strosemausoleum.com", true },
{ "stroseoflima.com", true },
{ "strozik.de", true },
{ "structurally.net", true },
@@ -33744,7 +34323,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "stuartmorris.tel", true },
{ "stuarts.xyz", false },
{ "stuco.co", true },
- { "stucorweb.com", true },
{ "stucydee.nl", true },
{ "studenckiemetody.pl", true },
{ "student-eshop.cz", true },
@@ -33785,6 +34363,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "studiovaud.com", true },
{ "studipro-formation.fr", true },
{ "studipro-marketing.fr", true },
+ { "studisys.net", true },
{ "studium.cz", true },
{ "studlan.no", true },
{ "studyin.jp", true },
@@ -33821,6 +34400,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "styles.pm", true },
{ "stylett.ru", true },
{ "stylewish.me", true },
+ { "styloeart.com", true },
{ "stypr.com", true },
{ "su1ph3r.io", true },
{ "suaudeau.fr", true },
@@ -33830,7 +34410,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "subastasdecarros.net", true },
{ "subculture.live", true },
{ "subdev.org", true },
- { "sublevel.net", false },
{ "sublimebits.com", true },
{ "sublocale.com", true },
{ "submedia.tv", true },
@@ -33846,6 +34425,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "subversive-tech.com", true },
{ "succ.in", true },
{ "succesprojekter.dk", true },
+ { "successdeliv.com", true },
{ "suchmaschinen-werkstatt.de", true },
{ "suckmyan.us", false },
{ "sucretown.net", true },
@@ -33853,6 +34433,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sudaraka.org", true },
{ "sudmotor-occasions.be", true },
{ "sudo-i.net", true },
+ { "sudo.li", true },
{ "sudo.org.au", true },
{ "sudo.ws", true },
{ "sudokian.io", true },
@@ -33895,7 +34476,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sumoatm.com", false },
{ "sumthing.com", true },
{ "sun-leo.co.jp", true },
- { "sun-wellness-online.com.vn", true },
{ "sunboxstore.jp", true },
{ "sunbritetv.com", true },
{ "sunchasercats.com", true },
@@ -33923,11 +34503,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "suool.net", true },
{ "supa.sexy", true },
{ "supastuds.com", true },
+ { "supcoronado.com", true },
{ "superaficionados.com", true },
{ "superbart.nl", true },
{ "superbdistribute.com", true },
{ "superbouncebouncycastles.com", true },
- { "superbowlkneel.com", true },
{ "supercalorias.com", true },
{ "supercastlesadelaide.com.au", true },
{ "supercastlesbrisbane.com.au", true },
@@ -33942,12 +34522,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "superhappiness.com", true },
{ "superhome.com.au", true },
{ "supermae.pt", true },
- { "supermarx.nl", true },
{ "supermercadosdia.com.ar", true },
{ "supermercato24.it", true },
- { "supermil.ch", true },
{ "supern0va.net", true },
{ "supernaut.info", true },
+ { "supersec.es", true },
{ "supersole.net", true },
{ "supersonnig-festival.de", true },
{ "supersonnigfestival.de", true },
@@ -33992,6 +34571,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "suruifu.com", true },
{ "suruifu.tk", true },
{ "survature.com", true },
+ { "surveillance104.com", true },
{ "surveyhealthcare.com", true },
{ "surveyinstrumentsales.com", true },
{ "surveymill.co.uk", true },
@@ -34003,7 +34583,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "susanna-komischke.de", true },
{ "susanvelez.com", true },
{ "susc.org.uk", true },
- { "sush.us", true },
{ "sushi.roma.it", true },
{ "sushibesteld.nl", true },
{ "sushikatze.de", true },
@@ -34021,6 +34600,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "suwalls.com", true },
{ "suzi3d.com", true },
{ "suziekovner.com", true },
+ { "suzukikazuki.com", true },
{ "suzukimarinepress.com", true },
{ "sv-1966-medenbach.de", true },
{ "sv-turm-hohenlimburg.de", true },
@@ -34040,11 +34620,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "svendubbeld.nl", true },
{ "sveneckelmann.de", true },
{ "svenjaundchristian.de", true },
+ { "svenluijten.com", false },
{ "svenmuller.nl", true },
{ "svennd.be", true },
{ "svetandroida.cz", true },
{ "svetlilo.com", true },
- { "svetzitrka.cz", false },
{ "svht.nl", true },
{ "svijet-medija.hr", true },
{ "svinformatica.es", true },
@@ -34093,6 +34673,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "swiss-apartments.com", true },
{ "swiss-connection.net", true },
{ "swiss-cyber-experts.ch", true },
+ { "swiss-vanilla.ch", true },
+ { "swiss-vanilla.com", true },
{ "swisscannabis.club", true },
{ "swissdojo.ch", true },
{ "swisselement365.com", true },
@@ -34102,11 +34684,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "swisslinux.org", true },
{ "swisstechassociation.ch", true },
{ "swisstechtalks.ch", true },
+ { "swissvanilla.ch", true },
+ { "swissvanilla.com", true },
{ "switch-trader.com", true },
{ "switch.moe", true },
{ "switcheo.exchange", true },
{ "switcheo.rocks", true },
{ "switzerland-family-office.com", true },
+ { "swn-nec.de", true },
{ "swordfeng.xyz", true },
{ "swqa.hu", true },
{ "swuosa.org", false },
@@ -34115,6 +34700,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "swyn.net", true },
{ "sx8.ovh", true },
{ "sxistolithos.gr", true },
+ { "sy-anduril.de", true },
{ "sy24.ru", true },
{ "syajvo.if.ua", true },
{ "syamutodon.xyz", true },
@@ -34156,6 +34742,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "sympraxisconsulting.com", true },
{ "symptome-erklaert.de", true },
{ "synabi.com", true },
+ { "synack.uk", true },
{ "synaptickz.me", true },
{ "synatra.co", true },
{ "sync-it.no", true },
@@ -34178,6 +34765,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "syntheticurinereview.com", true },
{ "synthetik.com", true },
{ "syoier.com", true },
+ { "syplasticsurgery.com", true },
{ "syriatalk.biz", true },
{ "syriatalk.org", true },
{ "sysadm.guru", true },
@@ -34189,7 +34777,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "syslogic.io", true },
{ "sysmike.de", true },
{ "systea.fr", true },
- { "system-m.de", true },
+ { "system-m.de", false },
{ "system.cf", true },
{ "system.is", true },
{ "system12.pl", true },
@@ -34252,7 +34840,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "taartbesteld.nl", true },
{ "tabarnak.ga", true },
{ "tabernadovinho.com.br", true },
- { "tabhui.com", true },
{ "tabi-news.com", true },
{ "tabi-runrun.com", true },
{ "tabithawebb.co.uk", true },
@@ -34278,7 +34865,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tadu.de", true },
{ "tagabrand.co.uk", true },
{ "tagdocumentary.com", true },
- { "tagesmutter-zwitscherlinge.de", true },
{ "taggedpdf.com", false },
{ "taglioepiega.com", true },
{ "taglioepiega.eu", true },
@@ -34289,6 +34875,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tahosalodge.org", true },
{ "tai-in.com", true },
{ "tai-in.net", true },
+ { "tailpuff.net", false },
{ "tails.boum.org", true },
{ "taimane.com", true },
{ "taiphanmem.net", true },
@@ -34300,7 +34887,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "taizegroep.nl", true },
{ "tajper.pl", true },
{ "take1give1.com", false },
+ { "takedownthissite.com", true },
{ "takeitoffline.co.uk", true },
+ { "takemoto-ped.com", true },
{ "taken.pl", true },
{ "takeshifujimoto.com", true },
{ "takk.pl", true },
@@ -34334,6 +34923,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "talroo.com", true },
{ "talun.de", true },
{ "tam-moon.com", true },
+ { "tam-safe.com", true },
+ { "tamaraboutique.com", true },
{ "tamashimx.net", true },
{ "tamasszabo.net", true },
{ "tambre.ee", true },
@@ -34342,10 +34933,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tammy.pro", true },
{ "tampabaybusinesslistings.com", true },
{ "tamposign.fr", true },
- { "tamriel-rebuilt.org", true },
+ { "tanacio.com", true },
{ "tanak3n.xyz", false },
{ "tancredi.nl", true },
- { "tandem-trade.ru", false },
{ "tandempartnerships.com", true },
{ "tandilmap.com.ar", true },
{ "tandk.com.vn", true },
@@ -34376,7 +34966,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tanzo.io", true },
{ "taoburee.com", true },
{ "taoways.com", true },
- { "tapakgram.com", true },
{ "taplamvan.net", true },
{ "taplemon.at", true },
{ "taplemon.com", true },
@@ -34385,6 +34974,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "taquilla.com", true },
{ "taqun.club", true },
{ "tar-mag.com", true },
+ { "taranis.re", true },
{ "tarantul.org.ua", true },
{ "tarasecurity.co.uk", true },
{ "tarasecurity.com", true },
@@ -34424,7 +35014,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tatsidou.gr", true },
{ "tattoo.dating", true },
{ "tattvaayoga.com", true },
- { "taunhanh.us", true },
+ { "tatuantes.com", true },
+ { "taunhanh.us", false },
{ "tavolaquadrada.com.br", true },
{ "tavsys.net", true },
{ "tax-guard.com", true },
@@ -34477,6 +35068,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tcnapplications.com", true },
{ "tcptun.com", true },
{ "tcpweb.net", true },
+ { "tcspartner.net", true },
{ "tcvvip.com", true },
{ "tcwis.com", true },
{ "tdchrom.com", true },
@@ -34514,7 +35106,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "teamliquidpro.com", true },
{ "teammateworld.com", true },
{ "teammathics.com", true },
- { "teamnetsol.com", true },
{ "teamninjaapp.com", true },
{ "teamnissannorthparts.com", true },
{ "teamnorthgermany.de", true },
@@ -34522,7 +35113,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "teampaddymurphy.ie", true },
{ "teamtouring.net", true },
{ "teamtrack.uk", true },
+ { "teamtravel.co", true },
{ "teamup.com", true },
+ { "teamup.rocks", true },
{ "teamupturn.com", true },
{ "teamupturn.org", true },
{ "teamusec.de", true },
@@ -34536,7 +35129,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tecart-system.de", true },
{ "tecartcrm.de", true },
{ "tech-blogger.net", true },
- { "tech-clips.com", true },
{ "tech-director.ru", true },
{ "tech-essential.com", true },
{ "tech-rat.com", true },
@@ -34572,6 +35164,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "technicallyeasy.net", true },
{ "technicalsystemsprocessing.com", true },
{ "techniclab.net", true },
+ { "techniclab.ru", true },
{ "technifocal.com", true },
{ "technik-boeckmann.de", true },
{ "technikblase.fm", true },
@@ -34579,11 +35172,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "technoinfogroup.it", true },
{ "technologie-innovation.fr", true },
{ "technologyand.me", true },
+ { "technologyhound.org", true },
{ "technologysi.com", true },
{ "technoparcepsilon.fr", true },
{ "technoscoots.com", true },
{ "technosorcery.net", true },
- { "technoswag.ca", true },
{ "technotonic.co.uk", true },
{ "techold.ru", true },
{ "techorbiter.com", true },
@@ -34599,7 +35192,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "techtalks.no", true },
{ "techtrader.ai", true },
{ "techtrader.io", true },
- { "techtuts.info", true },
{ "techvalue.gr", true },
{ "techview.link", true },
{ "techviewforum.com", true },
@@ -34651,6 +35243,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "teknolit.com", true },
{ "tekstschrijvers.net", true },
{ "tektuts.com", true },
+ { "tekuteku.jp", true },
{ "telamon.eu", true },
{ "telamon.fr", true },
{ "tele-alarme.ch", true },
@@ -34707,7 +35300,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tenenz.com", true },
{ "tenisservis.eu", true },
{ "tenkofx.com", true },
- { "tenma.pro", true },
{ "tennisadmin.com", true },
{ "tennismindgame.com", true },
{ "tenno.tools", true },
@@ -34715,7 +35307,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tenpolab.com", true },
{ "tenseapp.pl", true },
{ "tenshoku-hanashi.com", true },
- { "tent.io", true },
{ "tenta.com", true },
{ "tentabrowser.com", true },
{ "tentations-voyages.com", false },
@@ -34738,9 +35329,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "terlindung.com", true },
{ "termax.me", true },
{ "terminalvelocity.co.nz", true },
+ { "termino.eu", true },
{ "terminsrakning.se", true },
{ "termitemounds.org", true },
- { "termitinitus.org", true },
{ "termografiranje.si", true },
{ "termux.com", true },
{ "terra.fitness", true },
@@ -34759,6 +35350,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "terrastaffinggroup.com", false },
{ "terraweb.net", true },
{ "terresmagiques.com", true },
+ { "terrorbilly.com", true },
{ "terrty.net", true },
{ "terryjohnsononline.com", true },
{ "tes.com", true },
@@ -34771,6 +35363,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "teslamagician.com", true },
{ "tesoro.pr", true },
{ "tessai.ga", true },
+ { "test-aankoop.be", true },
+ { "test-achats.be", true },
{ "test-textbooks.com", true },
{ "test.de", true },
{ "test.support", true },
@@ -34779,9 +35373,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "testgeomed.ro", true },
{ "testi.info", true },
{ "testomato.com", true },
- { "testosterone-complex.com", true },
{ "testosteronedetective.com", true },
- { "testpornsite.com", true },
{ "testsuite.org", true },
{ "testuje.net", true },
{ "tetedelacourse.ch", true },
@@ -34850,6 +35442,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thaiforest.ch", true },
{ "thaihomecooking.com", true },
{ "thailandpharmacy.net", true },
+ { "thailandpropertylisting.com", true },
{ "thairehabassociation.com", true },
{ "thajskyraj.com", true },
{ "thala.fr", true },
@@ -34889,10 +35482,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "theanticellulitediet.com", true },
{ "theaps.net", true },
{ "theastrocoach.com", true },
+ { "theatre-schools.com", true },
{ "thebakers.com.br", true },
{ "thebakery2go.de", true },
{ "thebannerstore.com", true },
- { "thebarrens.nu", true },
+ { "thebarneystyle.com", true },
{ "thebasebk.org", true },
{ "thebcm.co.uk", true },
{ "thebeginningviolinist.com", true },
@@ -34936,7 +35530,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "theconcordbridge.azurewebsites.net", true },
{ "thecondobuyers.com", true },
{ "thecookiejar.me", true },
- { "thecozycastle.com", true },
{ "thecrazytravel.com", true },
{ "thecrew-exchange.com", true },
{ "thecrochetcottage.net", true },
@@ -35076,6 +35669,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "theory.org", true },
{ "theoscure.eu", true },
{ "theoutline.com", true },
+ { "thepaffy.de", true },
{ "thepartner.co.uk", true },
{ "thepartydoctors.co.uk", true },
{ "thepasteb.in", true },
@@ -35084,6 +35678,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thepaymentscompany.com", true },
{ "thepb.in", true },
{ "thepeninsulaires.com", true },
+ { "thepharm.co.nz", true },
{ "thephonecaseplace.com", true },
{ "thephp.cc", true },
{ "thepiabo.ovh", true },
@@ -35105,6 +35700,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "theralino.de", true },
{ "theramo.re", true },
{ "therandombits.com", true },
+ { "therapiemi.ch", true },
{ "therapynotes.com", true },
{ "therapyportal.com", true },
{ "therapysxm.com", true },
@@ -35115,11 +35711,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "therepublicofliverpool.com", true },
{ "theresa-mayer.eu", true },
{ "therevenge.me", true },
- { "therewill.be", true },
+ { "therhetorical.ml", true },
{ "thermalbad-therme.de", true },
{ "thermity.com", true },
{ "thermolamina.nl", true },
- { "theroks.com", true },
+ { "thermorecetas.com", true },
{ "theropes.nyc", true },
{ "theroyalmarinescharity.org.uk", true },
{ "therugswarehouse.co.uk", true },
@@ -35160,19 +35756,20 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thestationatwillowgrove.com", true },
{ "thesteins.org", false },
{ "thestoneage.de", true },
+ { "thestonegroup.de", false },
{ "thestory.ie", true },
{ "thestoryshack.com", true },
- { "thestral.pro", true },
- { "thestralbot.com", true },
{ "thestrategyagency.com.au", true },
{ "thestudyla.com", true },
{ "thestyle.city", true },
+ { "thestyleforme.com", true },
{ "thesuppercircle.com", true },
{ "theswissbay.ch", true },
{ "thetechnical.me", true },
{ "thetenscrolls.com", true },
{ "thethreepercent.marketing", true },
{ "thetomharling.com", true },
+ { "thetotalemaildelivery.com", true },
{ "thetree.ro", true },
{ "thetrendspotter.net", true },
{ "thetuxkeeper.de", false },
@@ -35180,18 +35777,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "theunitedstates.io", true },
{ "thevacweb.com", true },
{ "thevalentineconstitution.com", true },
+ { "theverybusyoffice.co.uk", true },
{ "thevgg.com", false },
- { "thewagesroom.co.uk", true },
+ { "thevoya.ga", true },
{ "thewarrencenter.org", true },
{ "thewaxhouse.academy", true },
{ "thewaxhouse.de", true },
+ { "thewayofthedojo.com", true },
{ "thewebdexter.com", true },
{ "thewebflash.com", true },
{ "thewebsitedoctors.co.uk", true },
{ "thewebsitemarketingagency.com", true },
{ "thewhitehat.club", true },
{ "thewhitneypaige.com", true },
- { "thewindow.com", true },
{ "thewinstonatlyndhurst.com", true },
{ "thewoodkid.com.au", true },
{ "thewoolroom.com.au", true },
@@ -35237,7 +35835,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thinkrealty.com", true },
{ "thinktux.net", true },
{ "thirdbearsolutions.com", true },
- { "thirdworld.moe", true },
{ "thiry-automobiles.net", true },
{ "thisbrownman.com", true },
{ "thiscloudiscrap.com", false },
@@ -35274,14 +35871,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thomasmcfly.com", true },
{ "thomasmeester.nl", false },
{ "thomasmerritt.de", true },
- { "thomassen.sh", false },
+ { "thomassen.sh", true },
{ "thomasstevensmusic.com", true },
{ "thomastimepieces.com.au", true },
{ "thomasverhelst.be", true },
- { "thomasvochten.com", true },
{ "thomaswoo.com", true },
+ { "thompsonfamily.cloud", true },
{ "thomsonscleaning.co.uk", true },
- { "thomspooren.nl", true },
{ "thomwiggers.nl", true },
{ "thor.edu", true },
{ "thor.re", true },
@@ -35291,7 +35887,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thorstenschaefer.name", true },
{ "thosci.com", true },
{ "thotpublicidad.com", true },
- { "thoughtlessleaders.online", true },
{ "thouni.de", true },
{ "thousandgreens.com", true },
{ "thousandoakselectrical.com", true },
@@ -35310,6 +35905,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "threelions.ch", true },
{ "threema.ch", true },
{ "threexxx.ch", true },
+ { "threit.de", true },
{ "threv.net", true },
{ "thriftdiving.com", true },
{ "thrivesummit.com", true },
@@ -35325,7 +35921,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "thummer.net", true },
{ "thunderfield-boat.co.uk", true },
{ "thunderkeys.net", true },
- { "thundr.eu", true },
{ "thunraz.com", true },
{ "thusoy.com", true },
{ "thuthuatios.com", true },
@@ -35348,6 +35943,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ticfleet.com", true },
{ "tichieru.pw", true },
{ "ticketassist.nl", true },
+ { "ticketdriver.com", true },
{ "ticketluck.com", true },
{ "ticketmates.com.au", true },
{ "ticketmaze.com", true },
@@ -35370,7 +35966,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tier-1-entrepreneur.com", true },
{ "tierarztpraxis-bogenhausen.de", true },
{ "tierarztpraxis-weinert.de", true },
- { "tiernanx.com", true },
{ "tierraprohibida.net", true },
{ "ties.com", true },
{ "tiew.pl", true },
@@ -35423,7 +36018,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "timebox.tk", true },
{ "timeglass.de", true },
{ "timeless-photostudio.com", true },
- { "timetab.org", true },
+ { "timelessskincare.co.uk", true },
{ "timetech.io", true },
{ "timetotrade.com", true },
{ "timewasters.nl", true },
@@ -35442,7 +36037,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "timsayedmd.com", true },
{ "timtaubert.de", true },
{ "timtelfer.com", true },
+ { "timtj.ca", true },
{ "timvivian.ca", true },
+ { "timweb.ca", true },
{ "timysewyn.be", true },
{ "tina.media", true },
{ "tinastahlschmidt.de", true },
@@ -35494,7 +36091,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tit-mail.de", true },
{ "tit.systems", true },
{ "titandirect.co.uk", true },
- { "titanous.com", true },
{ "titansized.com", true },
{ "titanwaterproofing.com.au", true },
{ "titelseite.ch", true },
@@ -35524,7 +36120,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tkusano.jp", true },
{ "tkw01536.de", false },
{ "tl.gg", true },
+ { "tlach.cz", true },
{ "tlca.org", true },
+ { "tlcnet.info", true },
{ "tlehseasyads.com", true },
{ "tleng.de", true },
{ "tlo.xyz", true },
@@ -35536,15 +36134,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tlsrobot.se", true },
{ "tlthings.net", true },
{ "tlumaczenie.com", true },
+ { "tlyphed.net", true },
{ "tlys.de", true },
{ "tmakiguchi.org", true },
+ { "tmas.dk", true },
{ "tmberg.cf", true },
{ "tmberg.ga", true },
{ "tmberg.gq", true },
{ "tmberg.ml", true },
{ "tmberg.tk", true },
{ "tmc.com.mt", true },
- { "tmconnects.com", true },
{ "tmcpromotions.co.uk", true },
{ "tmcreationweb.com", true },
{ "tmdb.biz", true },
@@ -35573,7 +36172,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tob-rulez.de", true },
{ "tobacco.gov", true },
{ "tobaccolocker.com", true },
- { "tobedo.net", true },
{ "tober-cpag.de", true },
{ "tobi-mayer.de", true },
{ "tobias-bauer.de", true },
@@ -35613,6 +36211,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "todaymeow.com", true },
{ "toddfry.com", true },
{ "todocracy.com", true },
+ { "todoereaders.com", true },
{ "todoescine.com", true },
{ "todoist.com", true },
{ "todon.fr", true },
@@ -35628,6 +36227,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "togech.jp", true },
{ "togetter.com", true },
{ "toheb.de", false },
+ { "tohochofu-sportspark.com", true },
{ "tohokinemakan.tk", true },
{ "tokaido-kun.jp", true },
{ "tokaido.com", true },
@@ -35653,6 +36253,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tokyomakino.com", true },
{ "tokyovipper.com", true },
{ "tolboe.com", true },
+ { "toldositajuba.com", true },
{ "toleressea.fr", true },
{ "toles-sur-mesure.fr", true },
{ "tolle-wolke.de", true },
@@ -35660,9 +36261,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tollfreeproxy.com", true },
{ "tom-geiger.de", true },
{ "tom-kunze.de", true },
- { "tom-maxwell.com", true },
{ "tom.horse", true },
{ "tom.je", true },
+ { "tom94.net", true },
{ "tomabrafix.de", true },
{ "tomahawk.ca", true },
{ "tomandmara.com", true },
@@ -35676,6 +36277,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tomatenaufdenaugen.de", true },
{ "tomatis-nantes.com", true },
{ "tomaw.net", true },
+ { "tomaz.eu", true },
{ "tombaker.me", true },
{ "tomberek.info", true },
{ "tombrossman.com", true },
@@ -35688,6 +36290,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tomharris.tech", true },
{ "tomi.cc", true },
{ "tomica.me", true },
+ { "tomik.cloud", true },
{ "tomiler.com", true },
{ "tomjans.nl", true },
{ "tomjn.com", true },
@@ -35701,7 +36304,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tomnatt.com", true },
{ "tomo.gr", false },
{ "tomosm.net", true },
- { "tomoyaf.com", true },
{ "tomravinmd.com", true },
{ "tomrei.com", true },
{ "tomrichards.net", true },
@@ -35747,6 +36349,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tonkinson.com", true },
{ "tonkinwilsonvillenissanparts.com", true },
{ "tonnycat.com", true },
+ { "tono.us", true },
{ "tonsit.com", true },
{ "tonsit.org", true },
{ "tontonnews.net", true },
@@ -35768,6 +36371,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "toomy.ddns.net", true },
{ "toonpool.com", true },
{ "toonsburgh.com", true },
+ { "toontownrewritten.com", true },
{ "toool.nl", true },
{ "toool.org", true },
{ "tooolroc.org", false },
@@ -35778,6 +36382,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "top-obaly.cz", true },
{ "top-opakowania.pl", true },
{ "top5hosting.co.uk", true },
+ { "top9.fr", true },
{ "topaxi.ch", true },
{ "topaxi.codes", true },
{ "topbigdeals.com", true },
@@ -35803,6 +36408,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "topnotepad.com", true },
{ "topodin.com", true },
{ "toponlinecasinosites.co.uk", true },
+ { "toppercan.es", true },
{ "toppointrea.com", true },
{ "topprice.ua", true },
{ "topsailtechnologies.com", true },
@@ -35813,7 +36419,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "toptexture.com", true },
{ "toptheto.com", true },
{ "topvertimai.lt", true },
- { "topwin.la", true },
{ "topwindowcleaners.co.uk", true },
{ "topworktops.co.uk", true },
{ "toracon.org", true },
@@ -35828,6 +36433,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "torn1.se", true },
{ "torngalaxy.com", true },
{ "torogroups.com", true },
+ { "torontoaccesscontrol.com", true },
{ "torontocorporatelimo.services", true },
{ "torontostarts.com", true },
{ "torproject.org", false },
@@ -35853,13 +36459,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "toshen.com", true },
{ "toshkov.com", true },
{ "toskana-appartement.de", true },
+ { "tosolini.info", true },
{ "tosostav.cz", true },
{ "tosteberg.se", true },
{ "tostu.de", true },
+ { "totaku.ru", true },
{ "totalbeauty.co.uk", true },
{ "totalbike.com.br", true },
{ "totalcarcheck.co.uk", true },
{ "totalchecklist.com", true },
+ { "totalemaildelivery.com", true },
{ "totalforcegym.com", true },
{ "totalhomecareinc.com", true },
{ "totallylegitimatehosting.ru", true },
@@ -35876,7 +36485,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "touch.mail.ru", true },
{ "touchoflife.in", true },
{ "touchscreentills.com", true },
- { "touchtable.nl", true },
{ "touchweb.fr", true },
{ "touchwoodtrees.com.au", true },
{ "tougetu.com", true },
@@ -35892,13 +36500,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tourispo.com", true },
{ "tournamentmgr.com", true },
{ "tournevis.ch", true },
+ { "toursthatmatter.com", true },
{ "tourtransferitaly.it", true },
{ "tourtrektrip.com", true },
{ "tous-travaux.ch", true },
{ "toushi-exe.com", true },
{ "toushi-return.xyz", true },
{ "toushi-shakkin.com", true },
- { "touslesdrivers.com", true },
{ "tout-art.ch", true },
{ "toutart.ch", true },
{ "toutenmusic.fr", true },
@@ -35919,6 +36527,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "townandcountryus.com", true },
{ "townhousedevelopments.com.au", true },
{ "townhouseregister.com.au", true },
+ { "townofbridgewater.ca", true },
{ "towsonroofers.com", true },
{ "towywebdesigns.uk", true },
{ "tox21.gov", false },
@@ -35942,7 +36551,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "traas.org", true },
{ "trabajarenremoto.com", true },
{ "trabbel.org", true },
- { "tracalada.cl", true },
{ "trace.guru", true },
{ "trace.moe", true },
{ "traceheatinguk.co.uk", true },
@@ -36037,7 +36645,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "transappealrights.com", true },
{ "transcend.org", true },
{ "transcontrol.com.ua", true },
- { "transcricentro.pt", true },
{ "transfer.pw", true },
{ "transferio.nl", true },
{ "transfers.do", true },
@@ -36065,10 +36672,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "translate.fedoraproject.org", true },
{ "translate.googleapis.com", true },
{ "translate.stg.fedoraproject.org", true },
- { "translateblender.ru", true },
- { "translatoruk.co.uk", true },
{ "transmarttouring.com", true },
{ "transmisjeonline.pl", true },
+ { "transmute.review", true },
{ "transnexus.com", true },
{ "transoil.co.uk", true },
{ "transparentcorp.com", true },
@@ -36082,13 +36688,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "traslocare.roma.it", true },
{ "traslochi-trasporti-facchinaggio.it", true },
{ "trasloco.milano.it", true },
+ { "tratamentoparacelulite.net", true },
{ "trattamenti.biz", true },
{ "trattamento-cotto.it", true },
{ "trauer-beileid.de", true },
{ "traut.cloud", true },
{ "travador.com", true },
{ "travaux-toiture-idf.fr", true },
- { "travel-dealz.de", true },
{ "travel-to-nature.ch", true },
{ "travel.co.za", true },
{ "travel365.it", true },
@@ -36112,7 +36718,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "trbanka.com", true },
{ "trea98.org", true },
{ "treaslockbox.gov", true },
- { "treatment.org", true },
{ "tree0.xyz", true },
{ "treebaglia.xyz", true },
{ "treehouseresort.nl", true },
@@ -36129,12 +36734,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "trekfriend.com", true },
{ "trekkinglife.de", true },
{ "tremlor.com", true },
- { "tremolosoftware.com", true },
{ "trendkraft.de", true },
+ { "trendreportdeals.com", true },
{ "trendus.no", true },
{ "trendykids.cz", true },
{ "trenta.io", true },
- { "trentmaydew.com", true },
{ "tresor.it", true },
{ "tresorit.com", true },
{ "tresorsecurity.com", true },
@@ -36151,7 +36755,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "trialandsuccess.nl", true },
{ "trialcentralnet.com", true },
{ "trianglecastles.co.uk", true },
- { "trianon.xyz", true },
{ "tribac.de", true },
{ "tribaldos.com", true },
{ "tribe.rs", true },
@@ -36192,14 +36795,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tripseats.com", true },
{ "tripsinc.com", true },
{ "trisect.eu", true },
+ { "trish-mcevoy.ru", true },
+ { "triticeaetoolbox.org", true },
{ "trixexpressweb.nl", true },
{ "triz.co.uk", true },
{ "trkpuls.tk", true },
{ "trockendock.ch", true },
{ "troedel-trolle.de", true },
{ "troedelhannes.at", true },
+ { "troi.de", true },
{ "troianet.com.br", true },
- { "troisdorf-gestalten.de", true },
{ "trollingeffects.org", true },
{ "trollmoa.se", true },
{ "trollope-apollo.com", true },
@@ -36209,7 +36814,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "troomcafe.com", true },
{ "troopaid.info", true },
{ "trophee-discount.com", true },
- { "tropicalserver.com", true },
+ { "tropicalserver.com", false },
{ "trotec.com", true },
{ "trotina.cz", true },
{ "trouble-free-employees.com", true },
@@ -36229,13 +36834,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "truckerswereld.nl", false },
{ "truckstop-magazin.de", false },
{ "true-itk.de", true },
+ { "trueassignmenthelp.co.uk", true },
{ "trueblueessentials.com", true },
{ "trueinstincts.ca", true },
{ "truekey.com", true },
{ "truentumvet.it", true },
{ "trueproxy.net", true },
{ "truerizm.ru", true },
- { "truessl.shop", true },
{ "truestaradvisors.com", true },
{ "truesteamachievements.com", true },
{ "truestor.com", true },
@@ -36253,11 +36858,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "truserve.org", true },
{ "trusitio.com", true },
{ "trustcase.com", true },
+ { "trustedbody.com", true },
{ "trustednetworks.nl", true },
{ "trustfield.ch", true },
{ "trustserv.de", true },
{ "truthmessages.pw", true },
{ "truvisory.com", true },
+ { "truyenfull.vn", true },
{ "trw-reseller.com", true },
{ "try2admin.pw", true },
{ "trybabyschoice.com", true },
@@ -36283,7 +36890,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tsai.com.de", true },
{ "tsatestprep.com", true },
{ "tschuermans.be", true },
- { "tscqmalawi.info", true },
{ "tsedryk.ca", true },
{ "tsgkc1.com", true },
{ "tsicons.com", true },
@@ -36301,9 +36907,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tsundere.moe", true },
{ "tsung.co", true },
{ "tsurai.work", true },
+ { "tsutsumi-kogyo.jp", true },
{ "tsuyuzakihiroyuki.com", true },
{ "tsv-1894.de", true },
{ "tt.dog", true },
+ { "ttb.gov", true },
{ "ttbonline.gov", true },
{ "ttc-birkenfeld.de", true },
{ "ttcaarberg.ch", true },
@@ -36312,9 +36920,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ttclub.fr", true },
{ "ttdsevaonline.com", true },
{ "ttll.de", true },
- { "ttrade.ga", true },
{ "ttsoft.pl", true },
- { "ttspttsp.com", true },
{ "ttsweb.org", true },
{ "ttt.tt", true },
{ "ttuwiki.ee", true },
@@ -36334,13 +36940,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tubul.net", true },
{ "tucny.com", true },
{ "tucsonfcu.com", true },
- { "tucsonpcrepair.com", true },
{ "tucuxi.org", true },
{ "tudiennhakhoa.com", true },
{ "tudorproject.org", true },
+ { "tuev-hessen.de", true },
{ "tufashionista.com", true },
{ "tuffclassified.com", true },
{ "tuffsruffs.se", true },
+ { "tuimprenta.com.ar", true },
{ "tuincentersnaet.be", true },
{ "tuingereedschappen.net", false },
{ "tuitle.com", true },
@@ -36367,7 +36974,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tupeuxpastest.ch", true },
{ "tuppenceworth.ie", true },
{ "turbobit.ch", true },
- { "turdnagel.com", true },
{ "turf-experts.com", true },
{ "turigum.com", true },
{ "turkish.dating", true },
@@ -36419,7 +37025,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tvleaks.se", true },
{ "tvlplus.net", true },
{ "tvqc.com", true },
- { "tvs-virtual.cz", true },
{ "tvseries.info", true },
{ "tvsheerenhoek.nl", true },
{ "tvzr.com", true },
@@ -36432,8 +37037,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tweakers.net", true },
{ "tweakersbadge.nl", true },
{ "tweaktown.com", true },
+ { "tweedehandslaptophardenberg.nl", true },
{ "tweetfinity.com", true },
{ "tweetfinityapp.com", true },
+ { "twem.ddns.net", true },
{ "twenty71.com", true },
{ "twentymilliseconds.com", true },
{ "twilightcookies.ca", true },
@@ -36479,6 +37086,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tyler.rs", true },
{ "tylerdavies.net", true },
{ "tylerfreedman.com", true },
+ { "tylerharcourt.ca", true },
{ "tylerharcourt.net", true },
{ "tyleromeara.com", true },
{ "tylerschmidtke.com", true },
@@ -36501,6 +37109,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "tyroremotes.nl", true },
{ "tyroremotes.no", true },
{ "tysox.de", true },
+ { "tysye.ca", true },
+ { "tyuo-keibi.co.jp", true },
{ "tzermias.gr", true },
{ "tzifas.com", true },
{ "u-martfoods.com", true },
@@ -36525,6 +37135,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "u5b.de", false },
{ "u5r.nl", true },
{ "ua.search.yahoo.com", false },
+ { "uaci.edu.mx", true },
{ "uae-company-service.com", true },
{ "uangteman.com", true },
{ "uasmi.com", true },
@@ -36532,6 +37143,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "uatgootax.ru", false },
{ "ub3rk1tten.com", false },
{ "ubanquity.com", true },
+ { "ubcani.com", true },
{ "uberbkk.com", true },
{ "uberboxen.net", true },
{ "uberestimator.com", true },
@@ -36547,6 +37159,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ublaboo.org", true },
{ "uborcare.com", true },
{ "ubun.net", true },
+ { "ubuntu18.com", true },
{ "ucac.nz", false },
{ "ucangiller.com", true },
{ "ucch.be", true },
@@ -36564,6 +37177,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "udp.sh", false },
{ "udruga-point.hr", true },
{ "udvoukocek.eu", true },
+ { "ueba1085.jp", true },
{ "ueberdosis.io", true },
{ "ueberwachungspaket.at", true },
{ "uedaviolin.com", true },
@@ -36687,6 +37301,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "un-framed.co.za", true },
{ "un-zero-un.fr", true },
{ "un.fo", true },
+ { "unapolegetic.co", true },
{ "unapp.me", true },
{ "unatco.noip.me", true },
{ "unausa.com.br", true },
@@ -36716,7 +37331,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "unccelearn.org", true },
{ "uncensoreddns.dk", true },
{ "uncensoreddns.org", true },
- { "undecidable.de", true },
+ { "undeadbrains.de", true },
{ "undeductive.media", true },
{ "undef.in", true },
{ "underbridgeleisure.co.uk", true },
@@ -36726,7 +37341,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "undernet.uy", false },
{ "underskatten.tk", true },
{ "underwearoffer.com", true },
- { "undo.co.il", true },
{ "undone.me", true },
{ "unece-deta.eu", true },
{ "unedouleur.com", true },
@@ -36742,7 +37356,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "unghie.com", true },
{ "unicef-karten.at", true },
{ "unicef.pl", true },
- { "unicefcards.at", true },
{ "unicefcards.cz", true },
{ "unicefcards.gr", true },
{ "unicefcards.it", true },
@@ -36767,7 +37380,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "uniekglas.nl", true },
{ "unifei.edu.br", true },
{ "uniform-agri.com", true },
- { "uniformebateriasheliar.com.br", true },
{ "unikoingold.com", true },
{ "unila.edu.br", true },
{ "unimbalr.com", true },
@@ -36803,8 +37415,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "universalcarremote.com", true },
{ "universalpaymentgateway.com", true },
{ "universeinform.com", true },
+ { "universidadvg.edu.mx", true },
{ "univitale.fr", true },
- { "unix.se", true },
{ "unixadm.org", true },
{ "unixapp.ml", true },
{ "unixattic.com", true },
@@ -36817,12 +37429,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "unli.xyz", true },
{ "unlocken.nl", true },
{ "unlocktalent.gov", true },
- { "unlogis.ch", true },
{ "unmarkdocs.co", true },
{ "unmonito.red", true },
{ "unn-edu.info", true },
{ "uno-pizza.ru", true },
- { "uno.fi", true },
{ "unobrindes.com.br", true },
{ "unoccupyabq.org", true },
{ "unp.me", true },
@@ -36860,6 +37470,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "upbeatrobot.com", true },
{ "upbeatrobot.eu", true },
{ "upd.jp", true },
+ { "updatehub.io", true },
{ "upgamerengine.com", true },
{ "upgamerengine.com.br", true },
{ "upgamerengine.net", true },
@@ -36884,10 +37495,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "upsettunnel.com", true },
{ "upsiteseo.com", true },
{ "uptechbrasil.com.br", true },
- { "uptimed.com", true },
{ "uptimenotguaranteed.com", true },
{ "uptodateinteriors.com", true },
- { "uptogood.org", true },
{ "uptoon.jp", true },
{ "uptownlocators.com", true },
{ "uptrends.com", true },
@@ -36917,6 +37526,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "urbanmelbourne.info", true },
{ "urbannewsservice.com", true },
{ "urbansparrow.in", true },
+ { "urbanstylestaging.com", true },
{ "urbansurvival.com", true },
{ "urbanwaters.gov", false },
{ "urbanwildlifealliance.org", false },
@@ -36993,7 +37603,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "ustr.gov", false },
{ "usualbeings.com", true },
{ "usuan.net", true },
- { "usuluddin.ga", true },
{ "usweme.info", true },
{ "uswitch.com", true },
{ "ut-addicted.com", true },
@@ -37003,11 +37612,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "utazas-nyaralas.info", true },
{ "utcast-mate.com", true },
{ "utdsgda.com", true },
- { "uteam.it", true },
{ "utepils.de", true },
{ "utgifter.no", true },
{ "utilia.tools", true },
- { "utilio.nl", true },
{ "utilitarian.com", true },
{ "utilitarian.net", true },
{ "utilitarian.org", true },
@@ -37053,7 +37660,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "v-tek.fi", true },
{ "v-u-z.ru", true },
{ "v2bv.net", true },
- { "v2bv.win", true },
{ "v2cn.win", true },
{ "v2ex.com", true },
{ "v2ray6.com", true },
@@ -37086,6 +37692,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "valcano.ru", true },
{ "valcardiesel.com", true },
{ "valenciadevops.me", true },
+ { "valentin-dederer.de", true },
{ "valentin-ochs.de", true },
{ "valentin-sundermann.de", true },
{ "valentin.ml", true },
@@ -37124,6 +37731,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "valtlai.fi", true },
{ "valtoaho.com", true },
{ "valudo.st", true },
+ { "valuechain.me", true },
{ "valueng.com", true },
{ "valueseed.net", true },
{ "vampyrium.net", false },
@@ -37150,7 +37758,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vanhaos.com", true },
{ "vanhoudt-usedcars.be", true },
{ "vanhoutte.be", false },
- { "vanhove.biz", true },
{ "vanmalland.com", true },
{ "vannaos.com", true },
{ "vannaos.net", true },
@@ -37188,6 +37795,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "varunagw.com", true },
{ "varunpriolkar.com", true },
{ "varvy.com", true },
+ { "varyrentacar.com", true },
{ "varztupasaulis.com", true },
{ "varztupasaulis.eu", true },
{ "varztupasaulis.lt", true },
@@ -37199,6 +37807,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vasileruscior.ro", true },
{ "vasilikieleftheriou.com", true },
{ "vaskulitis-info.de", true },
+ { "vasp.group", true },
{ "vasports.com.au", true },
{ "vasyharan.com", true },
{ "vat-eu.com", true },
@@ -37218,8 +37827,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vaur.fr", true },
{ "vavel.com", true },
{ "vawebsite.co", true },
- { "vawlt.io", true },
- { "vawltstorage.com", true },
{ "vaygren.com", true },
{ "vazue.com", true },
{ "vb-oa.co.uk", true },
@@ -37264,7 +37871,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vedma-praktik.com", true },
{ "veg-leiden.nl", true },
{ "vegalitarian.org", true },
- { "vegane-proteine.com", true },
{ "veganforum.org", true },
{ "veganism.co.uk", true },
{ "veganism.com", true },
@@ -37313,6 +37919,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "verdict.gg", true },
{ "verduccies.com", true },
{ "verein-kiekin.de", true },
+ { "verein-zur-pflege-der-geselligkeit.de", true },
{ "vereinlandwege.de", true },
{ "vereinscheck.de", true },
{ "verfassungsklage.at", true },
@@ -37326,6 +37933,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "verifiny.com", true },
{ "verifyos.com", true },
{ "verifyyourip.com", true },
+ { "veriny.tf", true },
{ "veritafineviolins.com", true },
{ "veritas-data.de", true },
{ "verizonconnect.com", false },
@@ -37362,12 +37970,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vertner.net", true },
{ "vertrieb-strategie.de", true },
{ "verustracking.com", true },
+ { "verwandlung.org", true },
{ "verwayen.com", true },
{ "very-kids.fr", true },
- { "veryapt.com", true },
{ "veryimportantusers.com", true },
{ "verymelon.de", true },
{ "verymetal.nl", true },
+ { "verzekeringencambier.be", true },
{ "verzekeringsacties.nl", true },
{ "verzick.com", true },
{ "vescudero.net", true },
@@ -37379,6 +37988,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "veterinarian-hospital.com", true },
{ "veterinario.roma.it", true },
{ "veterinarioaltea.com", true },
+ { "veterinary-colleges.com", true },
+ { "veteriner.name.tr", true },
{ "vetforum.co", true },
{ "vetinte.eu", true },
{ "vetofish.com", true },
@@ -37392,8 +38003,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vgorcum.com", true },
{ "vgropp.de", true },
{ "vh.net", true },
+ { "vhrca.com", true },
{ "vhummel.nl", true },
{ "vi.photo", true },
+ { "via-shire-krug.ru", true },
{ "viacdn.org", true },
{ "viafinance.cz", false },
{ "viaggio-in-cina.it", true },
@@ -37403,6 +38016,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "viaje-a-china.com", true },
{ "vialorran.com", true },
{ "viaprinto.de", true },
+ { "viasinc.com", false },
{ "viato.fr", true },
{ "vibrant-america.com", true },
{ "vicentee.com", true },
@@ -37445,7 +38059,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vide-greniers.org", false },
{ "videogamesartwork.com", true },
{ "videokaufmann.at", true },
- { "videoload.co", true },
{ "videomail.io", true },
{ "videosdiversosdatv.com", true },
{ "videoseyredin.net", true },
@@ -37468,7 +38081,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vietnamhost.vn", false },
{ "vietnamluxurytravelagency.com", true },
{ "vietnamwomenveterans.org", true },
- { "vieux.pro", true },
{ "viewbook.com", true },
{ "viewey.com", true },
{ "viewmyrecords.com", true },
@@ -37499,7 +38111,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "viktorprevaric.eu", true },
{ "vilabiamodas.com.br", true },
{ "viljatori.fi", true },
- { "villa-anna-cilento.de", true },
{ "villa-gockel.de", true },
{ "villa-romantica-zillertal.at", true },
{ "villafiore.com.br", true },
@@ -37516,20 +38127,23 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "villenvinkit.com", true },
{ "villerez.fr", true },
{ "villesalonen.fi", true },
+ { "villu.ga", true },
{ "viltsu.net", true },
{ "vima.ch", true },
{ "vimeo.com", true },
{ "vinagro.sk", true },
+ { "vinahost.vn", true },
{ "vinarstvimodryhrozen.cz", true },
{ "vincentcox.com", false },
{ "vincentpancol.com", true },
+ { "vincentswordpress.nl", true },
{ "vincible.space", true },
{ "vinciconps4.it", true },
{ "vincitraining.com", true },
{ "vineright.com", true },
{ "vinetech.co.nz", true },
- { "vinihk.com", true },
{ "vinilosdecorativos.net", true },
+ { "vinistas.com", true },
{ "vinner.com.au", true },
{ "vinnie.gq", true },
{ "vinolli.de", true },
@@ -37573,6 +38187,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "virial.de", true },
{ "viridis-milites.cz", true },
{ "virtit.fr", true },
+ { "virtual.hk", true },
{ "virtualcloud.ddns.net", true },
{ "virtualcommodities.org", true },
{ "virtuality4d.com", true },
@@ -37581,13 +38196,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "virtualsanity.com", true },
{ "virtualvaults.com", true },
{ "virtubox.net", true },
+ { "virtusaero.com", true },
{ "virvum.ch", true },
{ "visaexpert.co.za", true },
{ "visalist.io", true },
{ "visalogy.com", true },
{ "visaop.com", true },
{ "visapourailleurs.fr", true },
- { "visaya.com.co", true },
{ "viscoelastico.com.br", true },
{ "viscopic.com", true },
{ "viseum.co.uk", true },
@@ -37604,6 +38219,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "visionless.me", false },
{ "visionnissancanandaiguaparts.com", true },
{ "visit-montenegro.com", true },
+ { "visitbeulah.com", true },
{ "visitcambridgeshirefens.org", true },
{ "visitkangaroovalley.com.au", true },
{ "visitmaine.com", true },
@@ -37622,7 +38238,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "visualmasters.nl", true },
{ "visudira.com", true },
{ "vitahook.pw", true },
- { "vital-tel.co.uk", true },
{ "vitalamin.com", true },
{ "vitalamin.de", true },
{ "vitalismaatjes.nl", true },
@@ -37633,6 +38248,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vitamineproteine.com", true },
{ "vitaminler.com", true },
{ "vitastic.nl", true },
+ { "vitavie.nl", true },
{ "viteoscrm.ch", true },
{ "vitkausk.as", true },
{ "vitkutny.cz", true },
@@ -37647,6 +38263,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vivaldi.com", true },
{ "vivamusic.es", true },
{ "vivatv.com.tw", true },
+ { "viveconsalud.club", true },
{ "vivendi.de", true },
{ "vivianmaier.cn", true },
{ "vivid-academy.com", true },
@@ -37686,9 +38303,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vloeck.de", true },
{ "vlora.city", true },
{ "vlovgr.se", true },
- { "vlsk.eu", true },
{ "vlsm.se", true },
- { "vlvvl.com", true },
{ "vm-0.com", true },
{ "vm-co.ch", true },
{ "vm0.eu", true },
@@ -37724,7 +38339,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "voice-of-design.com", true },
{ "voicu.ch", true },
{ "void-zero.com", true },
- { "voidark.com", true },
{ "voidcore.org", true },
{ "voidma.in", true },
{ "voidpay.com", true },
@@ -37736,7 +38350,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "voidzehn.com", true },
{ "voipsun.com", true },
{ "vojtechpavelka.cz", true },
- { "vokalsystem.com", true },
{ "vokativy.cz", false },
{ "vokeapp.com", true },
{ "vokurka.net", true },
@@ -37752,7 +38365,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "volker-gropp.de", true },
{ "volkergropp.de", true },
{ "volkerwesselstransfer.nl", false },
- { "volkerwesselswave.nl", false },
{ "volksvorschlagpmar.ch", true },
{ "vollans.id.au", true },
{ "voloevents.com", true },
@@ -37793,6 +38405,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "votockova.cz", true },
{ "votoot.com", true },
{ "votre-site-internet.ch", true },
+ { "vouchinsurance.sg", true },
{ "vovladikavkaze.ru", true },
{ "voxfilmeonline.net", true },
{ "voxml.com", true },
@@ -37810,7 +38423,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vpnservice.nl", true },
{ "vpsboard.com", true },
{ "vpsdream.dk", true },
- { "vpsou.com", false },
+ { "vpsou.com", true },
{ "vpsport.ch", true },
{ "vpsvz.net", true },
{ "vrandopulo.ru", true },
@@ -37826,7 +38439,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vrjetpackgame.com", true },
{ "vroedvrouwella.be", true },
{ "vrsystem.com.br", true },
- { "vrtouring.org", true },
{ "vscale.io", true },
{ "vsean.net", true },
{ "vserver-preis-vergleich.de", true },
@@ -37839,13 +38451,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vsx.ch", true },
{ "vtaxi.se", true },
{ "vtipe-vylez.cz", true },
- { "vtuber-schedule.info", true },
{ "vuakhuyenmai.vn", true },
{ "vubey.yt", true },
{ "vuilelakens.be", true },
{ "vuljespaarpot.nl", true },
{ "vullriede-multimedia.de", true },
- { "vulndetect.org", false },
+ { "vulndetect.com", true },
+ { "vulndetect.org", true },
{ "vulnerability.ch", true },
{ "vulners.com", true },
{ "vulns.sexy", true },
@@ -37863,8 +38475,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vvdbronckhorst.nl", true },
{ "vvoip.org.uk", true },
{ "vvw-8522.com", true },
+ { "vvzero.cf", true },
{ "vvzero.com", true },
- { "vw-touranclub.cz", true },
{ "vwbusje.com", true },
{ "vwfsrentacar.co.uk", true },
{ "vwhcare.com", true },
@@ -37875,7 +38487,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vx.hn", true },
{ "vxst.org", true },
{ "vxstream-sandbox.com", true },
- { "vxz.me", true },
{ "vybeministry.org", true },
{ "vyber-odhadce.cz", true },
{ "vyberodhadce.cz", true },
@@ -37884,7 +38495,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "vyskocil.eu", true },
{ "vyvygen.org", true },
{ "vyzner.cz", true },
- { "vzce.cn", true },
{ "vzis.org", true },
{ "vztekloun.cz", true },
{ "w-p-k.de", true },
@@ -37907,6 +38517,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "waaw.tv", true },
{ "wabatam.com", true },
{ "wachter.biz", true },
+ { "wacky-science.com", true },
{ "wacky.one", true },
{ "wadidi.com", true },
{ "wadsworth.gallery", true },
@@ -37914,7 +38525,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "waelisch.de", true },
{ "waf.ninja", true },
{ "waf.sexy", true },
- { "wafa4hw.com", true },
{ "wafelland.be", true },
{ "waffle.at", false },
{ "wafuton.com", true },
@@ -37946,6 +38556,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wakamiyasumiyosi.com", true },
{ "wakandasun.com", true },
{ "wakatime.com", true },
+ { "wakhanyeza.org", true },
{ "wakiminblog.com", true },
{ "wala-floor.de", true },
{ "waldvogel.family", true },
@@ -37990,7 +38601,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wanda.ch", true },
{ "wandelreizen.eu", true },
{ "wander.al", true },
- { "wandercue.com", true },
{ "wandervoll.ch", true },
{ "wanderzoom.co", true },
{ "wandystan.eu", true },
@@ -38007,11 +38617,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wangql.net", true },
{ "wangqr.tk", true },
{ "wangtanzhang.com", true },
+ { "wangwill.me", true },
{ "wangyubao.cn", true },
{ "wangyue.blog", true },
{ "wangzuan168.cc", true },
{ "wanlieyan.com", true },
{ "wannaridecostarica.com", true },
+ { "wanvi.net", true },
{ "wanybug.cf", true },
{ "wanybug.com", true },
{ "wanybug.ga", true },
@@ -38019,6 +38631,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wanybug.tk", true },
{ "wanzenbug.xyz", true },
{ "waonui.io", true },
+ { "wapking.co", true },
{ "wardow.com", true },
{ "warebouncycastles.co.uk", true },
{ "warekit.io", true },
@@ -38041,6 +38654,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "waschpark-hantschel.de", true },
{ "wasema.com", true },
{ "wasfestes.de", true },
+ { "wasfuereintheater.com", true },
{ "washingtonregisteredagent.io", true },
{ "washingtonviews.com", true },
{ "wasi-net.de", true },
@@ -38053,7 +38667,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "watch-wiki.org", true },
{ "watchface.watch", true },
{ "watchfreeonline.co.uk", true },
- { "watchinventory.com", true },
{ "watchonline.al", true },
{ "watchparts-and-tools-okayama.co.jp", true },
{ "watchpci.com", true },
@@ -38087,6 +38700,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "waxdramatic.com", true },
{ "waycraze.com", true },
{ "wayfair.de", true },
+ { "wayfairertravel.com", true },
{ "wayohoo.com", true },
{ "wayohoo.net", true },
{ "waytt.cf", true },
@@ -38113,13 +38727,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wdic.org", true },
{ "wdodelta.nl", true },
{ "wdol.gov", true },
- { "wdrl.info", true },
{ "wdt.cz", false },
{ "we-bb.com", true },
{ "we-run-linux.de", true },
{ "we-use-linux.de", true },
{ "weacceptbitcoin.gr", true },
- { "wealthcentral.com.au", true },
{ "wealthprojector.com", true },
{ "wealthprojector.com.au", true },
{ "wealthreport.com.au", true },
@@ -38133,9 +38745,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wearesouthafricans.com", true },
{ "wearvr.com", true },
{ "weaspireusa.com", true },
- { "weather-and-climate.com", false },
+ { "weather-schools.com", true },
+ { "weather.gov", true },
{ "weathermyway.rocks", true },
- { "web-adminy.co.uk", true },
{ "web-art.cz", true },
{ "web-design.co.il", true },
{ "web-dl.cc", true },
@@ -38189,6 +38801,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "webdesignplayground.io", true },
{ "webdesignsandiego.com", true },
{ "webdevops.io", true },
+ { "webdevxp.com", true },
{ "webdl.org", true },
{ "webdollarvpn.io", true },
{ "webduck.nl", false },
@@ -38206,7 +38819,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "webfilings.appspot.com", true },
{ "webfixers.nl", true },
{ "webfox.com.br", true },
- { "webgap.io", true },
+ { "webgap.io", false },
+ { "webgap.me", true },
{ "webgarten.ch", true },
{ "webgears.com", true },
{ "webharvest.gov", true },
@@ -38267,6 +38881,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "websitesdallas.com", true },
{ "websiteservice.pro", true },
{ "webslake.com", true },
+ { "websmartmedia.co.uk", true },
{ "websouthdesign.com", true },
{ "webspiral.jp", true },
{ "webspire.tech", true },
@@ -38289,7 +38904,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "webwit.nl", true },
{ "webwolf.co.za", true },
{ "webworkshop.ltd", true },
+ { "webxr.today", true },
{ "webyazilimankara.com", true },
+ { "webz.one", true },
{ "wechatify.com", true },
{ "wecleanbins.com", true },
{ "wecobble.com", true },
@@ -38312,20 +38929,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "weekendinitaly.com", true },
{ "weekly-residence.com", true },
{ "weeklycenter.co.jp", true },
- { "weeknummers.be", true },
{ "weeknummers.nl", true },
{ "weekvandemediawijsheid.nl", true },
{ "weemake.fr", true },
{ "weemakers.fr", true },
{ "weepycat.com", true },
{ "weerda.fr", true },
+ { "weerstationgiethoorn.nl", true },
{ "weerstatistieken.nl", true },
{ "wefinanceinc.com", true },
{ "wefitboilers.com", true },
{ "weforgood.org.tw", true },
{ "wegethitched.co.uk", true },
{ "weggeweest.nl", true },
- { "wegner.no", true },
{ "wegotcookies.com", true },
{ "wegrzynek.org", true },
{ "wegvielfalt.de", true },
@@ -38351,7 +38967,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "weissman.agency", true },
{ "weiterbildung-vdz.de", true },
{ "weitergedacht.eu", true },
- { "weixiaojun.org", true },
{ "weizenspr.eu", true },
{ "welcome-tahiti.com", true },
{ "welcome-werkstatt.com", true },
@@ -38386,6 +39001,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wen-in.com", true },
{ "wen-in.net", true },
{ "wenchieh.com", true },
+ { "wendigo.pl", true },
{ "wendlberger.net", true },
{ "wendu.me", true },
{ "wener.me", false },
@@ -38421,6 +39037,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "werkgroeppaleisparkhetloo.nl", true },
{ "werkinc.de", true },
{ "werkkrew.xyz", true },
+ { "werkslimreisslim.nl", true },
{ "werkstattkinder.de", true },
{ "werktor.com", true },
{ "werktor.net", true },
@@ -38452,9 +39069,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "westcode.de", true },
{ "westcountrystalking.com", true },
{ "westendwifi.net", true },
+ { "westernfrontierins.com", true },
{ "westeros.hu", true },
{ "westhighlandwhiteterrier.com.br", true },
{ "westhillselectrical.com", true },
+ { "westlaketire.pt", true },
{ "westlakevillageelectric.com", true },
{ "westlakevillageelectrical.com", true },
{ "westlakevillageelectrician.com", true },
@@ -38470,6 +39089,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "westmidlandsinflatables.co.uk", true },
{ "westsuburbanbank.com", true },
{ "westwood.no", true },
+ { "wesupportthebadge.org", true },
{ "wetofu.top", true },
{ "wevenues.com", true },
{ "wewitro.de", true },
@@ -38494,6 +39114,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wft-portfolio.nl", true },
{ "wg-steubenstrasse.de", true },
{ "wg3k.us", false },
+ { "wgcp.com", true },
{ "wgom.org", true },
{ "wgplatform.co.uk", true },
{ "wgraphics.ru", true },
@@ -38563,7 +39184,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "whitehathackers.com.br", true },
{ "whitehouse.gov", true },
{ "whitehousedrugpolicy.gov", true },
- { "whiteink.com", false },
+ { "whiteink.com", true },
{ "whitejaguars.com", true },
{ "whitelabelcashback.nl", true },
{ "whitelabeltickets.com", false },
@@ -38573,7 +39194,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "whiteshadowimperium.com", true },
{ "whitewebhosting.co.za", true },
{ "whitewebhosting.com", true },
- { "whitewinterwolf.com", true },
{ "whitkirk.com", true },
{ "whitkirkartsguild.com", true },
{ "whitkirkchurch.org.uk", true },
@@ -38593,7 +39213,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "whoiscutest.ml", true },
{ "whoisthenightking.com", true },
{ "whoiswp.com", true },
- { "wholelotofbounce.co.uk", false },
{ "wholesalecbd.com", true },
{ "wholesomeharvestbread.com", false },
{ "whonix.org", true },
@@ -38649,9 +39268,19 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wiki-play.ru", true },
{ "wiki.python.org", true },
{ "wikibooks.org", true },
- { "wikibulz.com", true },
{ "wikidata.org", true },
{ "wikidsystems.com", false },
+ { "wikihow.com", true },
+ { "wikihow.com.tr", true },
+ { "wikihow.cz", true },
+ { "wikihow.fitness", true },
+ { "wikihow.it", true },
+ { "wikihow.jp", true },
+ { "wikihow.life", true },
+ { "wikihow.mom", true },
+ { "wikihow.pet", true },
+ { "wikihow.tech", true },
+ { "wikihow.vn", true },
{ "wikileaks.com", true },
{ "wikileaks.org", true },
{ "wikimedia.org", true },
@@ -38659,6 +39288,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wikimilk.org", true },
{ "wikinews.org", true },
{ "wikipedia.org", true },
+ { "wikipiedi.it", true },
{ "wikiquote.org", true },
{ "wikisource.org", true },
{ "wikiversity.org", true },
@@ -38668,7 +39298,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wiktoriaslife.com", true },
{ "wilane.org", true },
{ "wilcodeboer.me", true },
- { "wild-turtles.com", false },
{ "wildboaratvparts.com", true },
{ "wilddogdesign.co.uk", true },
{ "wildewood.ca", true },
@@ -38690,12 +39319,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "willfarrell.ca", true },
{ "willi-graf-gymnasium.de", true },
{ "willi-graf-os.de", true },
- { "william.gg", true },
{ "williamboulton.co.uk", true },
{ "williamfeely.info", true },
{ "williamjohngauthier.net", true },
+ { "williamle.com", true },
{ "williamscomposer.com", true },
{ "williamsflintlocks.com", true },
+ { "williamsonshore.com", true },
{ "williamsportmortgages.com", true },
{ "williamsroom.com", true },
{ "williamtm.com", true },
@@ -38728,8 +39358,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "windows10insider.com", true },
{ "windowslatest.com", true },
{ "windowsnerd.com", true },
+ { "windowsnoticias.com", true },
{ "windowwellcovers.com", true },
- { "windrunner.se", true },
{ "windscribe.com", true },
{ "windsock-app.com", true },
{ "windsorite.ca", true },
@@ -38737,6 +39367,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "windycitydubfest.com", true },
{ "wine-tapa.com", true },
{ "wineonthewall.com", true },
+ { "wineparis.com", true },
{ "winepress.org", true },
{ "winghill.com", true },
{ "wingify.com", true },
@@ -38746,7 +39377,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "winmodels.org", true },
{ "winmodels.ru", true },
{ "winphonemetro.com", true },
- { "winportal.cz", false },
{ "winsome.world", true },
{ "wint.global", true },
{ "winter-elektro.de", true },
@@ -38764,7 +39394,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wir-bewegen.sh", true },
{ "wircon-int.net", true },
{ "wire.com", true },
- { "wireframesoftware.com", true },
{ "wireheading.com", true },
{ "wireshark.org", true },
{ "wiretime.de", true },
@@ -38779,6 +39408,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wischu.com", true },
{ "wisedog.eu", true },
{ "wiseflat.com", true },
+ { "wishlist.net", true },
{ "wispapp.com", false },
{ "wisper.net.au", true },
{ "wispsuperfoods.com", true },
@@ -38790,7 +39420,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "withextraveg.net", true },
{ "withgoogle.com", true },
{ "withinsecurity.com", true },
- { "withlocals.com", true },
{ "withyoutube.com", true },
{ "witneywaterpolo.org.uk", true },
{ "witt-international.co.uk", true },
@@ -38839,7 +39468,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "woaiuhd.com", true },
{ "wobble.ninja", true },
{ "wobblywotnotz.co.uk", true },
- { "wochennummern.de", true },
{ "wodboss.com", true },
{ "wodinaz.com", true },
{ "wodka-division.de", true },
@@ -38858,7 +39486,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wolfarth.info", true },
{ "wolfermann.org", true },
{ "wolferstetterkeller.de", true },
- { "wolfgang-braun.info", true },
{ "wolfgang-kerschbaumer.at", true },
{ "wolfgang-kerschbaumer.com", true },
{ "wolfgang-kerschbaumer.net", true },
@@ -38868,6 +39495,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wolfsden.cz", true },
{ "wolfwings.us", true },
{ "wolfy1339.com", false },
+ { "wolke7.wtf", true },
{ "wolkoopjes.nl", true },
{ "wollgredel.de", true },
{ "wollongongbaptist.hopto.org", true },
@@ -38884,6 +39512,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wonabo.com", true },
{ "wonder.com.mx", false },
{ "wonderbill.com", true },
+ { "wonderbits.net", true },
{ "wonderfuleducation.eu", true },
{ "wonderfuleducation.nl", true },
{ "wondergorilla.com", true },
@@ -38894,7 +39523,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wood-crafted.co.uk", true },
{ "wood-crafted.uk", true },
{ "woodbury.io", true },
- { "woodcoin.org", true },
{ "woodev.us", true },
{ "woodlandhillselectrical.com", true },
{ "woodlandsmetro.church", false },
@@ -38902,6 +39530,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "woodlandwindows.com", true },
{ "woodomat.com", true },
{ "woodsidepottery.ca", true },
+ { "woodstocksupply.com", true },
{ "woof.gq", true },
{ "woofsbakery.com", true },
{ "woohooyeah.nl", true },
@@ -38910,6 +39539,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wooplagaming.com", true },
{ "wootware.co.za", true },
{ "wopr.network", true },
+ { "worca.de", true },
+ { "worcade.com", true },
{ "worcade.net", true },
{ "worcesterbouncycastlehire.co.uk", true },
{ "worcesterbouncycastles.co.uk", true },
@@ -38921,11 +39552,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wordsmart.it", true },
{ "wordspy.com", true },
{ "wordxtra.net", true },
- { "worf.in", true },
{ "work-in-progress.website", true },
{ "workcelerator.com", true },
{ "workcheck.bz", true },
{ "workcloud.jp", true },
+ { "workeria-personal.de", true },
{ "workforce.co.tz", true },
{ "workgrouptech.org", true },
{ "workingclassmedia.com", true },
@@ -38959,15 +39590,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "worldpeacetechnology.com", true },
{ "worldrecipes.eu", true },
{ "worldsgreatestazuredemo.com", true },
- { "worldsoccerclips.com", true },
{ "worldstone777.com", true },
{ "worldtalk.de", true },
{ "wormbytes.ca", true },
- { "wormdisk.net", true },
{ "worst.horse", false },
{ "wort-suchen.de", true },
{ "woshiluo.site", true },
{ "wot-tudasbazis.hu", true },
+ { "woti.dedyn.io", true },
{ "wotra-register.com", true },
{ "woudenberg.nl", true },
{ "woudenbergsedrukkerij.nl", true },
@@ -38994,16 +39624,15 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wp-site1.com", true },
{ "wp-site2.com", true },
{ "wp-tao.com", true },
+ { "wp-webagentur.de", true },
{ "wpac.de", true },
{ "wpandup.org", true },
{ "wpcanban.com", true },
{ "wpccu.org", true },
{ "wpcdn.bid", true },
{ "wpcharged.nz", true },
- { "wpdesigner.ir", true },
{ "wpdirecto.com", true },
{ "wpdublin.com", true },
- { "wpenhance.com", true },
{ "wpexplorer.com", true },
{ "wpformation.com", true },
{ "wpgoblin.com", true },
@@ -39042,13 +39671,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "writeandedit-for-you.com", true },
{ "writecustomessay.com", true },
{ "writeenglishright.com", true },
- { "writemyessay.info", true },
{ "writemyessay.today", true },
{ "writemyessays.com", true },
{ "writemypaperhub.com", true },
{ "writeoff.me", true },
{ "writepride.com", true },
{ "writepro.net", true },
+ { "writer24.ru", true },
{ "writereditor.com", true },
{ "writing-job-online.com", true },
{ "writingcities.net", true },
@@ -39073,7 +39702,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wsl.sh", true },
{ "wsspalluto.de", true },
{ "wssv.ch", true },
- { "wstudio.ch", true },
{ "wstx.com", true },
{ "wsv-grafenau.de", true },
{ "wsyy.info", true },
@@ -39087,7 +39715,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wtpmj.com", true },
{ "wtw.io", true },
{ "wuerfel.wf", true },
- { "wuerfelmail.de", true },
{ "wufu.org", false },
{ "wug.jp", true },
{ "wug.news", true },
@@ -39104,10 +39731,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wunderlist.com", true },
{ "wundernas.ch", true },
{ "wundi.net", true },
+ { "wunschzettel.de", true },
{ "wuppertal-2018.de", true },
{ "wuppertaler-kurrende.com", true },
{ "wuppertaler-kurrende.de", true },
{ "wutianyi.com", true },
+ { "wuwuwu.me", true },
{ "wuxiaobai.win", true },
{ "wuxiaohen.com", true },
{ "wuyue.photo", true },
@@ -39121,14 +39750,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wweforums.net", true },
{ "wweichen.com.cn", true },
{ "wwgc2011.se", true },
- { "wwjd.dynu.net", true },
{ "wwv-8522.com", true },
{ "wwv-8722.com", true },
{ "www-33445.com", true },
{ "www-49889.com", true },
{ "www-7570.com", true },
{ "www-80036.com", true },
- { "www-8522.am", true },
{ "www-8522.com", true },
{ "www-86499.com", true },
{ "www-8722.com", true },
@@ -39156,6 +39783,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "www.facebook.com", false },
{ "www.fastmail.com", true },
{ "www.ft.com", true },
+ { "www.gamesdepartment.co.uk", true },
{ "www.getcloak.com", false },
{ "www.gmail.com", false },
{ "www.googlemail.com", false },
@@ -39192,11 +39820,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "www.twitter.com", false },
{ "www.united.com", true },
{ "www.usaa.com", false },
+ { "www.viasinc.com", false },
{ "www.vino75.com", false },
{ "www.wepay.com", false },
{ "www.wordpress.com", false },
{ "www.zdnet.com", true },
- { "www68277.com", true },
{ "wwww.is", true },
{ "wwww.me.uk", true },
{ "wxcafe.net", true },
@@ -39204,10 +39832,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wxforums.com", true },
{ "wxh.jp", true },
{ "wxster.com", true },
- { "wxzm.sx", true },
{ "wyam.io", true },
{ "wybar.uk", true },
- { "wycrow.com", true },
+ { "wycrow.com", false },
{ "wyday.com", true },
{ "wygibanki.pl", true },
{ "wygodnie.pl", true },
@@ -39220,6 +39847,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "wyssmuller.ch", true },
{ "wzfetish.com.br", true },
{ "wzfou.com", true },
+ { "wzrd.in", true },
{ "wzyboy.org", true },
{ "x-lan.be", true },
{ "x-one.co.jp", true },
@@ -39231,14 +39859,14 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "x2d2.de", true },
{ "x378.ch", true },
{ "x509.io", true },
+ { "x64architecture.com", true },
{ "x7plus.com", true },
{ "xa.search.yahoo.com", false },
{ "xa1.uk", true },
{ "xanadu-taxi.cz", true },
{ "xanax.pro", false },
{ "xants.de", true },
- { "xatr0z.org", false },
- { "xavier.is", true },
+ { "xawen.net", false },
{ "xbb.hk", true },
{ "xbb.li", true },
{ "xbertschy.com", true },
@@ -39307,10 +39935,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xiaolong.link", true },
{ "xiaomao.tk", true },
{ "xiaomi.eu", true },
+ { "xiaomionline24.pl", true },
{ "xiaoniaoyou.com", true },
{ "xiaoyu.net", true },
{ "xiaoyy.org", true },
- { "xiazhanjian.com", true },
{ "xice.cf", true },
{ "xichtsbuch.de", true },
{ "xicreative.net", true },
@@ -39318,6 +39946,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xif.at", true },
{ "xight.org", true },
{ "xilef.org", true },
+ { "xiliant.com", false },
{ "xilkoi.net", true },
{ "xilou.org", true },
{ "ximbo.net", true },
@@ -39349,6 +39978,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xmenrevolution.com", true },
{ "xmlbeam.org", true },
{ "xmlogin288.com", true },
+ { "xmodule.org", true },
{ "xmpp.dk", true },
{ "xmppwocky.net", true },
{ "xmr.to", true },
@@ -39357,14 +39987,17 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xmv.cz", false },
{ "xn----7sbfl2alf8a.xn--p1ai", true },
{ "xn----8hcdn2ankm1bfq.com", true },
+ { "xn----8sbjfacqfqshbh7afyeg.xn--80asehdb", true },
{ "xn----zmcaltpp1mdh16i.com", true },
{ "xn--0iv967ab7w.xn--rhqv96g", true },
{ "xn--0kq33cz5c8wmwrqqw1d.com", true },
+ { "xn--158h.ml", true },
{ "xn--24-6kch4bfqee.xn--p1ai", true },
{ "xn--24-glcia8dc.xn--p1ai", true },
{ "xn--48jwg508p.net", true },
{ "xn--4kro7fswi.xn--6qq986b3xl", true },
{ "xn--4pv80kkz8auzf.jp", true },
+ { "xn--57h.ml", true },
{ "xn--5dbkjqb0d.com", true },
{ "xn--5dbkjqb0d.net", true },
{ "xn--6o8h.cf", true },
@@ -39377,6 +40010,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--80aejljbfwxn.xn--p1ai", true },
{ "xn--80anogxed.xn--p1ai", true },
{ "xn--80azelb.xn--p1ai", true },
+ { "xn--8bi.gq", true },
{ "xn--8dry00a7se89ay98epsgxxq.com", true },
{ "xn--90accgba6bldkcbb7a.xn--p1acf", true },
{ "xn--allgu-biker-o8a.de", true },
@@ -39407,6 +40041,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--ehq13kgw4e.ml", true },
{ "xn--elsignificadodesoar-c4b.com", true },
{ "xn--erklderbarenben-slbh.dk", true },
+ { "xn--et8h.cf", true },
{ "xn--f9jh4f4b4993b66s.tokyo", true },
{ "xn--familie-pppinghaus-l3b.de", true },
{ "xn--feuerlscher-arten-4zb.de", true },
@@ -39415,11 +40050,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--fp8h58f.ws", true },
{ "xn--frankierknig-djb.de", true },
{ "xn--fs5ak3f.com", true },
+ { "xn--gfrr-7qa.li", true },
{ "xn--gfrrli-yxa.ch", true },
{ "xn--hgbk4a00a.com", true },
{ "xn--hllrigl-90a.at", true },
{ "xn--i2ru8q2qg.com", true },
{ "xn--imker-in-nrnberg-szb.de", true },
+ { "xn--is8h6d.gq", true },
{ "xn--j4h.cf", true },
{ "xn--jbs-tna.de", true },
{ "xn--jda.tk", true },
@@ -39432,6 +40069,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--krpto-lva.de", true },
{ "xn--ktha-kamrater-pfba.se", true },
{ "xn--lckwg.net", true },
+ { "xn--lnakuten-9za.com", true },
{ "xn--love-un4c7e0d4a.com", true },
{ "xn--lsaupp-iua.se", true },
{ "xn--lsupp-mra.net", true },
@@ -39474,8 +40112,10 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--s-1gaa.fi", true },
{ "xn--seelenwchter-mcb.eu", true },
{ "xn--spenijmazania-yhc.pl", true },
+ { "xn--sz8h.ml", true },
{ "xn--t-oha.lv", true },
{ "xn--t8j4aa4nkg1h9bwcvud.com", true },
+ { "xn--t8j4aa4nyhxa7duezbl49aqg5546e264d.net", true },
{ "xn--t8j4aa4nzg3a5euoxcwee.xyz", true },
{ "xn--tigreray-i1a.org", true },
{ "xn--trdler-xxa.xyz", true },
@@ -39485,6 +40125,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xn--v-wfa35g.ro", true },
{ "xn--v6q426ishax2a.xyz", true },
{ "xn--woistdermlleimer-rzb.de", true },
+ { "xn--wq9h.ml", true },
{ "xn--y-5ga.com", true },
{ "xn--y8j148r.xn--q9jyb4c", true },
{ "xn--y8ja6lb.xn--q9jyb4c", true },
@@ -39519,12 +40160,13 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xposedornot.com", true },
{ "xps2pdf.co.uk", true },
{ "xps2pdf.info", true },
+ { "xq55.com", false },
{ "xqk7.com", true },
{ "xr.cx", true },
+ { "xr1s.me", true },
{ "xrg.cz", true },
{ "xrippedhd.com", true },
{ "xrockx.de", true },
- { "xroot.org", false },
{ "xrwracing-france.com", true },
{ "xs2a.no", true },
{ "xs74.com", true },
@@ -39535,7 +40177,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xserownia.pl", true },
{ "xsmobile.de", true },
{ "xss.ht", true },
+ { "xss.name", true },
{ "xss.sk", true },
+ { "xsuper.net", true },
{ "xsz.jp", true },
{ "xtarget.ru", true },
{ "xtips.us", true },
@@ -39547,7 +40191,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xtom.wiki", true },
{ "xtrainsights.com", true },
{ "xtremebouncepartyhire.com.au", true },
- { "xtremegaming.it", true },
+ { "xtrememidlife.nl", true },
{ "xtronics.com", true },
{ "xts.bike", true },
{ "xts3636.net", true },
@@ -39559,6 +40203,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xubo666.com", true },
{ "xuc.me", true },
{ "xuedianshang.com", true },
+ { "xuehao.net.cn", true },
+ { "xuehuang666.cn", true },
{ "xuming.studio", true },
{ "xunn.io", true },
{ "xuntier.ch", true },
@@ -39570,6 +40216,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xxffo.com", true },
{ "xxiz.com", true },
{ "xxxlbox.com", true },
+ { "xxxsuper.net", true },
{ "xyenon.bid", true },
{ "xyfun.net", false },
{ "xyngular-health.com", true },
@@ -39579,7 +40226,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "xza.fr", true },
{ "xzclip.cn", true },
{ "xzy.es", true },
- { "xzy.one", true },
{ "y11n.net", true },
{ "yabuisha.jp", true },
{ "yachigoya.com", true },
@@ -39609,6 +40255,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yanbao.xyz", true },
{ "yandere.moe", true },
{ "yangjingwen.cn", true },
+ { "yangmaodang.org", true },
{ "yanngraf.ch", true },
{ "yanngraf.com", true },
{ "yannic.world", true },
@@ -39619,10 +40266,12 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yanovich.net", true },
{ "yanqiyu.info", true },
{ "yantrasthal.com", true },
+ { "yanuwa.com", true },
{ "yao-in.com", true },
{ "yao-in.net", true },
{ "yapbreak.fr", true },
{ "yarcom.ru", false },
+ { "yarogneva.ru", true },
{ "yarravilletownhouses.com.au", true },
{ "yaru.one", true },
{ "yassine-ayari.com", true },
@@ -39634,6 +40283,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yawen.me", true },
{ "yawnbox.com", true },
{ "yaxim.org", true },
+ { "yayart.club", true },
{ "yazaral.com", true },
{ "ybin.me", true },
{ "ybresson.com", true },
@@ -39689,6 +40339,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yelp.se", true },
{ "yemektarifleri.com", true },
{ "yenibilgi.net", true },
+ { "yenpape.com", true },
{ "yep-pro.ch", true },
{ "yephy.com", true },
{ "yeshu.org", true },
@@ -39711,6 +40362,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yhfou.com", true },
{ "yhndnzj.com", true },
{ "yhong.me", true },
+ { "yhrd.org", true },
{ "yhwj.top", false },
{ "yicknam.my", true },
{ "yiffy.tips", false },
@@ -39719,15 +40371,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yiheng.moe", true },
{ "yii2.cc", true },
{ "yikeyong.com", true },
- { "yimgo.fr", true },
{ "yinfor.com", true },
{ "yingatech.com", true },
{ "yinglinda.love", true },
{ "yinlei.org", true },
+ { "yipingguo.com", true },
{ "yiyuanzhong.com", true },
{ "yiyueread.com", true },
{ "yiz96.com", true },
{ "yjsw.sh.cn", true },
+ { "ykhut.com", true },
{ "yksityisyydensuoja.fi", true },
{ "ylde.de", true },
{ "ylinternal.com", true },
@@ -39779,6 +40432,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yosheenetwork.fr", true },
{ "yoshibaworks.com", true },
{ "yoshitsugu.net", true },
+ { "yosida-dental.com", true },
{ "yospos.org", true },
{ "yoticonnections.com", true },
{ "yotilab.com", true },
@@ -39813,13 +40467,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "your-erotic-stories.com", true },
{ "your-out.com", true },
{ "youracnepro.com", true },
+ { "youran.me", true },
{ "yourbonus.click", true },
{ "yourciso.com", true },
{ "yourcomputer.expert", true },
{ "yourcopywriter.it", true },
{ "yourforex.org", true },
{ "yourfriendlytech.com", true },
+ { "yourfuntrivia.com", true },
{ "yourfuturestrategy.com.au", true },
+ { "yourgadget.ro", true },
{ "yourgames.tv", true },
{ "yourhair.net", true },
{ "yourmemorykeeper.co.uk", true },
@@ -39840,19 +40497,16 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yoyoost.duckdns.org", true },
{ "ypart.eu", true },
{ "ypid.de", true },
- { "ypiresia.fr", false },
{ "yplanapp.com", true },
{ "yqjf68.com", true },
{ "yr166166.com", true },
{ "yrjanheikki.com", true },
{ "ys-shop.biz", true },
+ { "ysicing.net", true },
{ "ysicorp.com", true },
{ "yspeo.biz", true },
{ "ysun.xyz", true },
{ "ysx.me.uk", true },
- { "ytb.zone", true },
- { "ytbmp3.com", true },
- { "ytbmp4.com", true },
{ "ytec.ca", true },
{ "ytpak.com", true },
{ "ytpak.pk", true },
@@ -39925,7 +40579,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yukari.cafe", true },
{ "yukari.cloud", true },
{ "yuki-nagato.com", true },
- { "yuki-portfolio.com", true },
{ "yuki.xyz", true },
{ "yukonconnector.com", true },
{ "yukonlip.com", true },
@@ -39945,8 +40598,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yutakato.net", true },
{ "yutang.vn", true },
{ "yutangyun.com", true },
- { "yutaron.tokyo", true },
{ "yutuo.net", true },
+ { "yuuta.moe", true },
{ "yuwei.org", true },
{ "yuweiyang.xyz", true },
{ "yuxuan.org", true },
@@ -39961,11 +40614,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "yvonnethomet.ch", true },
{ "yvonnewilhelmi.com", true },
{ "yxt521.com", true },
- { "yya.bid", true },
{ "yya.me", true },
- { "yya.men", true },
{ "yyc.city", true },
- { "yyrss.com", false },
{ "yyyy.xyz", true },
{ "yzal.io", true },
{ "yzcloud.me", true },
@@ -39982,6 +40632,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "za.search.yahoo.com", false },
{ "zaagbaak.nl", true },
{ "zaalleatherwear.nl", false },
+ { "zabavno.mk", true },
{ "zabbix.tips", true },
{ "zabszk.net", true },
{ "zabukovnik.net", true },
@@ -39999,10 +40650,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zachaysan.com", true },
{ "zachborboa.com", true },
{ "zachgibbens.org", true },
- { "zachpeters.org", true },
{ "zachschneider.ca", true },
{ "zaclys.com", false },
- { "zadroweb.com", true },
{ "zafirus.name", true },
{ "zaghyr.org", true },
{ "zahe.me", true },
@@ -40017,6 +40666,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zakladam.cz", true },
{ "zakmccrac.de", true },
{ "zakojifarm.jp", true },
+ { "zakoncontrol.com", false },
{ "zakr.es", true },
{ "zakspartiesandevents.com", true },
{ "zalamea.ph", true },
@@ -40031,7 +40681,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zanthra.com", true },
{ "zanzabar.it", true },
{ "zapier.com", true },
- { "zapmaster14.com", true },
{ "zappbuildapps.com", false },
{ "zappos.com", true },
{ "zaptan.info", false },
@@ -40069,7 +40718,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zdravekonzultace.cz", true },
{ "zdravesteny.cz", true },
{ "zdrojak.cz", true },
+ { "zdymak.by", true },
{ "ze3kr.com", true },
+ { "zeal-and.jp", true },
{ "zeal-interior.com", true },
{ "zealworks.jp", true },
{ "zebbra.ro", true },
@@ -40079,6 +40730,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zeebrieshoekvanholland.nl", true },
{ "zeel.com", true },
{ "zeelynk.com", true },
+ { "zeestraten.nl", true },
{ "zeetoppers.nl", true },
{ "zeeuw.nl", true },
{ "zeguigui.com", true },
@@ -40096,8 +40748,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zena.cx", false },
{ "zenchain.com", true },
{ "zenevents.ro", true },
- { "zenfusion.fr", true },
{ "zengdong.ren", true },
+ { "zenghx.tk", false },
{ "zenics.co.uk", true },
{ "zenithmedia.ca", true },
{ "zenk-security.com", true },
@@ -40106,9 +40758,11 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zennzimie.be", true },
{ "zennzimie.com", true },
{ "zenofa.co.id", true },
+ { "zenram.com", true },
{ "zentask.io", true },
{ "zenti.cloud", true },
{ "zenvideocloud.com", true },
+ { "zeparadox.com", true },
{ "zephyrbk.com", true },
{ "zephyrbookkeeping.com", true },
{ "zephyretcoraline.com", true },
@@ -40162,7 +40816,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zhiku8.com", true },
{ "zhima.io", true },
{ "zhitanska.com", true },
- { "zhiwei.me", true },
{ "zhl123.com", true },
{ "zhongzicili.ws", true },
{ "zhoushuo.me", true },
@@ -40170,6 +40823,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zhovner.com", true },
{ "zhthings.com", true },
{ "zhuihoude.com", true },
+ { "zi.is", true },
{ "ziegler-family.com", true },
{ "ziegler-heizung-frankfurt.de", true },
{ "zielonakarta.com", true },
@@ -40184,11 +40838,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zikinf.com", true },
{ "ziktime.com", true },
{ "zillertaleralpen.net", true },
- { "zilon.com.co", true },
{ "zilore.com", true },
{ "zilsen.com", true },
{ "zima.io", true },
- { "zimiao.moe", true },
{ "zimmer-voss.de", true },
{ "zingarastore.com", true },
{ "zingjerijk.nl", true },
@@ -40213,6 +40865,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zivyruzenec.cz", false },
{ "zixiao.wang", true },
{ "zjv.me", true },
+ { "zjyifa.cn", true },
{ "zk.gd", true },
{ "zk9.nl", true },
{ "zkontrolujsiauto.cz", true },
@@ -40276,6 +40929,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zoomseoservices.com", false },
{ "zooom.azurewebsites.net", true },
{ "zooom2.azurewebsites.net", true },
+ { "zoop.ml", true },
{ "zooparadies.eu", true },
{ "zooplankton.no", true },
{ "zootime.net", true },
@@ -40293,8 +40947,9 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zouk.info", true },
{ "zozo.com", true },
{ "zozzle.co.uk", true },
+ { "zp25.ninja", true },
+ { "zqstudio.top", true },
{ "zravypapir.cz", true },
- { "zrhdwz.cn", true },
{ "zrniecka-pre-sny.sk", true },
{ "zrnieckapresny.sk", true },
{ "zrt.io", true },
@@ -40311,6 +40966,7 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zuan-in.net", true },
{ "zubel.it", false },
{ "zubora.co", true },
+ { "zubro.net", true },
{ "zuefle.net", true },
{ "zug-anwalt.de", true },
{ "zug.fr", true },
@@ -40332,7 +40988,6 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zuppy.pm", true },
{ "zuralski.net", true },
{ "zurgl.com", false },
- { "zurickrelogios.com.br", true },
{ "zurret.de", true },
{ "zusjesvandenbos.nl", true },
{ "zuzumba.es", true },
@@ -40363,6 +41018,8 @@ static const nsSTSPreload kSTSPreloadList[] = {
{ "zyrillezuno.com", true },
{ "zyul.ddns.net", true },
{ "zyzardx.com", true },
+ { "zyzsdy.com", true },
+ { "zz295.com", true },
{ "zzekj.net", true },
{ "zzpd.nl", false },
{ "zzsec.org", true },