// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // This file contains the HSTS preloaded list in a machine readable format. // The top-level element is a dictionary with one key: "entries", which contains // the HSTS details for each host. // // "entries" is a list of objects. Each object has the following members: // name: (string) the DNS name of the host in question. // policy: (string) the policy under which the domain is part of the // preload list. This field is used for list maintenance. // - test: test domains. // - google: Google-owned sites. // - custom: entries without includeSubdomains or with HPKP. // - bulk-legacy: bulk entries preloaded before Chrome 50. // - bulk-18-weeks: bulk entries with max-age >= 18 weeks (Chrome 50-63). // - bulk-1-year: bulk entries with max-age >= 1 year (after Chrome 63). // - public-suffix: public suffixes (e.g. TLDs or other public suffix // list entries) preloaded at the owner's request. // - public-suffix-requested: domains under a public suffix that have // been preloaded at the request of the the public suffix owner (e.g. // the registry for the TLD). // include_subdomains: (optional boolean) For backwards compatibility, this // means: // - If mode == "force-https", then apply force-https to subdomains. // mode: (optional string) "force-https" iff covered names should require // HTTPS. // { "entries": [ // Dummy entries to test certificate pinning. { "name": "pinningtest.appspot.com", "policy": "test", "include_subdomains": true }, { "name": "pinning-test.badssl.com", "policy": "test", "include_subdomains": true }, { "name": "example.test", "policy": "test", "include_subdomains": true }, // gTLDs and eTLDs are welcome to preload if they are interested. { "name": "android", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "app", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "bank", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "chrome", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "dev", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "foo", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "gle", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "gmail", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "google", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "hangout", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "insurance", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "meet", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "new", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "page", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "play", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "search", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "youtube", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "esq", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "fly", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "rsvp", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "eat", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "nexus", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "ing", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "meme", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "phd", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "prof", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "boo", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "dad", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "day", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "channel", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "hotmail", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "mov", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "zip", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "windows", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "skype", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "azure", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "office", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "bing", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "xbox", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "microsoft", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "amazon", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "audible", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "fire", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "imdb", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "kindle", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "prime", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "silk", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "zappos", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "xn--cckwcxetd", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "xn--jlq480n2rg", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "fujitsu", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, // Domains on the public suffix list that have requested to be preloaded. { "name": "bmoattachments.org", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "now.sh", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "cnpy.gdn", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "gentapps.com", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, { "name": "onavstack.net", "policy": "public-suffix", "mode": "force-https", "include_subdomains": true }, // Now we force HTTPS for subtrees of google.com. { "name": "mail.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "plus.sandbox.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "remotedesktop.corp.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "corp.goog", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "accounts.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "admin.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "apis.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "appengine.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "calendar.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "checkout.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "chrome.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "classroom.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "cloud.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "code.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "contributor.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "datastudio.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "dl.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "docs.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "domains.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "drive.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "encrypted.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "fi.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "glass.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "goto.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "groups.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "hangouts.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "history.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "hostedtalkgadget.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "inbox.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "lens.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "login.corp.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "mail-settings.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "meet.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "myaccount.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "myactivity.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "passwords.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "pixel.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "play.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "plus.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "profiles.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "script.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "security.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "sites.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "spreadsheets.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "talkgadget.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "talk.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "wallet.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "payments.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "xn--7xa.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "dns.google.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, // Other Google-related domains that must use HTTPS. { "name": "build.chromium.org", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "bugs.chromium.org", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "cdn.ampproject.org", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "chrome.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "chrome-devtools-frontend.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "chromereporting-pa.googleapis.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "chromiumcodereview.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "codereview.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "codereview.chromium.org", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "crbug.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "crosbug.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "crrev.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "firebaseio.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "g.co", "policy": "google", "mode": "force-https" }, { "name": "www.g.co", "policy": "google", "mode": "force-https" }, { "name": "g4w.co", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "gmail.com", "policy": "google", "mode": "force-https" }, { "name": "goo.gl", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "googlecode.com", "policy": "google", "include_subdomains": true }, { "name": "googlemail.com", "policy": "google", "mode": "force-https" }, { "name": "googleplex.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "googlesource.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "gvt2.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "gvt3.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "developer.android.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "market.android.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "oauthaccountmanager.googleapis.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "passwordsleakcheck-pa.googleapis.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "translate.googleapis.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "tunnel.googlezip.net", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "tunnel-staging.googlezip.net", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "withgoogle.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "withyoutube.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "www.gmail.com", "policy": "google", "mode": "force-https" }, { "name": "www.googlemail.com", "policy": "google", "mode": "force-https" }, { "name": "google-analytics.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "stats.g.doubleclick.net", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "chromiumbugs.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "youtube.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "ua5v.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "webfilings.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "webfilings-eu.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "webfilings-eu-mirror.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "webfilings-mirror-hrd.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "wf-bigsky-master.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "wf-demo-eu.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "wf-demo-hrd.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "wf-dogfood-hrd.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "wf-pentest.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "wf-staging-hr.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "wf-training-hrd.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "wf-training-master.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "wf-trial-hrd.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "w-spotlight.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, { "name": "xbrlsuccess.appspot.com", "policy": "google", "mode": "force-https", "include_subdomains": true }, // Other Google-related domains that must use an acceptable certificate // iff using SSL. { "name": "2mdn.net", "policy": "google", "include_subdomains": true }, { "name": "android.com", "policy": "google", "include_subdomains": true }, { "name": "appspot.com", "policy": "google", "include_subdomains": true }, { "name": "blogger.com", "policy": "google", "include_subdomains": true }, { "name": "blogspot.com", "policy": "google", "include_subdomains": true }, { "name": "doubleclick.net", "policy": "google", "include_subdomains": true }, { "name": "ggpht.com", "policy": "google", "include_subdomains": true }, { "name": "google.ac", "policy": "google", "include_subdomains": true }, { "name": "google.ad", "policy": "google", "include_subdomains": true }, { "name": "googleadservices.com", "policy": "google", "include_subdomains": true }, { "name": "google.ae", "policy": "google", "include_subdomains": true }, { "name": "google.af", "policy": "google", "include_subdomains": true }, { "name": "google.ag", "policy": "google", "include_subdomains": true }, { "name": "google.am", "policy": "google", "include_subdomains": true }, { "name": "googleapis.com", "policy": "google", "include_subdomains": true }, { "name": "google.as", "policy": "google", "include_subdomains": true }, { "name": "google.at", "policy": "google", "include_subdomains": true }, { "name": "google.az", "policy": "google", "include_subdomains": true }, { "name": "google.ba", "policy": "google", "include_subdomains": true }, { "name": "google.be", "policy": "google", "include_subdomains": true }, { "name": "google.bf", "policy": "google", "include_subdomains": true }, { "name": "google.bg", "policy": "google", "include_subdomains": true }, { "name": "google.bi", "policy": "google", "include_subdomains": true }, { "name": "google.bj", "policy": "google", "include_subdomains": true }, { "name": "google.bs", "policy": "google", "include_subdomains": true }, { "name": "google.by", "policy": "google", "include_subdomains": true }, { "name": "google.ca", "policy": "google", "include_subdomains": true }, { "name": "google.cat", "policy": "google", "include_subdomains": true }, { "name": "google.cc", "policy": "google", "include_subdomains": true }, { "name": "google.cd", "policy": "google", "include_subdomains": true }, { "name": "google.cf", "policy": "google", "include_subdomains": true }, { "name": "google.cg", "policy": "google", "include_subdomains": true }, { "name": "google.ch", "policy": "google", "include_subdomains": true }, { "name": "google.ci", "policy": "google", "include_subdomains": true }, { "name": "google.cl", "policy": "google", "include_subdomains": true }, { "name": "google.cm", "policy": "google", "include_subdomains": true }, { "name": "google.cn", "policy": "google", "include_subdomains": true }, { "name": "google.co.ao", "policy": "google", "include_subdomains": true }, { "name": "google.co.bw", "policy": "google", "include_subdomains": true }, { "name": "google.co.ck", "policy": "google", "include_subdomains": true }, { "name": "google.co.cr", "policy": "google", "include_subdomains": true }, { "name": "google.co.hu", "policy": "google", "include_subdomains": true }, { "name": "google.co.id", "policy": "google", "include_subdomains": true }, { "name": "google.co.il", "policy": "google", "include_subdomains": true }, { "name": "google.co.im", "policy": "google", "include_subdomains": true }, { "name": "google.co.in", "policy": "google", "include_subdomains": true }, { "name": "google.co.je", "policy": "google", "include_subdomains": true }, { "name": "google.co.jp", "policy": "google", "include_subdomains": true }, { "name": "google.co.ke", "policy": "google", "include_subdomains": true }, { "name": "google.co.kr", "policy": "google", "include_subdomains": true }, { "name": "google.co.ls", "policy": "google", "include_subdomains": true }, { "name": "google.com.af", "policy": "google", "include_subdomains": true }, { "name": "google.com.ag", "policy": "google", "include_subdomains": true }, { "name": "google.com.ai", "policy": "google", "include_subdomains": true }, { "name": "google.co.ma", "policy": "google", "include_subdomains": true }, { "name": "google.com.ar", "policy": "google", "include_subdomains": true }, { "name": "google.com.au", "policy": "google", "include_subdomains": true }, { "name": "google.com.bd", "policy": "google", "include_subdomains": true }, { "name": "google.com.bh", "policy": "google", "include_subdomains": true }, { "name": "google.com.bn", "policy": "google", "include_subdomains": true }, { "name": "google.com.bo", "policy": "google", "include_subdomains": true }, { "name": "google.com.br", "policy": "google", "include_subdomains": true }, { "name": "google.com.by", "policy": "google", "include_subdomains": true }, { "name": "google.com.bz", "policy": "google", "include_subdomains": true }, { "name": "google.com.cn", "policy": "google", "include_subdomains": true }, { "name": "google.com.co", "policy": "google", "include_subdomains": true }, { "name": "google.com.cu", "policy": "google", "include_subdomains": true }, { "name": "google.com.cy", "policy": "google", "include_subdomains": true }, { "name": "google.com.do", "policy": "google", "include_subdomains": true }, { "name": "google.com.ec", "policy": "google", "include_subdomains": true }, { "name": "google.com.eg", "policy": "google", "include_subdomains": true }, { "name": "google.com.et", "policy": "google", "include_subdomains": true }, { "name": "google.com.fj", "policy": "google", "include_subdomains": true }, { "name": "google.com.ge", "policy": "google", "include_subdomains": true }, { "name": "google.com.gh", "policy": "google", "include_subdomains": true }, { "name": "google.com.gi", "policy": "google", "include_subdomains": true }, { "name": "google.com.gr", "policy": "google", "include_subdomains": true }, { "name": "google.com.gt", "policy": "google", "include_subdomains": true }, { "name": "google.com.hk", "policy": "google", "include_subdomains": true }, { "name": "google.com", "policy": "google", "include_subdomains": true }, { "name": "google.com.iq", "policy": "google", "include_subdomains": true }, { "name": "google.com.jm", "policy": "google", "include_subdomains": true }, { "name": "google.com.jo", "policy": "google", "include_subdomains": true }, { "name": "google.com.kh", "policy": "google", "include_subdomains": true }, { "name": "google.com.kw", "policy": "google", "include_subdomains": true }, { "name": "google.com.lb", "policy": "google", "include_subdomains": true }, { "name": "google.com.ly", "policy": "google", "include_subdomains": true }, { "name": "googlecommerce.com", "policy": "google", "include_subdomains": true }, { "name": "google.com.mt", "policy": "google", "include_subdomains": true }, { "name": "google.com.mx", "policy": "google", "include_subdomains": true }, { "name": "google.com.my", "policy": "google", "include_subdomains": true }, { "name": "google.com.na", "policy": "google", "include_subdomains": true }, { "name": "google.com.nf", "policy": "google", "include_subdomains": true }, { "name": "google.com.ng", "policy": "google", "include_subdomains": true }, { "name": "google.com.ni", "policy": "google", "include_subdomains": true }, { "name": "google.com.np", "policy": "google", "include_subdomains": true }, { "name": "google.com.nr", "policy": "google", "include_subdomains": true }, { "name": "google.com.om", "policy": "google", "include_subdomains": true }, { "name": "google.com.pa", "policy": "google", "include_subdomains": true }, { "name": "google.com.pe", "policy": "google", "include_subdomains": true }, { "name": "google.com.ph", "policy": "google", "include_subdomains": true }, { "name": "google.com.pk", "policy": "google", "include_subdomains": true }, { "name": "google.com.pl", "policy": "google", "include_subdomains": true }, { "name": "google.com.pr", "policy": "google", "include_subdomains": true }, { "name": "google.com.py", "policy": "google", "include_subdomains": true }, { "name": "google.com.qa", "policy": "google", "include_subdomains": true }, { "name": "google.com.ru", "policy": "google", "include_subdomains": true }, { "name": "google.com.sa", "policy": "google", "include_subdomains": true }, { "name": "google.com.sb", "policy": "google", "include_subdomains": true }, { "name": "google.com.sg", "policy": "google", "include_subdomains": true }, { "name": "google.com.sl", "policy": "google", "include_subdomains": true }, { "name": "google.com.sv", "policy": "google", "include_subdomains": true }, { "name": "google.com.tj", "policy": "google", "include_subdomains": true }, { "name": "google.com.tn", "policy": "google", "include_subdomains": true }, { "name": "google.com.tr", "policy": "google", "include_subdomains": true }, { "name": "google.com.tw", "policy": "google", "include_subdomains": true }, { "name": "google.com.ua", "policy": "google", "include_subdomains": true }, { "name": "google.com.uy", "policy": "google", "include_subdomains": true }, { "name": "google.com.vc", "policy": "google", "include_subdomains": true }, { "name": "google.com.ve", "policy": "google", "include_subdomains": true }, { "name": "google.com.vn", "policy": "google", "include_subdomains": true }, { "name": "google.co.mz", "policy": "google", "include_subdomains": true }, { "name": "google.co.nz", "policy": "google", "include_subdomains": true }, { "name": "google.co.th", "policy": "google", "include_subdomains": true }, { "name": "google.co.tz", "policy": "google", "include_subdomains": true }, { "name": "google.co.ug", "policy": "google", "include_subdomains": true }, { "name": "google.co.uk", "policy": "google", "include_subdomains": true }, { "name": "google.co.uz", "policy": "google", "include_subdomains": true }, { "name": "google.co.ve", "policy": "google", "include_subdomains": true }, { "name": "google.co.vi", "policy": "google", "include_subdomains": true }, { "name": "google.co.za", "policy": "google", "include_subdomains": true }, { "name": "google.co.zm", "policy": "google", "include_subdomains": true }, { "name": "google.co.zw", "policy": "google", "include_subdomains": true }, { "name": "google.cv", "policy": "google", "include_subdomains": true }, { "name": "google.cz", "policy": "google", "include_subdomains": true }, { "name": "google.de", "policy": "google", "include_subdomains": true }, { "name": "google.dj", "policy": "google", "include_subdomains": true }, { "name": "google.dk", "policy": "google", "include_subdomains": true }, { "name": "google.dm", "policy": "google", "include_subdomains": true }, { "name": "google.dz", "policy": "google", "include_subdomains": true }, { "name": "google.ee", "policy": "google", "include_subdomains": true }, { "name": "google.es", "policy": "google", "include_subdomains": true }, { "name": "google.fi", "policy": "google", "include_subdomains": true }, { "name": "google.fm", "policy": "google", "include_subdomains": true }, { "name": "google.fr", "policy": "google", "include_subdomains": true }, { "name": "google.ga", "policy": "google", "include_subdomains": true }, { "name": "google.ge", "policy": "google", "include_subdomains": true }, { "name": "google.gg", "policy": "google", "include_subdomains": true }, { "name": "google.gl", "policy": "google", "include_subdomains": true }, { "name": "google.gm", "policy": "google", "include_subdomains": true }, { "name": "google.gp", "policy": "google", "include_subdomains": true }, { "name": "google.gr", "policy": "google", "include_subdomains": true }, { "name": "googlegroups.com", "policy": "google", "include_subdomains": true }, { "name": "google.gy", "policy": "google", "include_subdomains": true }, { "name": "google.hk", "policy": "google", "include_subdomains": true }, { "name": "google.hn", "policy": "google", "include_subdomains": true }, { "name": "google.hr", "policy": "google", "include_subdomains": true }, { "name": "google.ht", "policy": "google", "include_subdomains": true }, { "name": "google.hu", "policy": "google", "include_subdomains": true }, { "name": "google.ie", "policy": "google", "include_subdomains": true }, { "name": "google.im", "policy": "google", "include_subdomains": true }, { "name": "google.info", "policy": "google", "include_subdomains": true }, { "name": "google.iq", "policy": "google", "include_subdomains": true }, { "name": "google.is", "policy": "google", "include_subdomains": true }, { "name": "google.it.ao", "policy": "google", "include_subdomains": true }, { "name": "google.it", "policy": "google", "include_subdomains": true }, { "name": "google.je", "policy": "google", "include_subdomains": true }, { "name": "google.jobs", "policy": "google", "include_subdomains": true }, { "name": "google.jo", "policy": "google", "include_subdomains": true }, { "name": "google.jp", "policy": "google", "include_subdomains": true }, { "name": "google.kg", "policy": "google", "include_subdomains": true }, { "name": "google.ki", "policy": "google", "include_subdomains": true }, { "name": "google.kz", "policy": "google", "include_subdomains": true }, { "name": "google.la", "policy": "google", "include_subdomains": true }, { "name": "google.li", "policy": "google", "include_subdomains": true }, { "name": "google.lk", "policy": "google", "include_subdomains": true }, { "name": "google.lt", "policy": "google", "include_subdomains": true }, { "name": "google.lu", "policy": "google", "include_subdomains": true }, { "name": "google.lv", "policy": "google", "include_subdomains": true }, { "name": "google.md", "policy": "google", "include_subdomains": true }, { "name": "google.me", "policy": "google", "include_subdomains": true }, { "name": "google.mg", "policy": "google", "include_subdomains": true }, { "name": "google.mk", "policy": "google", "include_subdomains": true }, { "name": "google.ml", "policy": "google", "include_subdomains": true }, { "name": "google.mn", "policy": "google", "include_subdomains": true }, { "name": "google.ms", "policy": "google", "include_subdomains": true }, { "name": "google.mu", "policy": "google", "include_subdomains": true }, { "name": "google.mv", "policy": "google", "include_subdomains": true }, { "name": "google.mw", "policy": "google", "include_subdomains": true }, { "name": "google.ne", "policy": "google", "include_subdomains": true }, { "name": "google.ne.jp", "policy": "google", "include_subdomains": true }, { "name": "google.net", "policy": "google", "include_subdomains": true }, { "name": "google.nl", "policy": "google", "include_subdomains": true }, { "name": "google.no", "policy": "google", "include_subdomains": true }, { "name": "google.nr", "policy": "google", "include_subdomains": true }, { "name": "google.nu", "policy": "google", "include_subdomains": true }, { "name": "google.off.ai", "policy": "google", "include_subdomains": true }, { "name": "google.pk", "policy": "google", "include_subdomains": true }, { "name": "google.pl", "policy": "google", "include_subdomains": true }, { "name": "google.pn", "policy": "google", "include_subdomains": true }, { "name": "google.ps", "policy": "google", "include_subdomains": true }, { "name": "google.pt", "policy": "google", "include_subdomains": true }, { "name": "google.ro", "policy": "google", "include_subdomains": true }, { "name": "google.rs", "policy": "google", "include_subdomains": true }, { "name": "google.ru", "policy": "google", "include_subdomains": true }, { "name": "google.rw", "policy": "google", "include_subdomains": true }, { "name": "google.sc", "policy": "google", "include_subdomains": true }, { "name": "google.se", "policy": "google", "include_subdomains": true }, { "name": "google.sh", "policy": "google", "include_subdomains": true }, { "name": "google.si", "policy": "google", "include_subdomains": true }, { "name": "google.sk", "policy": "google", "include_subdomains": true }, { "name": "google.sm", "policy": "google", "include_subdomains": true }, { "name": "google.sn", "policy": "google", "include_subdomains": true }, { "name": "google.so", "policy": "google", "include_subdomains": true }, { "name": "google.st", "policy": "google", "include_subdomains": true }, { "name": "googlesyndication.com", "policy": "google", "include_subdomains": true }, { "name": "googletagmanager.com", "policy": "google", "include_subdomains": true }, { "name": "googletagservices.com", "policy": "google", "include_subdomains": true }, { "name": "google.td", "policy": "google", "include_subdomains": true }, { "name": "google.tg", "policy": "google", "include_subdomains": true }, { "name": "google.tk", "policy": "google", "include_subdomains": true }, { "name": "google.tl", "policy": "google", "include_subdomains": true }, { "name": "google.tm", "policy": "google", "include_subdomains": true }, { "name": "google.tn", "policy": "google", "include_subdomains": true }, { "name": "google.to", "policy": "google", "include_subdomains": true }, { "name": "google.tt", "policy": "google", "include_subdomains": true }, { "name": "googleusercontent.com", "policy": "google", "include_subdomains": true }, { "name": "google.ua", "policy": "google", "include_subdomains": true }, { "name": "google.us", "policy": "google", "include_subdomains": true }, { "name": "google.uz", "policy": "google", "include_subdomains": true }, { "name": "google.vg", "policy": "google", "include_subdomains": true }, { "name": "googlevideo.com", "policy": "google", "include_subdomains": true }, { "name": "google.vu", "policy": "google", "include_subdomains": true }, { "name": "googleweblight.com", "policy": "google", "include_subdomains": true }, { "name": "google.ws", "policy": "google", "include_subdomains": true }, { "name": "gstatic.com", "policy": "google", "include_subdomains": true }, { "name": "gstatic.cn", "policy": "google", "include_subdomains": true }, { "name": "gvt1.com", "policy": "google", "include_subdomains": true }, { "name": "static.googleadsserving.cn", "policy": "google", "include_subdomains": true }, { "name": "urchin.com", "policy": "google", "include_subdomains": true }, { "name": "www.googlegroups.com", "policy": "google", "include_subdomains": true }, { "name": "youtu.be", "policy": "google", "include_subdomains": true }, { "name": "youtube-nocookie.com", "policy": "google", "include_subdomains": true }, { "name": "ytimg.com", "policy": "google", "include_subdomains": true }, // Enforce HSTS and public key pins for Yahoo domains. { "name": "at.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "au.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "az.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "be.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "bi.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "br.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "ca.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "cd.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "cg.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "chfr.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "chit.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "ch.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "cl.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "cn.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "co.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "cr.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "ct.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "de.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "dk.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "do.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "en-maktoob.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "espanol.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "es.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "fi.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "fj.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "fr.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "gl.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "gm.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "gr.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "hk.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "hn.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "hu.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "id.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "ie.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "in.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "it.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "kr.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "kz.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "li.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "lt.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "lu.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "lv.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "maktoob.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "malaysia.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "mt.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "mu.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "mw.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "mx.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "ni.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "nl.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "no.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "np.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "nz.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "pa.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "pe.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "ph.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "pk.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "pl.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "pr.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "py.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "qc.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "ro.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "ru.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "rw.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "se.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "sg.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "sv.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "th.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "tr.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "tv.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "tw.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "ua.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "uk.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "uy.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "uz.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "ve.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "vn.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "xa.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "za.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "zh.search.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "login.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "mail.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "edit.yahoo.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "facebook.com", "policy": "custom", "mode": "force-https" }, { "name": "www.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "m.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "tablet.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "secure.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "pixel.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "apps.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "upload.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "developers.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "touch.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "mbasic.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "code.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "t.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "mtouch.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "business.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "research.facebook.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "messenger.com", "policy": "custom", "mode": "force-https" }, { "name": "www.messenger.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, // Enforce HSTS for Twitter domains. { "name": "twitter.com", "policy": "custom", "mode": "force-https" }, { "name": "www.twitter.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, // START OF LEGACY MANUAL CUSTOM ENTRIES { "name": "www.paypal.com", "policy": "custom", "mode": "force-https" }, { "name": "paypal.com", "policy": "custom", "mode": "force-https" }, { "name": "www.elanex.biz", "policy": "custom", "mode": "force-https" }, { "name": "www.noisebridge.net", "policy": "custom", "mode": "force-https" }, { "name": "neg9.org", "policy": "custom", "mode": "force-https" }, { "name": "factor.cc", "policy": "custom", "mode": "force-https" }, { "name": "aladdinschools.appspot.com", "policy": "custom", "mode": "force-https" }, { "name": "www.paycheckrecords.com", "policy": "custom", "mode": "force-https" }, { "name": "lastpass.com", "policy": "custom", "mode": "force-https" }, { "name": "www.lastpass.com", "policy": "custom", "mode": "force-https" }, { "name": "entropia.de", "policy": "custom", "mode": "force-https" }, { "name": "www.entropia.de", "policy": "custom", "mode": "force-https" }, { "name": "logentries.com", "policy": "custom", "mode": "force-https" }, { "name": "www.logentries.com", "policy": "custom", "mode": "force-https" }, { "name": "dropcam.com", "policy": "custom", "mode": "force-https" }, { "name": "www.dropcam.com", "policy": "custom", "mode": "force-https" }, { "name": "epoxate.com", "policy": "custom", "mode": "force-https" }, { "name": "torproject.org", "policy": "custom", "mode": "force-https" }, { "name": "blog.torproject.org", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "check.torproject.org", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "www.torproject.org", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "dist.torproject.org", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "ledgerscope.net", "policy": "custom", "mode": "force-https" }, { "name": "www.ledgerscope.net", "policy": "custom", "mode": "force-https" }, { "name": "greplin.com", "policy": "custom", "mode": "force-https" }, { "name": "www.greplin.com", "policy": "custom", "mode": "force-https" }, { "name": "mydigipass.com", "policy": "custom", "mode": "force-https" }, { "name": "www.mydigipass.com", "policy": "custom", "mode": "force-https" }, { "name": "developer.mydigipass.com", "policy": "custom", "mode": "force-https" }, { "name": "www.developer.mydigipass.com", "policy": "custom", "mode": "force-https" }, { "name": "sandbox.mydigipass.com", "policy": "custom", "mode": "force-https" }, { "name": "www.sandbox.mydigipass.com", "policy": "custom", "mode": "force-https" }, { "name": "crypto.cat", "policy": "custom", "mode": "force-https" }, { "name": "braintreepayments.com", "policy": "custom", "mode": "force-https" }, { "name": "www.braintreepayments.com", "policy": "custom", "mode": "force-https" }, { "name": "emailprivacytester.com", "policy": "custom", "mode": "force-https" }, { "name": "jitsi.org", "policy": "custom", "mode": "force-https" }, { "name": "www.jitsi.org", "policy": "custom", "mode": "force-https" }, { "name": "download.jitsi.org", "policy": "custom", "mode": "force-https" }, { "name": "irccloud.com", "policy": "custom", "mode": "force-https" }, { "name": "www.irccloud.com", "policy": "custom", "mode": "force-https" }, { "name": "alpha.irccloud.com", "policy": "custom", "mode": "force-https" }, { "name": "neonisi.com", "policy": "custom", "mode": "force-https" }, { "name": "www.makeyourlaws.org", "policy": "custom", "mode": "force-https" }, { "name": "surfeasy.com", "policy": "custom", "mode": "force-https" }, { "name": "www.surfeasy.com", "policy": "custom", "mode": "force-https" }, { "name": "packagist.org", "policy": "custom", "mode": "force-https" }, { "name": "lookout.com", "policy": "custom", "mode": "force-https" }, { "name": "www.lookout.com", "policy": "custom", "mode": "force-https" }, { "name": "mylookout.com", "policy": "custom", "mode": "force-https" }, { "name": "www.mylookout.com", "policy": "custom", "mode": "force-https" }, { "name": "therapynotes.com", "policy": "custom", "mode": "force-https" }, { "name": "www.therapynotes.com", "policy": "custom", "mode": "force-https" }, { "name": "mega.co.nz", "policy": "custom", "mode": "force-https" }, { "name": "writeapp.me", "policy": "custom", "mode": "force-https" }, { "name": "ssl.panoramio.com", "policy": "custom", "mode": "force-https" }, { "name": "kiwiirc.com", "policy": "custom", "mode": "force-https" }, { "name": "simple.com", "policy": "custom", "mode": "force-https" }, { "name": "www.simple.com", "policy": "custom", "mode": "force-https" }, { "name": "fj.simple.com", "policy": "custom", "mode": "force-https" }, { "name": "api.simple.com", "policy": "custom", "mode": "force-https" }, { "name": "grc.com", "policy": "custom", "mode": "force-https" }, { "name": "www.grc.com", "policy": "custom", "mode": "force-https" }, { "name": "linode.com", "policy": "custom", "mode": "force-https" }, { "name": "www.linode.com", "policy": "custom", "mode": "force-https" }, { "name": "manager.linode.com", "policy": "custom", "mode": "force-https" }, { "name": "blog.linode.com", "policy": "custom", "mode": "force-https" }, { "name": "library.linode.com", "policy": "custom", "mode": "force-https" }, { "name": "forum.linode.com", "policy": "custom", "mode": "force-https" }, { "name": "p.linode.com", "policy": "custom", "mode": "force-https" }, { "name": "paste.linode.com", "policy": "custom", "mode": "force-https" }, { "name": "pastebin.linode.com", "policy": "custom", "mode": "force-https" }, { "name": "carezone.com", "policy": "custom", "mode": "force-https" }, { "name": "bcrook.com", "policy": "custom", "mode": "force-https" }, { "name": "lumi.do", "policy": "custom", "mode": "force-https" }, { "name": "kinsights.com", "policy": "custom", "mode": "force-https" }, { "name": "simbolo.co.uk", "policy": "custom", "mode": "force-https" }, { "name": "www.simbolo.co.uk", "policy": "custom", "mode": "force-https" }, { "name": "zenpayroll.com", "policy": "custom", "mode": "force-https" }, { "name": "www.zenpayroll.com", "policy": "custom", "mode": "force-https" }, { "name": "get.zenpayroll.com", "policy": "custom", "mode": "force-https" }, { "name": "errors.zenpayroll.com", "policy": "custom", "mode": "force-https" }, { "name": "manage.zenpayroll.com", "policy": "custom", "mode": "force-https" }, { "name": "data.qld.gov.au", "policy": "custom", "mode": "force-https" }, { "name": "publications.qld.gov.au", "policy": "custom", "mode": "force-https" }, { "name": "passport.yandex.ru", "policy": "custom", "mode": "force-https" }, { "name": "passport.yandex.com", "policy": "custom", "mode": "force-https" }, { "name": "passport.yandex.ua", "policy": "custom", "mode": "force-https" }, { "name": "passport.yandex.by", "policy": "custom", "mode": "force-https" }, { "name": "passport.yandex.kz", "policy": "custom", "mode": "force-https" }, { "name": "passport.yandex.com.tr", "policy": "custom", "mode": "force-https" }, { "name": "getcloak.com", "policy": "custom", "mode": "force-https" }, { "name": "www.getcloak.com", "policy": "custom", "mode": "force-https" }, { "name": "opsmate.com", "policy": "custom", "mode": "force-https" }, { "name": "www.evernote.com", "policy": "custom", "mode": "force-https" }, { "name": "app.yinxiang.com", "policy": "custom", "mode": "force-https" }, { "name": "neilwynne.com", "policy": "custom", "mode": "force-https" }, { "name": "calyxinstitute.org", "policy": "custom", "mode": "force-https" }, { "name": "www.calyxinstitute.org", "policy": "custom", "mode": "force-https" }, { "name": "aclu.org", "policy": "custom", "mode": "force-https" }, { "name": "www.aclu.org", "policy": "custom", "mode": "force-https" }, { "name": "www.banking.co.at", "policy": "custom", "mode": "force-https" }, { "name": "mbp.banking.co.at", "policy": "custom", "mode": "force-https" }, { "name": "feedbin.com", "policy": "custom", "mode": "force-https" }, { "name": "python.org", "policy": "custom", "mode": "force-https" }, { "name": "activiti.alfresco.com", "policy": "custom", "mode": "force-https" }, { "name": "wepay.com", "policy": "custom", "mode": "force-https" }, { "name": "www.wepay.com", "policy": "custom", "mode": "force-https" }, { "name": "static.wepay.com", "policy": "custom", "mode": "force-https" }, { "name": "stage.wepay.com", "policy": "custom", "mode": "force-https" }, { "name": "vmoagents.com", "policy": "custom", "mode": "force-https" }, { "name": "pult.co", "policy": "custom", "mode": "force-https" }, { "name": "www.eternalgoth.co.uk", "policy": "custom", "mode": "force-https" }, { "name": "usaa.com", "policy": "custom", "mode": "force-https" }, { "name": "www.usaa.com", "policy": "custom", "mode": "force-https" }, { "name": "mobile.usaa.com", "policy": "custom", "mode": "force-https" }, { "name": "detectify.com", "policy": "custom", "mode": "force-https" }, { "name": "tinfoilsecurity.com", "policy": "custom", "mode": "force-https" }, { "name": "www.tinfoilsecurity.com", "policy": "custom", "mode": "force-https" }, { "name": "imouto.my", "policy": "custom", "mode": "force-https" }, { "name": "www.capitainetrain.com", "policy": "custom", "mode": "force-https" }, { "name": "dropbox.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "www.dropbox.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "jackyyf.com", "policy": "custom", "mode": "force-https" }, { "name": "gamesdepartment.co.uk", "policy": "custom", "mode": "force-https" }, { "name": "gparent.org", "policy": "custom", "mode": "force-https" }, { "name": "blog.gparent.org", "policy": "custom", "mode": "force-https" }, { "name": "m.gparent.org", "policy": "custom", "mode": "force-https" }, { "name": "ca.gparent.org", "policy": "custom", "mode": "force-https" }, { "name": "daphne.informatik.uni-freiburg.de", "policy": "custom", "mode": "force-https" }, { "name": "honeybadger.io", "policy": "custom", "mode": "force-https" }, { "name": "www.honeybadger.io", "policy": "custom", "mode": "force-https" }, { "name": "rme.li", "policy": "custom", "mode": "force-https" }, { "name": "www.rme.li", "policy": "custom", "mode": "force-https" }, { "name": "viasinc.com", "policy": "custom", "mode": "force-https" }, { "name": "spideroak.com", "policy": "custom", "mode": "force-https", "include_subdomains": true }, { "name": "guidetoiceland.is", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "carbonmade.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "branchtrack.com", "policy": "custom", "mode": "force-https" }, { "name": "flipagram.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "www.icann.org", "policy": "custom", "mode": "force-https" }, { "name": "www.vino75.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "www.vino.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "fastmail.com", "policy": "custom", "mode": "force-https" }, { "name": "woima.fi", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "www.captaintrain.com", "policy": "custom", "mode": "force-https" }, { "name": "united.com", "policy": "custom", "mode": "force-https", "include_subdomains": false }, { "name": "rememberthemilk.com", "policy": "custom", "mode": "force-https" }, // END OF LEGACY MANUAL CUSTOM ENTRIES // START OF LEGACY MANUAL HSTS ENTRIES { "name": "jottit.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "sunshinepress.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "riseup.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "members.mayfirst.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "support.mayfirst.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "id.mayfirst.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "lists.mayfirst.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "webmail.mayfirst.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "roundcube.mayfirst.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "ottospora.nl", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "keyerror.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "romab.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "stripe.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "cloudsecurityalliance.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "login.sapo.pt", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mattmccutchen.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "betnet.fr", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "uprotect.it", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "square.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "cert.se", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "simon.butcher.name", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "linx.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.moneybookers.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "luneta.nearbuysystems.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "ubertt.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "pixi.me", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "grepular.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "bigshinylock.minazo.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "crate.io", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "braintreegateway.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "tor2web.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "business.medbank.com.mt", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "arivo.com.br", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.apollo-auto.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.cueup.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "passwd.io", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "browserid.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "login.persona.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.neonisi.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "shops.neonisi.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "piratenlogin.de", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "howrandom.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "fatzebra.com.au", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "csawctf.poly.edu", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "makeyourlaws.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "iop.intuit.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "dm.lookout.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "business.lookout.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "blog.lookout.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "faq.lookout.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "platform.lookout.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "email.lookout.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "app.lookout.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "api.lookout.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "keymaster.lookout.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mygadgetguardian.lookout.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "discovery.lookout.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mobilethreat.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mobilethreatnetwork.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "itriskltd.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "stocktrade.de", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "openshift.redhat.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "wiz.biz", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "my.onlime.ch", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "webmail.onlime.ch", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "crm.onlime.ch", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.gov.uk", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "silentcircle.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "silentcircle.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "serverdensity.io", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "my.alfresco.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "webmail.gigahost.dk", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "paymill.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "paymill.de", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "gocardless.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "espra.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "zoo24.de", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "api.mega.co.nz", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "lockify.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "bugzilla.mozilla.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "members.nearlyfreespeech.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "pay.gigahost.dk", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "controlcenter.gigahost.dk", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "bank.simple.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "bassh.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "sah3.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "inertianetworks.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "conformal.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "cyphertite.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "bccx.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "launchkey.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "carlolly.co.uk", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.cyveillance.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "blog.cyveillance.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "whonix.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "shodan.io", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "rapidresearch.me", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "surkatty.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "securityheaders.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "haste.ch", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mudcrab.us", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mediacru.sh", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "lolicore.ch", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "cloudns.com.au", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "oplop.appspot.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "wiki.python.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "appseccalifornia.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "crowdcurity.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "saturngames.co.uk", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "strongest-privacy.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "id.atlassian.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "cupcake.io", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "cupcake.is", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "tent.io", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "cybozu.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "davidlyness.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "medium.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "getlantern.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "gernert-server.de", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "skydrive.live.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "lifeguard.aecom.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "go.xero.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "login.xero.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "my.xero.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "payroll.xero.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "in.xero.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "api.xero.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "eff.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mail.de", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mnsure.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.opsmate.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "f-droid.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "blacklane.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "boxcryptor.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "prodpad.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mailbox.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "roddis.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "fiken.no", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "fairbill.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "nexth.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "nexth.us", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "nexth.de", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "souyar.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "souyar.de", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "souyar.us", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "heha.co", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "passwordbox.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "pypi.python.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.python.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "docs.python.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "encircleapp.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "keepersecurity.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "keeperapp.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "donmez.ws", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "cloudcert.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "seifried.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "adsfund.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "dillonkorman.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "edmodo.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "app.manilla.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "harvestapp.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "anycoin.me", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "noexpect.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "subrosa.io", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "manageprojects.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "vocaloid.my", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "sakaki.anime.my", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "reviews.anime.my", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "miku.hatsune.my", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "webcollect.org.uk", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "accounts.firefox.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "z.ai", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "wildbee.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "portal.tirol.gv.at", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "code-poets.co.uk", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "flynn.io", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "hackerone.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "hackerone-user-content.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.gamesdepartment.co.uk", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "schokokeks.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mwe.st", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "ub3rk1tten.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mykolab.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "semenkovich.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "dlc.viasinc.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.viasinc.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.etsy.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "etsysecure.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "hg.python.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "doc.python.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "console.python.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "login.ubuntu.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "pay.ubuntu.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "login.launchpad.net", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "fassadenverkleidung24.de", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "landscape.canonical.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "auth.mail.ru", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "e.mail.ru", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "touch.mail.ru", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "light.mail.ru", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "m.mail.ru", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "arty.name", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "resources.flowfinity.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "preloaded-hsts.badssl.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "korni22.org", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "hana.ondemand.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.fastmail.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "reporturi.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "reporturi.io", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "report-uri.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "thundr.eu", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.united.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "mobile.united.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "smartphone.continental.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, { "name": "www.rememberthemilk.com", "policy": "bulk-legacy", "mode": "force-https", "include_subdomains": true }, // END OF LEGACY MANUAL HSTS ENTRIES // START OF LEGACY 18-WEEK BULK HSTS ENTRIES { "name": "addvocate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "azprep.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beneathvt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudup.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptopartyatx.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cybershambles.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ed.gs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forewordreviews.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "giacomopelagatti.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helichat.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hostinginnederland.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isitchristmas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "konklone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koop-bremen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kura.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markusueberallassetmanagement.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikewest.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miskatonic.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "optimus.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oversight.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "picksin.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pressfreedomfoundation.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "projektzentrisch.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rippleunion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robteix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "s-c.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "security-carpet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sherbers.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomfisher.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wunderlist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zotero.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adamkostecki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "archlinux.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auf-feindgebiet.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baruch.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bedeta.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benjamins.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bl4ckb0x.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bl4ckb0x.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bl4ckb0x.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bl4ckb0x.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bl4ckb0x.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blocksatz-medien.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "conrad-kostecki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cube.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datenkeks.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "derhil.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freeshell.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greensolid.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hasilocke.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hausverbrauch.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helpium.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hex2013.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "honeytracks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ihrlotto.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonas-keidel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonaswitmer.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "k-dev.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lavalite.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loenshotel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loftboard.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mondwandler.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "movlib.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "musicgamegalaxy.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mynigma.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netzbit.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pdf.yt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pierre-schmitz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "promecon-gmbh.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prowhisky.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pubkey.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qetesh.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riccy.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scrambl.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tageau.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ukrainians.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viennan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winhistory-forum.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "y-o-w.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "explodie.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aie.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baer.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bayrisch-fuer-anfaenger.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beastowner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beastowner.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "best-wedding-quotes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitfactory.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buddhistische-weisheiten.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cartouche24.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cartucce24.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clapping-rhymes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "die-besten-weisheiten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edyou.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forodeespanol.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gemeinfreie-lieder.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getdigitized.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "globuli-info.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guphi.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guthabenkarten-billiger.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haufschild.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoerbuecher-und-hoerspiele.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iban.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "irische-segenswuensche.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "it-schwerin.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "janus-engineering.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "julian-kipka.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kardize24.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kernel-error.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kinderbuecher-kostenlos.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kitsta.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klatschreime.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kleidertauschpartys.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koordinate.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lasst-uns-beten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lb-toner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mandala-ausmalbilder.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otakuworld.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pajonzeck.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rad-route.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redports.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reserve-online.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riesenmagnete.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rosenkeller.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "siammedia.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simplystudio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sprueche-zum-valentinstag.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sprueche-zur-geburt.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sprueche-zur-hochzeit.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sprueche-zur-konfirmation.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studydrive.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "supplies24.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "supplies24.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tatort-fanpage.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tektoria.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "texte-zur-taufe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tinte24.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tintenfix.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tipps-fuer-den-haushalt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toner24.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toner24.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toner24.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toner24.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toner24.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toner24.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toner24.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonerdepot.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonerjet.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonerjet.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonerklick.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonerkurier.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonermaus.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonermonster.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonex.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonex.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trauertexte.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webandmore.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "welches-kinderfahrrad.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apadvantage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apn-einstellungen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barcodeberlin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "certible.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "data-abundance.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dedimax.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hostix.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "janoberst.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jelmer.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "munich-rage.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "posteo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thepaymentscompany.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xps2pdf.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ansdell.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ethitter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firemail.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmantra.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mach-politik.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "malnex.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mutantmonkey.sexy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ng-security.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "palava.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reedloden.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rws-vertriebsportal.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sdsl-speedtest.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tunebitfm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "websenat.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zeropush.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ludwig.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bedreid.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cotonea.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "everhome.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fixingdns.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "insouciant.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matatall.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "net-safe.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "okmx.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "osterkraenzchen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parent5446.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "patt.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "room-checkin24.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securify.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shaaaaaaaaaaaaa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shopontarget.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "siraweb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spdysync.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sysctl.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tauchkater.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theshadestore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomvote.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toshnix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "warrencreative.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zeplin.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cdnb.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "github.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "id-co.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ideaweb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "man3s.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meinebo.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nmctest.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "partyvan.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "partyvan.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "partyvan.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "partyvan.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suite73.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wubthecaptain.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1a-diamantscheiben.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1a-vermessung.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1a-werkstattgeraete.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annahmeschluss.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bautied.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codepref.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "encryptallthethings.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "futos.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonnybarnes.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miasarafina.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prefontaine.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schachburg.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schreiber-netzwerk.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "syss.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "terrax.berlin", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tresorit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vaddder.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xtream-hosting.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xtream-hosting.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xtream-hosting.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xtreamhosting.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amigogeek.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aprz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arlen.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitfarm-archiv.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitfarm-archiv.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bulktrade.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buzzconcert.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chulado.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cimballa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daylightcompany.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "denh.am", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evstatus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gplintegratedit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "html5.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ilikerainbows.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ilmconpm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inleaked.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klaxn.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "labina.com.tr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liebel.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luxus-russen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minikneet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minikneet.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mkcert.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "msc-seereisen.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mykreuzfahrt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oscarvk.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plothost.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reishunger.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "samizdat.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sslmate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steventress.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "temehu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vortexhobbies.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "willnorris.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aiticon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aiticon.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anetaben.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annevankesteren.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annevankesteren.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annevankesteren.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barslecht.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blessnet.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudstoragemaus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comdurav.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitaldaddy.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elnutricionista.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "limpid.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minez-nightswatch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pisidia.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quuz.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sale4ru.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shipard.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sro.center", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "standardssuck.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "testsuite.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weggeweest.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whatwg.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "when-release.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--maraa-rta.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otakurepublic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mqas.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "debtkit.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "decibelios.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domaris.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enorekcah.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fedorapeople.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamercredo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "garron.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmcd.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hack.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hexony.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "horosho.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "howsmyssl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "howsmytls.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hpac-portal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jwilsson.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "khmath.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "knowledgehook.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "md5file.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "omitech.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orbograph-hrcm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "password.codes", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prakharprasad.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ravchat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sciencex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shiinko.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thorncreek.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tno.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wepay.in.th", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zixiao.wang", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ahoyconference.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "balcan-underground.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baldwinkoo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bigbrownpromotions.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bodo-wolff.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "call.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chrisjean.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cujanovic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deadbeef.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esec.rs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "floobits.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freenetproject.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fundingempire.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heid.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ironfistdesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ljs.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lovelycorral.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "megashur.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minnesotadata.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newstarnootropics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onedot.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "powerplannerapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "southside-crew.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tickopa.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wieninternational.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fleximus.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "animurecs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arendburgers.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitgo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buttercoin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chainmonitor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coinapult.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comssa.org.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coursella.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crowdjuris.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "curlybracket.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyanogenmod.xxx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "czbix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dealcruiser.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dzlibs.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "easysimplecrm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "glossopnorthendafc.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gtraxapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hansvaneijsden.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "horseboners.xxx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "horza.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iamcarrico.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kartonmodellbau.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keycdn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kryptera.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lukonet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "megaxchange.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moriz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myplaceonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nectarleaf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nos-oignons.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phoenixlogan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roland.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "servergno.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "siriad.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smartcoin.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spartantheatre.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spencerbaer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stretchmyan.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taxsquirrel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techhipster.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timtaubert.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tribut.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "triop.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twentymilliseconds.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ukdefencejournal.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ukhas.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vpnzoom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "watsonhall.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weblogzwolle.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ypart.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexyang.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beamitapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonigo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "certly.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chontalpa.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cktennis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clintwilson.technology", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cspbuilder.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dinamoelektrik.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ethack.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fabianfischer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fastcomcorp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itshost.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jmedved.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leonardcamacho.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mdfnet.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michalspacek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mike-bland.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oakslighting.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onsitemassageco.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "propagandism.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slevomat.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sour.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spongepowered.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tls.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vhost.co.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webandwords.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webtiles.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yoursecondphone.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zlavomat.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alainwolf.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arguggi.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "azabani.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitmon.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bjornjohansen.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bookingapp.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caremad.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clerkendweller.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyon.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fakturoid.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "finn.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fm83.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grandmascookieblog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "khanovaskola.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ki-on.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kingmanhall.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kpebetka.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myvirtualserver.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neftaly.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nu3.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nu3.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruudkoot.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seomobo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seowarp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "souvik.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "topodin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yahvehyireh.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anadoluefessporkulubu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ankarakart.com.tr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bgneuesheim.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bhatia.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitmex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blockchain.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blubbablasen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chahub.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cor-ser.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "electronic-ignition-system.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fabhub.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fant.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "henriknoerr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imaginary.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inb4.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kosho.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lighting-centres.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marshut.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myni.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nameid.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nginxnudes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nouvelle-vague-saint-cast.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pestici.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "savetheinternet.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shortdiary.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tadigitalstore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tapka.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tegelsensanitaironline.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "typingrevolution.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unison.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uptrends.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vrobert.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mutantmonkey.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mutantmonkey.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alecvannoten.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atavio.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atavio.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atavio.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "balikonos.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "camolist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chatbot.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coffeeetc.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dee.pe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ecdn.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ef.gy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exiahost.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freethought.org.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hrackydomino.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hsmr.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instasex.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jakub-boucek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koenvdheuvel.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leadbook.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lilpwny.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mirrorx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pentesterlab.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pypa.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "r3s1stanc3.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "residentsinsurance.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rlalique.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scribe.systems", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securesuisse.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smartlend.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yetii.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "302.nyc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biathloncup.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daveoc64.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fewo-thueringer-wald.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "food4health.guide", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johners.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kupschke.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "manicode.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ouvirmusica.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pharmaboard.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pieperhome.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raspass.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "romans-place.me.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rudloff.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seyahatsagliksigortalari.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smartcleaningcenter.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snakehosting.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "srevilak.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strasweb.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webassadors.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wundi.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2048game.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adorai.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "afp548.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atlassian.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atte.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bizon.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cordial-restaurant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "curiosity-driven.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "egfl.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firefart.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firstlook.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fonetiq.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gw2treasures.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heartlandrentals.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hemlockhillscabinrentals.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hstsfail.appspot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "i5y.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "innophate-security.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "innophate-security.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iranianlawschool.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jettshome.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keeleysam.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirkforcongress.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirkforsenate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "les-corsaires.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linux-admin-california.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "makeitdynamic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraftvoter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mkw.st", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mujadin.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netztest.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "null-sec.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nutsandboltsmedia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ooonja.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "personaldatabasen.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phurl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "privategiant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "progressiveplanning.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "puac.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rafaelcz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reliable-mail.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "romulusapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "samba.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "savvytime.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sitesten.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skogsbruket.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skogskultur.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sorz.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spawn.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studienportal.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tc-bonito.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tid.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonywebster.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tucuxi.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firebaseio-demo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adlershop.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ahwatukeefoothillsmontessori.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "authentication.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brainfork.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brossmanit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calomel.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chm.vn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clan-ww.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dixmag.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eduroam.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "egit.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gambitnash.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gavick.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "herocentral.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hicoria.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ikkatsu-satei.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jira.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirei.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kuppingercole.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maff.scot", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mpreserver.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mvno.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "namepros.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neko.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netera.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nieselregen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pauladamsmith.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pwd.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saintsrobotics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "samuelkeeley.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shellsec.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suzukikenichi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tbspace.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "the-sky-of-valkyries.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thomastimepieces.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uonstaffhub.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whd-guide.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whocalld.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wootton95.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "airlea.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benjamin.pe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptobin.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "csuw.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dreadbyte.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dylanscott.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e-kontakti.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ecfs.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "expatads.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gaytorrent.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getable.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gpsfix.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "happylifestyle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heppler.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "httpswatch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "izdiwho.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jmdekker.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonathan.ir", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klarmobil-empfehlen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klingeletest.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lancejames.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leonklingele.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magneticanvil.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mobilcom-debitel-empfehlen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "morethanadream.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "narodniki.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netrider.net.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "niloxy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nowhere.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perfectionis.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phryanjr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "polymathematician.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sysdb.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tallshoe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thetomharling.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tracktivity.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twitteroauth.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vitrado.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wevahoo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zentralwolke.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zhovner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agrimap.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ajouin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atishchenko.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bentertain.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bit.voyage", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bzv-fr.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyprus-company-service.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darkpony.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darom.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e-aut.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ecg.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exon.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "extendwings.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fedorahosted.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firma-offshore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freesounding.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freesounding.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getfedora.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getfittedstore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hatoko.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hda.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helpadmin.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iniiter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ionas-law.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keepa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "knip.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laf.in.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livej.am", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "m0wef.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mahamed91.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "megaplan.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "megaplan.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miketabor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mineover.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mokote.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mr-hosting.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "msa-aesch.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mutamatic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nymphetomania.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "offshore-firma.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openacademies.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phoenix.dj", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pmg-offshore-company.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pmg-purchase.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pmg-purchase.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "polypho.nyc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "puiterwijk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redletter.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reg.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "release-monitoring.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rika.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scrambler.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sjoorm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "survivalmonkey.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sychov.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "terrty.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thebimhub.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmtopup.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uae-company-service.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wherephoto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wills.co.tt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wondershift.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xplore-dna.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xuntier.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yanovich.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "8ack.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "9point6.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andere-gedanken.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andymartin.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bagelsbakery.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beercandle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "billigssl.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonitabrazilian.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brandbuilderwebsites.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "breeswish.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calories.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chartstoffarm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chrisirwin.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "classdojo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cybozulive.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datasnitch.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dn42.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dnsman.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dreamsforabetterworld.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ectora.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elliquiy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "florian-lillpopp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "florianlillpopp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geekandi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heute-kaufen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hushfile.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "interasistmen.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kintone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koenrouwhorst.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lillpopp.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lnx.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "madeitwor.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miconcinemas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mtau.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myprintcard.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nationalpriorities.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nodari.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nuvini.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nwa.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulschreiber.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "philosopherswool.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proofwiki.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rawstorieslondon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reaconverter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robinadr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rodosto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rssr.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rubendv.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scoutdb.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "setuid.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shadex.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sockeye.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soulogic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teamnorthgermany.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "terraelectronica.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vijos.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webeau.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wifirst.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "56ct.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "5apps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abmahnhelfer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adamstas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akselinurmio.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "al-shami.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alanrickmanflipstable.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ankakaak.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apps-for-fishing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "athenelive.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auraredeye.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auraredshield.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "autoledky.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitchan.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinx.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackberrycentral.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bloemendal.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boypoint.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bran.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burtrum.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "casa-su.casa", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cbhq.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coinbase.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "commencepayments.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "courtlistener.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptopush.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danskoferie.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daylightpirates.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deliverance.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dubrovskiy.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dyeager.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edix.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erotische-aanbiedingen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eva.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evalesc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "froggstack.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fx5.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gc.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gnetwork.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gudini.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gugga.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "herbert.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imgg.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipmimagazine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isogram.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jbn.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeremyness.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jkb.pics", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jkbuster.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kanzashi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kaufberatung.community", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kollawat.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lavval.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ledhouse.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lichtspot.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mall.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mall.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mall.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mall.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "malwre.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markayapilandirma.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mattfin.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mehmetince.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mh-bloemen.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mimovrste.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mittenhacks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "munuc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mustika.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mvsecurity.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nan.zone", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nbl.org.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nctx.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nemovement.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newkaliningrad.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noemax.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nsboutique.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ohling.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orcahq.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pasta-factory.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plzenskybarcamp.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ponythread.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ptn.moscow", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "richiemail.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ricochet.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roman-pavlik.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "royalacademy.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rubecodeberg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sabahattin-gucukoglu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sagerus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sageth.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saulchristie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "secretserveronline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securedrop.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sigterm.sh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sleio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "speedcounter.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stesti.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stevegrav.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stillyarts.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "svager.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tdrs.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teachforcanada.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techllage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techloaner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theescapistswiki.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "therapyportal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "titties.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomharling.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomharling.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toptexture.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tox.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trashnothing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ucfirst.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unitedadmins.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unknownphenomena.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uptrends.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utilityapi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "welpy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wesleyharris.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2600hq.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "301.website", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alza.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "armytricka.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bradkovach.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crypto.graphics", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptography.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danielalvarez.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danonsecurity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darknode.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davidmcevoy.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diedrich.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emptypath.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eromixx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fa-works.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getmango.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gokmenguresci.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gotspot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gra2.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hledejpravnika.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ilikerainbows.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "indiecert.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnmichel.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keeleysam.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lapetition.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maartenvandekamp.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcard.vn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcnext.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "micropple.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "munki.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netbox.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "olivierlemoal.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "petplum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pirateproxy.sx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proxybay.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "red-t-shirt.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skeeley.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soia.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suos.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "syzygy-tables.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "todoist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twofactorauth.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vox.vg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "widememory.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "withustrading.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wvr-law.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wzyboy.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xenesisziarovky.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yksityisyydensuoja.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yokeepo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zravypapir.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acuica.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "advanced-online.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arbitrary.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bidon.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boiseonlinemall.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cdlcenter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coding.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "covenantoftheriver.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danw.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "defcon.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digital1st.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dragons-of-highlands.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enskat.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enskatson-sippe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eveshamglass.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firebirdrangecookers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fitkram.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gambit.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gambitnash.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ge3k.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hboeck.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "indovinabank.com.vn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesdoylephoto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jpbike.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kaneo-gmbh.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kedarastudios.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livekaarten.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medallia.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mijn-email.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mindcoding.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mironet.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miss-inventory.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nayahe.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nicolaw.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nopex.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "passphrase.today", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pollpodium.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rid-wan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rusadmin.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scotthel.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smith.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sneezry.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "subeesu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tempus-aquilae.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "terraweb.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theamp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theunitedstates.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomrichards.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuitle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuxplace.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vechkasov.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "walnutgaming.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yafuoku.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youdowell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "188trafalgar.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aeyoun.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "afp548.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alza.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alza.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alzashop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buiko.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cdt.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cheesetart.my", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "costablancavoorjou.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cracker.in.th", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dohosting.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "donmez.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ecake.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ego4u.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ego4u.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fish-hook.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fniephaus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forgix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fuzzing-project.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gameserver-sponsor.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genuxtsg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "globalittech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gregorytlee.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grocock.me.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "groszek.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guru-naradi.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gwijaya.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "identitylabs.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ieval.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "influxus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iostips.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jwnotifier.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karaoketonight.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keeley.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keeley.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keybase.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kinganywhere.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ks-watch.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leakedminecraft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linorman1997.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minora.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "musi.cx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mykontool.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nostraforma.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orhideous.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ramsor-gaming.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robertof.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robinsonyu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scrap.tf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slack-files.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slse.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "starapple.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stirling.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stormhub.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taken.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teamupturn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "technotonic.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thca.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thouni.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timotrans.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timotrans.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tom.horse", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tradingcentre.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ts3.consulting", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuamoronline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wownmedia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xtrim.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yenniferallulli.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yenniferallulli.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yenniferallulli.moda", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yenniferallulli.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akachanikuji.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amaforums.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amdouglas.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anadoluefessk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "axka.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.com.tr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.com.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.hr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.rs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "canhazip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "collinmbarrett.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coloradocomputernetworking.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "copperhead.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "csacongress.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "czakey.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "czk.mk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eatsleeprepeat.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ethercalc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ethercalc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "initrd.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "integromat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lookyman.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lore.azurewebsites.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medovea.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ohnemusik.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "patriksimek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pcel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "postfinance.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raymii.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "research.md", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rubyshop.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sec.gd", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "servertastic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sh-network.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sufix.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tallr.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thehiddenbay.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tinkertry.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vserver-preis-vergleich.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whitestagforge.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "x.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zalan.do", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zarooba.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1000minds.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1a-jva.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "300651.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "3do3dont.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "4g-server.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexgaynor.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allinonecyprus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alphabit-secure.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apple-watch-zubehoer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baff.lu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benchling.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bit-sentinel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitnet.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cklie.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ckliemann.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ckliemann.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "console.support", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crute.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dash-board.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dekasan.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doridian.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doridian.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doridian.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doridian.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drtroyhendrickson.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edelsteincosmetic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ellegaard.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enigmail.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ezimoeko.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eztv.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "festember.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fidelapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "floweslawncare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getcolor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getsello.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gheorghesarcov.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goldendata.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "golfscape.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gothamlimo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grandcapital.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grandcapital.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gurusupe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hash-list.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heavystresser.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hicn.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hobbyspeed.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "holymoly.lu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imagr.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "j-lsolutions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jacobparry.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jacuzziprozone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jahliveradio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jh-media.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jondevin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "julianmeyer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kavovary-kava.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kliemann.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kredite24.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "labaia.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laukstein.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leanclub.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lence.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lmmtfy.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mafamane.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mercuryamericas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mobilux.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "musmann.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nanderson.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netrelay.email", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noob-box.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "northernmuscle.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ownmovies.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pactf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pap.la", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phil.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pi-supply.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pijuice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "piratedb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "piratedot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prontolight.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proxybay.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proxybay.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quebecmailbox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rischard.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robtex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rotunneling.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rpy.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sello.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sellocdn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slever.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stereo.lu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sticklerjs.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "storedsafe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stuartbaxter.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "t23m-navi.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tcgrepublic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "temp.pm", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "terrax.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "terrax.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thefrozenfire.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thepiratebay.al", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thumbtack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timmy.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tipsyk.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "topshelfguild.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tpbproxy.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twolinepassbrewing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unbanthe.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uow.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "upitnik.rs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uscntalk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "venicerealdeal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vomitb.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vyplnto.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webmaniabr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wettertoertchen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wtfismyip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xpd.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zifb.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "4sqsu.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abecodes.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abiapp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aes256.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akselimedia.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alaninkenya.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alethearose.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anakros.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrewimeson.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apachehaus.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apibot.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aranycsillag.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arrayify.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auszeit.bio", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "av.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "azirevpn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beach-inspector.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bigdinosaur.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bownty.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brks.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bygningsregistrering.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cardoni.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carlosalves.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "catnapstudios.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chriswarrick.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chroniclesofgeorge.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clevisto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudpebble.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "completionist.audio", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cpvmatch.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "d42.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daknob.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darkengine.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dbgamestudio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "desmaakvanplanten.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devklog.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dnmlab.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dropboxer.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drumbandesperanto.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "electromc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erisrenee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "expoundite.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "f2f.cash", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fangs.ink", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feen.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ffbans.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fiftyshadesofluca.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flushstudios.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foodwise.marketing", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foreignexchangeresource.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fretscha.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fruchthof24.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frusky.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frusky.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fteproxy.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "g2g.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gambitprint.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genuxation.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getnikola.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "github.party", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "go-zh.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gopay.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goshop.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grigalanzsoftware.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "h2check.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haircrazy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "happyteamlabs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haveibeenpwned.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heftkaufen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "herzbotschaft.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hs-group.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "impex.com.bd", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "informnapalm.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ix8.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesbywater.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesbywater.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesbywater.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesbywater.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamielinux.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "juliansimioni.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "justlikethat.hosting", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kalevlamps.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "korinar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kpdyer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kredite.sale", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "legoutdesplantes.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lellyboi.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leninalbertop.com.ve", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "libfte.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linguaquote.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luxwatch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lymia.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lyst.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mammaw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "martijnvhoof.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maximelouet.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "me.net.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mebio.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medtehnika.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meetingmanage.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meetings2.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meritz.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mertcangokgoz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mim.properties", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mjanja.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mobobe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "modeldimension.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moriz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mp3juices.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mthode.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "multigamecard.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mygretchen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ndarville.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nella-project.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nellacms.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nellacms.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nellafw.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nmd.so", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "null.tips", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ocrami.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oguya.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "patechmasters.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "payments-reference.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pbprint.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "poedgirl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "posttigo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "presidentials2016.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "projectascension.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prospo.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "purewebmasters.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "railgun.ac", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raydobe.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redlink.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "report-uri.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rmmanfredi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roeper.party", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roosterpgplus.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roquecenter.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ryan-goldstein.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sarahlicity.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schreibnacht.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shanewadleigh.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shasso.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shoprose.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sitesko.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sizzle.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slope.haus", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snailing.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snazel.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soccergif.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soci.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "solihullcarnival.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "solihulllionsclub.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soulfulglamour.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spyroszarzonis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stablelib.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stereochro.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stewartremodelingadvantage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "streamingmagazin.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "talideon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tdelmas.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techhub.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thecoffeehouse.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theweilai.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonytan.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "totem-eshop.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tribaldos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tzappa.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uega.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ulabox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "univz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ust.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vzk.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wearvr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webogram.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webswitch.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wesecom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "when-release.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "williamsapiens.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "worldcubeassociation.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wurzelzwerg.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xcoop.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xho.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xiaolvmu.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yello.website", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yunzhu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zeitpunkt-kulturmagazin.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zentraler-kreditausschuss.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zhang-hao.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acorns.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "access-sofia.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ada.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adviespuntklokkenluiders.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abiturma.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alocato.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "3473-wiki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andreasolsson.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2bis10.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abioniere.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "4eyes.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adblockextreme.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auditmatrix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alex-ross.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akclinics.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aktiv-naturheilmittel.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "belairsewvac.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ball.holdings", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "artegusto.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "backschues.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brianmwaters.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aktiv-naturheilmittel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aktiv-naturheilmittel.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitvigor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "augustian-life.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atlex.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "animesharp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bochs.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atop.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betaworx.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betaworx.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bjornhelmersson.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "canyonshoa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cargobay.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "centralvacsunlimited.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chiralsoftware.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bouncyball.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chrisupjohn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "claimconnect.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ccsys.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ass.org.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluetenmeer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codepult.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cesal.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudimag.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dealbanana.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "collabornation.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudflareonazure.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chrismckee.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dealbanana.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cydia-search.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dotsiam.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clevertarget.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "derp.army", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "craftbeerbarn.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebaymotorssucks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dymersion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "discoveringdocker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dedeo.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diablotine.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eckel.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "disorderboutique.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cesidianroot.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exceltobarcode.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elvidence.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fightr.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eqorg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elitegameservers.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dorianmuthig.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fotiu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "core.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fidanza.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getspire.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gtmetrix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hashplex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "footballmapped.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hafniatimes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getdash.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "furkancaliskan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dynamicsnetwork.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "humblefinances.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heh.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "friendica.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imbrian.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoshinplan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heart.ge", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grandlinecsk.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ijsclubtilburg.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "homa.website", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "internetbugbounty.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iispeed.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "initq.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "immoverkauf24.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "immoverkauf24.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "glasgestaltung.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "icq-project.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jakenbake.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jn1.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesbywater.me.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnguant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "interviewpipeline.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gaptek.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipv6-handbuch.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intim-uslugi-kazan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kingant.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeff393.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jurriaan.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamiemagee.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kau-boys.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "junqtion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "affinitysync.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kickass.al", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kantorosobisty.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kdm-online.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "korobi.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gipsamsfashion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kinderbasar-luhe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "konsertoversikt.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kbit.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "locktheirphone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kschv-rdeck.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kau-boys.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kick-in.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kreativstrecke.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "manage.cm", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mesvt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mhx.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liverewrite.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leerliga.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lukasztkacz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meta-db.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mblankhorst.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "modmountain.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mark-semmler.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "new-black-order.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mp3gratuiti.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "millistream.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mega.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "navycs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mojapraca.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minkondom.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nicky.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "okonetwork.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nuos.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onewpst.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pirxpilot.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "organic-superfood.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pirlitu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parsemail.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ontimestamp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "playkh.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "patterson.mp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pothe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robertglastra.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "progg.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pothe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qixxit.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robtex.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "richardwarrender.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "retroarms.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rugirlfriend.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rigolitch.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rxbusiness.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "retroarms.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scotthelme.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ronvandordt.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "radtke.bayern", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securityheaders.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seele.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schorel.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schorelweb.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schoop.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schlarp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "socialspirit.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rohlik.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shft.cl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "socialrank.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slicketl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "searchbrothers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "manfredimatteo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sneakynote.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stemsims.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liquorsanthe.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seminariruum.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "syncappate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sonafe.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "system.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stolkschepen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "themarshallproject.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tbarter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonytan.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "throwpass.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thom4s.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thorgames.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tpbcdn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vcsjones.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vanhoutte.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "varden.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikidata.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vigo-krankenversicherung.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xavierbarroso.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wachter.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vbulletin-russia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vbulletinrussia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webstudio-n.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wonderhost.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winsec.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xgclan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yetcore.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wpmeetup-berlin.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--u9jv84l7ea468b.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zcarrot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zcarot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ztan.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asm-x.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ccblog.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smiatek.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "student.andover.edu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agilebits.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alenan.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amisharingstuff.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amunoz.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "appuro.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "askfit.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "axado.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "canadalife.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chaosdorf.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chrisbrown.id.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chromebooksforwork.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudmigrator365.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudpagesforwork.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clu-in.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cmc-versand.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cnlic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corruption-mc.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corruption-rsps.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corruption-server.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cthulhuden.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dateno1.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "democracy.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "democracychronicles.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "demuzere.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deviltracks.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dietrich.cx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dissimulo.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dlscomputers.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dogoodbehappyllc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dreid.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e-deca2.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "empowerdb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "entrepreneur.or.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eol34.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eucl3d.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firmapi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamenected.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamenected.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getsport.mobi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmdu.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grafitec.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greatfire.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greenroach.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hablemosdetecnologia.com.ve", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hardh.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haveeruexaminer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helloacm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "idndx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "im-c-shop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inbitcoin.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inspiroinc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instant-hack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iraqidinar.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itsagadget.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ivancacic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "j0s.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joshstroup.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "justyy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kawaii.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kazandaemon.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kbcequitas.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lehighmathcircle.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lenzw.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leon-jaekel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linuxcommand.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lognot.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maclemon.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maternalsafety.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "max-moeglich.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mdek.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meddelare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mediawiki.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "milahendri.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "msebera.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mypagella.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "necesitodinero.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "obermeiers.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ollning.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "omacostudio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ourbank.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paysera.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "petersmark.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pmnts.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qingxuan.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raah.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "recon-networks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "renlong.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reucon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ristioja.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roberthurlbut.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shadowkitsune.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shaundanielz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shellvatore.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simplexsupport.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slainvet.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smartlocksmith.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sparklingsparklers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sportifik.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tanzhijun.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tcao.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teamblueridge.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tecart-cloud.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tecartcrm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techandtux.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tehrabbitt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thehiddenbay.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ticketmates.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tinyvpn.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tls1914.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "topnewstoday.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "totalcarcheck.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toxme.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tumutanzi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuzaijidi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ubicv.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "un-zero-un.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unionstationapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utonia.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vokeapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikibooks.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikimediafoundation.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikinews.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikiquote.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikisource.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikiversity.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikivoyage.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wiktionary.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "worcesterfestival.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "x64architecture.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--datenrettung-mnchen-jbc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--hfk-allgu-schwaben-stb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--mgbbh2a9fub.xn--ngbc5azd", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zeno-system.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "track.plus", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blog.gov.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clubmini.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codingforspeed.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cradlepointecm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dobet.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domainexpress.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ediscomp.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edissecurity.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ewe2.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fluxent.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fruitusers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gpsvideocanada.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gracedays.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inksupply.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jhburton.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "odin.xxx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pagure.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pagure.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sunnyfruit.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tosecure.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uploadbeta.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikipedia.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agonswim.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "appharbor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "armory.consulting", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "armory.supplies", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "b2and.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bryanquigley.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cfcnexus.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clipped4u.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cvsoftub.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dailyenglishchallenge.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "derreichesack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devnsec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "donateaday.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dragon-chem.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eelsden.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elenag.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emailhunter.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "expressvpn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "factorygw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flamingkeys.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "granth.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "happyfabric.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "happygadget.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "illorenese.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imirhil.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "junethack.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mamaison.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mca2017.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mnd.sc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "modemagazines.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "panoti.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "philosophyguides.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "polis.or.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quppa.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rc4.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rot47.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rusl.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "satmep.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simod.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simplycharlottemason.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skoda-clever-lead.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skoda-im-dialog.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skoda-nurdiebesten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slix.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "speed-mailer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steelephys.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stick2bike.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swift-devedge.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "syntaxnightmare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tbrss.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tokke.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unapp.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "valopv.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "videomail.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "welovemail.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whispeer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xd.cm", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zaufanatrzeciastrona.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zx6rninja.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alt.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "badcronjob.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bankin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boris.one", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brakstad.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "campus-finance.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cao.la", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cashlink.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloud-project.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coore.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crackingking.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davidgrudl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davisroi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "didacte.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dotadata.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dronepit.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "duckduckstart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e-typ.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eleicoes2016.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "engelundlicht.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "etaes.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ethicaldata.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "floskelwolke.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geekcast.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmta.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "govtrack.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guilde-vindicta.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hisbrucker.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hledejlevne.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hookandloom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hranicka.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hsts.date", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipv6-adresse.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iqboxy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ivk.website", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jacekowski.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "latrine.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lmddgtfy.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lmsptfy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marktboten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "melf.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meteosky.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mirtes.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mitchellrenouf.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "munzee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "musikkfondene.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myraytech.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nethackwiki.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nette.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "only-roses.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openkvk.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phpfashion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "recommended.reviews", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "remoteutilities.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rj.gg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rtcx.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rusl.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sellme.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shopapi.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skimming.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skoleniphp.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smb445.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sobabox.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soply.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thedreamtravelgroup.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thehotfix.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tiffnix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomli.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vsean.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wpserp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "z0rro.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zhihua-lai.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1017scribes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anfsanchezo.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bcvps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beautykat.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bouncyballs.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cafe-scientifique.org.ec", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caveclan.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chaletmanager.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "changetip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ciscodude.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crysadm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuvva.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "de-spil.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dolphin-cloud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dolphin-hosting.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dolphin-it.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enquos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gravity-net.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gtanda.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hdc.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instacart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intarweb.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirkpatrickdavis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maarten.nyc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mantor.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "motocyklovedily.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parasitologyclub.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phongmay24h.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pilgermaske.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pol.in.th", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "puyblanc.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rantanda.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redd.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "respice.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rr.in.th", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "salserototal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "section.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "secureradio.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simplelearner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tlo.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tlo.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "typewolf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vorlif.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xellos.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--4dbjwf8c.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--4dbjwf8c.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--4dbjwf8c.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--4dbjwf8c.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--lgb3a8bcpn.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--lgb3a8bcpn.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--lgb3a8bcpn.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--lgb3a8bcpn.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--ls8hi7a.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yyyy.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "368mibn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aevpn.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andreigec.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beneffy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brrr.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudspace-analytics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comiteshopping.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coreless-stretchfilm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crudysql.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "csgokings.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dank.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "demuzere.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "demuzere.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "demuzere.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "docucopies.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elmermx.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "graingert.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greenvines.com.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hollowrap.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "immunicity.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kahopoon.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "khetzal.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koerperimpuls.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lostinsecurity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mailinabox.email", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newodesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nicolaelmer.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ochsundjunior.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onixcco.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pctonic.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "photoblogverona.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prefis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prepandgo-euro.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raconconsulting.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rangde.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "remotestance.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "renuo.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riskmitigation.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sanhei.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scaling.solutions", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sifls.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smkn1lengkong.sch.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssldecoder.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sx3.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tech-seminar.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tncnanet.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomo.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utilia.tools", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viewmyrecords.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vmrdev.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vulnerability.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xiaolan.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xiaoxiao.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "3chit.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "777coin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ad-notam.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ad-notam.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ad-notam.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ad-notam.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ad-notam.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adhs-chaoten.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alpca.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amoory.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "appmobile.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aussiecable.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "avarty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aylak.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bexit.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitminter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blognone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "borchers-media.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bqtoolbox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burningcrash.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "capriccio.to", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clycat.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cogumelosmagicos.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "connect.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "csfs.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cspvalidator.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cubewano.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deepcovelabs.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deliciisanatoase.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dienstplan.one", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drbethanybarnes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eddmixpanel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ehipaa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ehipaadev.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emanuelduss.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "envygeeks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "envygeeks.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fayolle.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flirchi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fuglede.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gcs-ventures.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gerencianet.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gyboche.science", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hackenturet.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "harmoney.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "istheapplestoredown.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jayblock.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "juergenhecht.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kpvpn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "labrador-retrievers.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "logement-saisonnier.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mareklecian.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maximilian-greger.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mb-is.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mobile.eti.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mosstier.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "namorico.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nekomimi.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "numericacu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oshayr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ourevents.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pantsu.cat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paylike.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pennylane.me.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pirati.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plirt.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qgustavor.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rentinsingapore.com.sg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riesenweber.id.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robi-net.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rootservice.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sanasport.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simplednscrypt.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smartmessages.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smksi2.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snapappointments.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "southernutahinfluencers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "staack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stackptr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stinkytrashhound.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stugb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swapadoodle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "syncer.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thinklikeanentrepreneur.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ulabox.cat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ulabox.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "umgardi.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "upay.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "upstats.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "usgande.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vat-eu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viemeister.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wait.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wohnsitz-ausland.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wolfemg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wrldevelopment.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xiaody.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--t8j4aa4nyhxa7duezbl49aqg5546e264d.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xtremegaming.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xunn.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zdrojak.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zera.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0xfc.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abrilect.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adduono.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ahmerjamilkhan.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akombakom.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alainwolf.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beier.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bentrask.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cavac.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coolaj86.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coralproject.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crosscom.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "curroapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daplie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darknebula.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datapun.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datsound.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ellsinger.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "excessamerica.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "express-vpn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "felixrr.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "filippo.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flowlo.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flukethoughts.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fraye.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freedom.press", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fresh-hotel.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goaltree.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goldenhillsoftware.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greenpeace-magazin.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guineapigmustach.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "htaccessbook.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kaloix.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kiano.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "krypsys.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lainchan.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lelongbank.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lexway.pk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "libertyrp.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lustrumxi.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maderwin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mypagella.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mypagella.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mysecretrewards.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nettopower.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nicestresser.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nsboston.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onet.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oopsmycase.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opennippon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opennippon.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perishablepress.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "planboardapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plugin-planet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qionglu.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redb.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rootforum.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sambeso.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sarasturdivant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scourt.org.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "secure-games.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "selecadm.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sirenslove.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smm.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stephenandburns.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sway-cdn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sway.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thinkindifferent.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tunnelblick.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "typing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ufotable.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "up1.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vermontcareergateway.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "virtualsanity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whatsmychaincert.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wp-tao.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yoloprod.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zzsec.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "33-km.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "42ms.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adamradocz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aladdin.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alarmsystemreviews.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allthingswild.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andreypopp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ankaraprofesyonelnakliyat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aojf.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apachelounge.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apstudynotes.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "areatrend.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atgseed.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atgseed.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "authint.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "basnoslovno.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bettrlifeapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "billninja.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bionicspirit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blechschmidt.saarland", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bugginslab.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bwcscorecard.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cesobaly.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "checktype.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chloe.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chrst.ph", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comarkinstruments.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "consciousandglamorous.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crl-autos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crossfitblackwater.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "csgodicegame.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cvmu.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "de-medici.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "decoder.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "depixion.agency", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devopps.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dhautefeuille.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "droidwiki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dubrovskiy.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edakoe.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edgereinvent.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elsitar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "espgg.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "etherpad.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evomon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "expresshosting.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fig.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "finkelstein.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flow.su", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fr33d0m.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getbox.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ggp2.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gigacloud.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "globalexpert.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hawkeyeinsight.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hencagon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hilahdih.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hroschyk.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ichronos.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "idaspis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ifleurs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iggprivate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iggsoft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iggsoftware.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ihsbsd.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "illjinx.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "institutolancaster.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "integrationinc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipv6cloud.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joelj.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kba-online.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "knygos.lt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koukni.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kpinvest.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kristofferkoch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lagoza.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "latenitefilms.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lentri.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "litespeed.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loancompare.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lsky.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "makerstuff.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marie-curie.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markusehrlicher.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marumagic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcrn.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meetscompany.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meta.sc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mnium.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moparcraft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moparcraft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moparcraft.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moparisthebest.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moparisthebest.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moparisthebest.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moparisthebest.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moparisthebest.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moparscape.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "my-pawnshop.com.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mygov.scot", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nagb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "najedlo.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newmediaone.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nodetemple.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noworrywp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "o6asan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perfektesgewicht.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perfektesgewicht.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perplex.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "please-deny.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pm13.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "postbox.life", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "postscheduler.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "potbar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "potbox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "privacy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "privacyinternational.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "publicsuffix.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "punchr-kamikazee.rhcloud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robtex.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roomhub.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rsajeey.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rubi-ka.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schnell-gold.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silver-heart.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slamix.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smartpolicingplatform.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "splikity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "square.gs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssl.rip", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stellenticket.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "subdimension.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "syezd.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tafoma.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "takkaaaaa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techcentric.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thebreakroom.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thehackerblog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theitsage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "topnovini.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trendberry.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ulrik.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vanetv.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vistb.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vyber-odhadce.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webyazilimankara.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whyworldhot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "withinsecurity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wordsmart.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yoloboatrentals.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yoloseo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andreas-kluge.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andreaskluge.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matrip.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1co-jp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ad-notam.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adblock.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "admsel.ec", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alphassl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "altedirect.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ankaraprofesyonelnakliyat.com.tr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ankaraprofesyonelwebtasarim.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anzeiger.ag", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apnakliyat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aryasenna.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "askwhy.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "askwhy.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atisoft.com.tr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atisoft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atisoft.net.tr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atisoft.web.tr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bcsytv.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beholdthehurricane.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beranovi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "borysek.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "broadsheet.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "broersma.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brownfieldstsc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bulmafox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "byrtz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "callsigns.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chimeratool.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "classicspublishing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clickandgo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "colognegaming.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "compucorner.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crepererum.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptoparty.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devdoodle.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diasp.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dime-staging.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "docket.news", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elephpant.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elimdengelen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "entersynapse.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "epay.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "espci.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ev-zertifikate.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evdenevenakliyatankara.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exfiles.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "expxkcd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fandomservices.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fca-tools.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "findmybottleshop.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flamewall.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freelance.boutique", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freifunk-luenen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "g-m-w.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamingzoneservers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "garbage-juice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getbutterfly.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "glws.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmw-ingenieurbuero.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gsm-map.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gyboche.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "harristony.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "harvester.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haselsteiner.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helgakristoffer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helgakristoffer.wedding", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heutger.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hpkp-faq.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imoni-blog.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "insideaudit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instela.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "interisaudit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intxt.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itsg-faq.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "j3e.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jakubboucek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jennedebleser.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jhalderm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jirav.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "josefjanosec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klasfauseweh.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linux.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linuxgeek.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liquid.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lukasunger.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mac-torrents.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "melted.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "missdream.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moreapp.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "murraycoin.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nakliyatsirketi.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nbb.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nder.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netwarc.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nikao-tech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nikobradshaw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nikolasbradshaw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nomial.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "npmcdn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opsbears.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otchecker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pgmann.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pier28.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "piligrimname.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "poleartschool.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "posterspy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "postn.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proos.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "psw-group.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "psw.academy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "psw.consulting", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "psw.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "realcapoeira.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ricki-z.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "right-to-love.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robandjanine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robspc.repair", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rodolfo.gs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "safematix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sanderdorigo.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sdrobs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securedevelop.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shopbakersnook.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simonkjellberg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simphony.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snapappts.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sogutma.com.tr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soporte.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssl-zertifikate.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sslzilla.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steamdb.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taborsky.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teampaddymurphy.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teampoint.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "threelions.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tm-solutions.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomasjacik.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trainex.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trinitycore.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twaka.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twist.party", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vallis.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viva-french.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vyberodhadce.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webtasarim.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "welldrake.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "werdeeintimo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wo2forum.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wrara.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xetown.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xss.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zgrep.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zortium.report", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0x90.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexwardweb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atolm.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "berst.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bigbluedoor.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "binaryevolved.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinhk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackdragoninc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cabarave.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cannyfoxx.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clmde.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codeux.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "conversiones.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "converter.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "couragewhispers.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danpiel.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darioturchetti.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datasharesystem.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "david.kitchen", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dden.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deviltraxxx.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diversityflags.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dnscrypt.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "docloh.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dolphincorp.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domodedovo.travel", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dziekonski.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eeqj.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elitefishtank.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "englerts.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evasovova.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eyasc.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eydesignguidelines.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fedrtc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fiilr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frillip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gfwsb.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "giftservices.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grace-wan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hackcraft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helix.am", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "herpaderp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hlavacek.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hobby-gamerz-community.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hochhaus.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "holisticon.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hopewellproperties.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hostinghelp.guru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ikk.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "indybay.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itinsight.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jaroslavtrsek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jav-collective.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jlkhosting.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "juniwalk.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kiebel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kynaston.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "larrysalibra.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lemp.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "letras.mus.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "librelamp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "libsodium.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livedemo.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lukasberan.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lukasunger.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "macker.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maco.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "makowitz.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "melcher.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mercamaris.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "micro-rain-systems.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mlpepilepsy.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mnetworkingsolutions.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mortgagecentersmo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "muguayuan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mybudget.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myg21.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nagoya-kyuyo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nametiles.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netbrief.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nevadafiber.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onespiritinc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otoy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "override.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pacoda.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paratlan.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pcloud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peytonfarrar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phpdorset.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pimpmymac.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pirateproxy.la", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pirateproxy.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "piwko.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "polis.to", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "poon.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "poon.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pressrush.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proxybay.la", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qlrace.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qualityedgarsolutions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ramon-c.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "realmofespionage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ringh.am", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rngmeme.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roeckx.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roombase.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ryanteck.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "safar.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "samegoal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "samegoal.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schwinabart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "selfici.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shiroki-k.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skipfault.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spdf.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ss.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stirlingpoon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stirlingpoon.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stomt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "talado.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taskulu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tazemama.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "the-paddies.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thepartywarehouse.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tidycustoms.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tiens-ib.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tucny.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ultros.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unpr.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utdsgda.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "valordolarblue.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vm0.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vnvisa.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "watersb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "westerhoud.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whatsapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "williamfeely.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "workray.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yobst.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yombo.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zking.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "secure.advancepayroll.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0x1337.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "206rc.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adimaja.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akhilindurti.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alcazaar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alfredxing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allcarepharmacy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amdouglas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aniplus.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arnor.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arrakis.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "artofwhere.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asset-alive.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asset-alive.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "avacariu.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "badkamergigant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "badlink.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bajic.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "besthost.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bets.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bigclassaction.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackpayment.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blaise.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonobo.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "borrelioz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brightstarkids.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bsidessf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burtrum.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buzzconf.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bytejail.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caesreon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calaborlawnews.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carsforbackpackers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cecipu.gob.cl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chcemvediet.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "christiaanconover.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "christianbro.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cidbot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cidr.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cirope.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clearviewwealthprojector.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clickclickphish.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clintonbloodworth.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloud.wtf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudily.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comparejewelleryprices.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "compucorner.com.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cormilu.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cortexitrecruitment.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cqchome.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crow.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptopartyutah.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptoseb.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daemon.xin", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daniel-steuer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dario.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dark-x.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dataretention.solutions", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datatekniikka.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dbmteam.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "delfic.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "detector.exposed", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dgeex.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dime.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dinkum.online", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dise-online.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dmxledlights.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "docemeldoces.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doctorwho.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dopost.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dot.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dyrenesverden.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eagleyecs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eduvance.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elementalrobotics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enteente.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esg-abi2001.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "essoduke.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "expressfinance.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fahrenwal.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fahrenwalde.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fatlossguide.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fbox.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firefall.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flamingcow.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fliexer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "floort.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foray-jero.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fordbydesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fotofaerie.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foxdev.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "free.com.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fsfi.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genshiken.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geschwinder.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gha.st", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gilly.berlin", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "globalcomix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "globalperspectivescanada.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gotocloud.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gpfclan.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gregmilton.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gs-net.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hack.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hardfalcon.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "healtheffectsofasbestos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hejsupport.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helpconnect.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "henrock.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoodoo.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoton.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ideation-inc.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "idvl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iec.pe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ifcfg.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ifoss.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imagescostumes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imrejonk.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inboxen.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "infinitusgaming.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instant.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipcfg.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipswitch.com.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iready.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "istorrent.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itfh.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itpol.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "j-navi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jaba.hosting", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jackfahnestock.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamonsilva.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonathandowning.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joshi.su", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jrvar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kaplatz.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kbjorklu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kindof.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kinnon.enterprises", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kleppe.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "konijntjes.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kraft.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "labs.directory", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lambda-complex.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leppis-it.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liceserv.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "limpido.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lmintlcx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "locomore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lusis.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "macgeneral.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "machbach.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mailgarant.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "management-companie.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "masa.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mathiasgarbe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mavensecurity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maximeferon.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mchristopher.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "media-courses.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "megasslstore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "melitopol.co.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meozcraft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mfcatalin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michalborka.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mijnkredietpaspoort.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "monitman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "monitman.solutions", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mpintaamalabanna.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myiocc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "n2x.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nanogeneinc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "naval.tf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neel.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "niho.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nodebrewery.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nope.website", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nystart.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "online-casino.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onlinelegalmarketing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onlinelegalmedia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onlinewetten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onlyshopstation.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "open-mesh.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openstreetmap.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "osm.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ossbinaries.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ourcloud.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "owncloud.help", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paku.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "palationtrade.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "papayapythons.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parkingplus.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "partirkyoto.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peissen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peterdavehello.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phunehehe.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pileofgarbage.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pm13.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pointiswunderland.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pokemori.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "post4me.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "practicallabs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prayerrequest.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "preisser-it.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pro-bike.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "profundr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proxybay.al", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "purplemoon.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quotehex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redshield.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "responsibledisclosure.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rewrite3.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rootrelativity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rsi.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "safemovescheme.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sandor.wtf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sb-group.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scanpay.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scooshonline.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seo.consulting", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sequencing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "serized.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seyr.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shaitan.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sheilasdrivingschool.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silkebaekken.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skoda-service-team-cup.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sobie.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "square-gaming.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sqzryang.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "srrr.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sslpoint.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stalkerhispano.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "star-citizen.wiki", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "storycollective.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stricted.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strugee.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sumoscout.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sweetstreats.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tacticalsquare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tazj.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tdelmas.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "technosavvyport.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "telekollektiv.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teleogistic.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "telescam.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "textualapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theater.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thorbiswebsitedesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tlo.network", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "torprojects.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "torrent.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "totalchecklist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tpe-edu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trollme.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trufflemonkey.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ttz.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tvtubeflix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twopif.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unblocked-networks.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uni-games.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unila.edu.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unitel2000.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unixadm.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unoccupyabq.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vincentcox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "walkeryoung.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wartorngalaxy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wealthprojector.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weathermyway.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "web4all.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webtorrent.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weeblr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wettbuero.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wetttipps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wetttipps.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whatsupgold.com.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whocalled.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wodka-division.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wrwg.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xatr0z.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xng.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yplanapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zacarias.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ze3kr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zirtue.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zoneminder.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "6969.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aaeblog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anitube-nocookie.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anitube.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "appartementhaus-badria.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "appson.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arjandejong.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aunali1.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "avantmfg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "b3orion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bandrcrafts.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bettween.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bike-shack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bildermachr.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bizcms.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blmiller.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boxintense.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brightstarkids.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brightstarkids.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brightstarkids.sg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bsklabels.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "btsoft.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "budgetalk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burningflipside.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "casperpanel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chic-leather.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chijiokeindustries.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chun.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "citiagent.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cmdline.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cojo.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "concord-group.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "culinae.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "decafu.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dergeilstestammderwelt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dibiphp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "disruptivelabs.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "disruptivelabs.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dovetailnow.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dukun.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elpo.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "englishbulgaria.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eurostrategy.vn.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eveseat.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "familieholme.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fastcomcorp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "felisslovakia.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ff-bad-hoehenstadt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fhcdn.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flat.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "florian-schlachter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fortress.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freeutopia.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gosuland.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guguke.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hacker.one", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hdm.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hds-lan.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "henriksen.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hiddenmail.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hohm.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "holifestival-freyung.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "huaxueba.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ideadozz.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ikvts.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "interaffairs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isitamor.pm", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kanna.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kilobyte22.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "komoju.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kotonehoko.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kropkait.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kryx.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laserfuchs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lawformt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "levinus.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lightme.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "limeyeti.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lottosonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "macleod.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "masa-yoga.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mathhire.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mattwb65.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mavenclinic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meditek-dv.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "micro-dv.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mind-moves.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraft-forum.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraft-forum.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraft-forum.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraft-forum.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraft-forums.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraft-forums.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraft-forums.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraftforum.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraftforums.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraftforums.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraftforums.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mittelunsachlich.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "multigeist.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "narfation.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ne-on.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nettefoundation.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "network-notes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neveta.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "niftiestsoftware.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nullpoint.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "open-bs.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulproell.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peerherrmann.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pixelcode.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "planet-work.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "posobota.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ppmoon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pretix.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "privacyrup.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pt-server.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "purplemoon.mobi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "purplestar.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "purplestar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "purplestar.mobi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pushapp.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pyplo.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rentcarassist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rmstudio.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roave.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rotzonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "samaritansnet.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sandbagexpress.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "selfici.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slovakiana.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "solsystems.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soondy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spacefish.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stjohnmiami.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "streampanel.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stuartbell.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suche.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sveneckelmann.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "texy.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "the-construct.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thebrotherswarde.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thelocals.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thomas-grobelny.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tifan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobiassattler.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomcort.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonburi.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "totch.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "untoldstory.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "valmagus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vansieleghem.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vfdworld.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viperdns.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "w.wiki", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wf-hosting.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wfh.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wfh.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wje-online.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wxcafe.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xellos.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xett.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yecl.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yolobert.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ys-shop.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zooparadies.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0paste.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2nerds1bit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acr.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adevel.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adrl.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aishnair.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "altesses.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "altonblom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amishsecurity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andreasfeusi.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anedot.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aniplus.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anshuman-chatterjee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asandu.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aspires.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "augustiner-kantorei-erfurt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "augustiner-kantorei.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "avalon-island.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "avec-ou-sans-ordonnance.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aviacao.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "babarkata.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "babyfotograf-schweiz.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bacchanallia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "balkonien.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bananabandy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baofengtech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baud.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beachi.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bentley.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bfw-online.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biou.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinworld.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blauwwit.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluemosh.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonifacius.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boringsecurity.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bougeret.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bowling.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brasalcosmetics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cadoth.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caffeinatedcode.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cais.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "camperverzekerd.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "canadasmotorcycle.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "car-navi.ph", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carck.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cardrecovery.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cativa.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ccayearbook.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cctech.ph", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cementscience.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "centralync.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cevrimici.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chaoschemnitz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chch.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "choosemypc.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chriswells.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clintonbloodworth.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudcy.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clouddesktop.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cmci.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "co50.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coiffeurschnittstelle.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "consonare.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "custodyxchange.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyph.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyph.video", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cysec.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "d3xt3r01.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daimadi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datorb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "decomplify.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deepserve.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dentaldomain.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dentaldomain.ph", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dereferenced.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devh.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devolution.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diegelernten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dmlogic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dmwall.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dutchrank.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dzimejl.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eagletechz.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "echomanchester.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ecnetworker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "efficienthealth.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elemental.software", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "endlesstone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eriix.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "expo-designers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ezmod.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "f-thie.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "faesser.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "faizan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "faizan.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "federicomigliavacca.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "findtutorsnearme.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flawlesscowboy.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flowersandclouds.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fmarchal.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frankierprofi.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "franzt.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fukushima-web.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fzn.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geek-hub.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geeky.software", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genslerwisp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genxnotes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getvdownloader.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "glidingshop.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gracesofgrief.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grantedby.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grazetech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grcnode.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gtmasterclub.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "habarisoft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hackthissite.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "handmadetutorials.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "harbor-light.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hduin.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "homads.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoshisato.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "huffduffer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hund.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iainsimms.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imlonghao.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imququ.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imreh.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "indust.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inksay.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "institutoflordelavida.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "interfug.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iocheck.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isaacman.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isondo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jcraft.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jennythebaker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonaskjodt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonathan-apps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonathancarter.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonfor.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jorgemesa.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joyofcookingandbaking.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kachlikova2.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kanotijd.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "katka.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kd-plus.pp.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keke-shop.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kengilmour.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kikuzuki.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kinderwagen-test24.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kitsostech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klif1.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kodokushi.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kokenmetaanbiedingen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kreavis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "latus.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "legendofkrystal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "levendwater.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lewisjuggins.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "limalama.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "listafirmelor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ltn-tom-morel.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luehne.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "m3-gmbh.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "manoirdecontres.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marktcontact.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maxwell-english.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mazz-tech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcc.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcpart.land", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medirich.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medo64.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meizufans.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michaelcullen.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michaelleibundgut.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "microme.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mizd.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "monnyonle.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mpc-hc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mtasa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "multitheftauto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mushikabu.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myonline.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myzina.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nabytko.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nakedalarmclock.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nanogi.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "narach.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nb.zone", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nbg-ha.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neko-life.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netfs.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netfxharmonics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newcitygas.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nyffo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "obdolbacca.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "obscuredfiles.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "okane.love", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "omifind.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ondrej.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onlinedemo.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "optmos.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oszri.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otya.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "overclockers.ge", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pan.digital", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "per-pedes.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "performaterm.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peter.org.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phparcade.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pierre-denoblens.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "playnation.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plogable.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pretty.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "principaltoolbox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "profi-durchgangsmelder.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "profpay.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ptgoldensun.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quantenteranik.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quantumcourse.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "r811.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "racermaster.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rcpcbd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "relisten.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "retcor.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rhdigital.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ronwo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rootwpn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "russmarshall.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saveyour.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scienceathome.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "screenresolution.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "secpatrol.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "serbanpaun.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "serverstuff.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seryo.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seryovpn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shtorku.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "siebens.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sightcure.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silverpvp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sinoscandinavia.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skia.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skyminds.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slightfuture.click", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slightfuture.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smares.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sms1.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "socomponents.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sosecu.red", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soved.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spark.team", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spicymatch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sritest.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sstewartgallus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "starcomproj.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stbennett.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steakovercooked.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stkbn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stopwoodfin.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stressfreehousehold.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "student-scientist.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studentresearcher.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "styles.pm", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sulek.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "susanbpilates.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "susanbpilates.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "synony.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taskstats.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tcl.ath.cx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teamzeus.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techelements.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techpivot.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teddy.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tetsumaki.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "textracer.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thedark1337.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "themicrocapital.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theojones.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tls.builders", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmaward.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmpsantos.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobiasmathes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobiasmathes.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tommyads.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "touhou.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "treebaglia.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trophee-discount.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tryoneday.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trywesayyes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "typecodes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ukwct.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "undone.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unionplat.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uripura.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "use.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vapordepot.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "varghese.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vgatest.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vikashkumar.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vimeo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "volcrado.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vpnhot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "w4xzr.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wallingford.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "warandpeace.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "warr.ath.cx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wasema.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webseitendesigner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "westeros.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wiimotion.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winclient.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winmodels.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winmodels.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wolfachtal-alpaka.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wolfsden.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wolfwings.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "woodbury.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "woodomat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "workingclassmedia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wpvulndb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xdd.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xiangweiqing.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xkviz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xwaretech.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "y-s.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youcontrol.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youyoulemon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yuyu.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yvesx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zorz.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0au.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "692b8c32.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abury.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adam-kostecki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adjagu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akostecki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alkami.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "angristan.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "approlys.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aquilaguild.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arabdigitalexpression.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "assdecoeur.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "b-root-force.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bastianstalder.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bbnx.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bettercrypto.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bienici.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biosignalanalytics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blendle.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blumenfeldart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calculator-imt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "charmander.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudstorm.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "convert.zone", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cowboyim.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crizk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptoparty.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "csohack.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyph.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daniel-ruf.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darkdestiny.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davidgow.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ddatsh.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dicgaming.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitkon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dinube.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dislocated.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drupal.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dutchrank.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elpo.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "embracethedarkness.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fallenangeldrinks.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fallenangeldrinks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fallenangeldrinks.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fallenangelspirits.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fallenangelspirits.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fallenangelspirits.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fallenspirits.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "faspirits.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "faspirits.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feezmodo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "florismouwen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fotostudio-schweiz.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freiwurst.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genxbeats.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gm-assicurazioni.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goggs.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gurom.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haozi.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "havelland-obstler.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hotchillibox.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hotchillibox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "icusignature.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "internethering.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inusasha.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "invictusmc.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ionlabs.kr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isopres.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jagerman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jean-remy.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonlabelle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jrmd.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kassa.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keganthorrez.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kjarrval.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kurehun.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lafkor.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loacg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marcoececilia.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marie.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markusweimar.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mctherealm.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "memo-linux.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mobilemedics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myvpl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nedcdata.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nusatrip-api.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nyantec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "one---line.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "online-bouwmaterialen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oprechtgezegd.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pariga.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paul.reviews", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "piconepress.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pirateproxy.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pmponline.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prediksisydney.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "press-anime-nenkan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "privytime.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "realmic.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rene-schwarz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rhinelander.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "romainmuller.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "royalpalacenogent.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scs-simulatoren.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sdcardrecovery.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seiko-dojo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "selent.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shukatsu-note.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "singul4rity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "speedtest-russia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taxbench.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "temizmama.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "the-gist.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thegoldregister.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thejserver.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tlo.hosting", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "treeby.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "truckstop-magazin.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ttcf.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuningblog.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuntitili.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "umwandeln-online.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "w4nvu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wanban.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wdbgroup.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webm.to", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wenjs.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winter.engineering", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wis.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wisweb.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wrightdoumawedding.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ww2onlineshop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yellowcar.website", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youcancraft.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yunity.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "a-plus.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "achenar.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adelevie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrewsun.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anedot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aosus.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "astengox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asun.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atlantichomes.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "autokovrik-diskont.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bm-trading.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bodyblog.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bpastudies.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ceopedia.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cfetengineering.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cinefilzonen.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cirfi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codabix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codabix.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codabix.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "creditkarma.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptify.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cwagner.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyberpunk.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dadons-laserdiscs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darkag.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dequehablamos.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "discofitta.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dragonisles.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eligible.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esclear.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firevap.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gintenreiter-photography.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "graphire.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grossmann.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gurochan.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hastherebeenamassshooting.today", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heartsucker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hmm.nyc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iamokay.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "infilock.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iseulde.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klauwd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kle.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kleteckova.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "krypteia.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kybi.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "levert.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "libreboot.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linuxlounge.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "litvideoserver.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liud.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lugbb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mailer-dot.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "make-pizza.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mammothmail.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mammothmail.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mammothmail.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maowtm.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mbweir.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mfiles.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mintrak2.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mobiletraff.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moneromerchant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "monitzer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nearby.in.th", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netsystems.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neuralgic.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nolberg.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openxmpp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "optenhoefel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oversight.garden", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plfgr.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "politic.org.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "potlytics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ppy3.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ptbx.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "purplebricks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quchao.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raidstone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rawoil.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "remodela.com.ve", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rolemaster.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "room208.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruanmi.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saikarra.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sailormoonevents.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saltstack.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seatbeltpledge.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shv25.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stmbgr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "streams.dyndns.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "syncserve.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomatenaufdenaugen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vitkausk.as", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wander.al", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wapjt.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webdevops.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winpack.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winpack.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wittcher.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wss.com.ve", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wsscompany.com.ve", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ycc.wtf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zefu.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zonglovani.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zooom.azurewebsites.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zzw.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0p.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adams.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anderslind.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chiru.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dealpass.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "driving-lessons.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elbetech.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ernesto.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esquonic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "falkp.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "furry.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gautvedt.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gorilla-gym.site", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "graph.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gravitation.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grsecurity.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "healthiercompany.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heyguevara.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hostgarou.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jobbkk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kakao-karten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kitakemon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leinir.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luom.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lyx.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "martinp.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minpingvin.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "omniti.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "open-bs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perfect.in.th", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "postal.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "puryearlaw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "revolt.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruborr.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sbssoft.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schrodinger.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "serfdom.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seryo.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sscd.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tinylan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "travisf.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urphp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "v0tti.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wegner.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wilddog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wlzhiyin.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wondermags.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zqhong.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dorianharmans.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inverselink-user-content.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inverselink.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jhburton.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0x52.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0x90.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0xee.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1011100.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1464424382.rsc.cdn77.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1972969867.rsc.cdn77.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1whw.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2brokegirls.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "808.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "911911.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "99511.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abilymp06.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abury.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acabadosboston.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "actserv.co.ke", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adblockextreme.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adboos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adopteunsiteflash.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aether.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "afuh.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agalaxyfarfaraway.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agevio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aiesecarad.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aivd.lol", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akhras.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "albertopimienta.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "albion2.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alecpap.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alessandro.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexhd.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexismeza.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexn.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allbenjoy.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "am3.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ambiente.one", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ancientkarma.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrewmichaud.beer", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrewmichaud.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anitaalbersen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annuaire-photographe.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anonboards.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anthenor.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anyprime.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aopedeure.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aperturesciencelabs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apolloyl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "appart.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "approbo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aprsdroid.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aradulconteaza.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arbu.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "argh.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arima.co.ke", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aristocrates.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "armingrodon.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "articaexports.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arzaroth.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asasuou.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asc16.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aserver.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "askmagicconch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atbeckett.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "attimidesigns.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aucubin.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auverbox.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "axrec.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baalsworld.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "backscattering.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baer.one", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baiker.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ballotapi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barbu.family", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barrut.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bartel.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bartlamboo.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bashcode.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "basnieuwenhuizen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beanjuice.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beardydave.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beinad.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bendemaree.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bendingtheending.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benk.press", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benno.frl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benschnarr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "berr.yt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betaclean.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betulashop.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bezorg.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bieberium.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bildschirmflackern.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "billaud.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biosphere.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "birdfeeder.online", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "birminghamsunset.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin.asia", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinbitcoin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinprivacy.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackphoenix.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blastersklan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluescloud.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blurringexistence.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluserv.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bnhlibrary.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bokeyy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bookofraonlinecasinos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bouncourseplanner.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bradbrockmeyer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bran.land", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bratteng.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brickoo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bridholm.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brunoramos.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bsalyzer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bsdtips.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bsquared.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buck.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "budskap.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buettgens.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bugtrack.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bund-von-theramore.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "businessfurs.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buyinginvestmentproperty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bypro.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "c.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "c3b.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cabsites.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cacaolalina.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calgoty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calibso.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "canarymod.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "candratech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "capper.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "captchatheprize.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carnildo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "casinostest.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "catsmagic.pp.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cavedroid.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ccja.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "celti.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cerastar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chaos.fail", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chatear.social", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chaz6.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chejianer.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chenapartment.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chireiden.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chocotough.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "christiaandruif.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cintdirect.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cirrus0.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ciscommerce.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clarkeaward.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "classicday.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cldly.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clsimplex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clywedogmaths.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cocaine.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codeforce.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codelayer.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codewild.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "com.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comhack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comicspines.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "compeuphoria.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "compiledworks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "completionist.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "consciousbrand.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "core4system.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cornercircle.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coughlan.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cozmaadrian.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "craftinginredlipstick.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cravelyrics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "critical.today", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "criticalaim.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptoisnotacrime.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "csokolade.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cssu.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cthomas.work", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cubeserver.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cubua.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuibonobo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "curlyroots.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "custe.rs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daduke.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dalingk.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dallmeier.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danaketh.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danielcowie.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danieldk.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danielverlaan.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darkhole.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darkside.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darksideof.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davidandersson.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davidreinhardt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dc585.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dedicatutiempo.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "degeberg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deinballon.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "denniskoot.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dersoundhunter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "derwolfe.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "detoxsinutritie.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deuxsolutions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devopsconnected.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dighans.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitalnonplus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dipconsultants.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "disconformity.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "disinclined.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dj4et.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dkds.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dlemper.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doesmycodehavebugs.today", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dokuboard.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domhaase.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "donzelot.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dotbox.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doublefun.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dovecotadmin.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "downsouthweddings.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drdevil.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "driesjtuver.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drivenes.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drugagodba.si", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dumino.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dutchwanderers.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dvbris.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dvbris.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dvorupotocnych.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "easez.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eatlowcarb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eb7.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "echopaper.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ecogen.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ecogen.net.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eduif.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "electricant.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elektropost.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "element-43.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elite12.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elliriehl.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elnan.do", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emilyhorsman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eminovic.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emnitech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enterprisey.enterprises", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eoldb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "epicwalnutcreek.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eq8.net.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eressea.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esko.bar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esocweb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ethanfaust.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eulerpi.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "euph.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evilized.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evossd.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eytosh.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fabienbaker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fableforge.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "faeriecakes.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "familjenfrodlund.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashioncare.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fastopen.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fatox.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fdj.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fecik.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feel.aero", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feirlane.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feliwyn.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fenno.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fenteo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feragon.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fierman.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "figuurzagers.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fiksel.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fikt.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "finfev.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fischers.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flamingkeys.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flocktofedora.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flouartistique.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "francevpn.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frangor.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freqlabs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fridolinka.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fritzrepair.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frly.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frogatto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "furry.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "futuretechnologi.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gam3rs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamecollector.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamegix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gameink.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamesurferapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamishou.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gampenhof.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "garagegoossens.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "generic.cx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genossen.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geraintwhite.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gereon.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gesiwista.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gethttpsforfree.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getinternet.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getmassage.com.ng", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getremembrall.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gfm.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gigacog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gijsbertus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "glentakahashi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "go.ax", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goalsetup.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gofigure.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gorschenin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gps.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gravitechthai.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greedbutt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greenpeace.berlin", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "griesser2.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grog.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gropp.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "groth.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "groth.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guillaumeperrin.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guntbert.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guvernalternativa.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gwtest.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hackenkunjeleren.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hackerpoints.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hackest.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hadleighswimmingclub.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hadzic.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haitschi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haitschi.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haitschi.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haitschi.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hallmarkestates.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haman.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hardline.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "has.vision", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hazcod.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hbpowell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hcie.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hdeaves.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heathmanners.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hec.global", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hejahanif.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "henok.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hhhdb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hhmmmm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hiisukun.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hiphopconvention.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hittipps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hodne.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hondart.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "honoo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hostelite.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hostingfj.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hrobert.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hscorp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hupp.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "huskybutt.dog", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hydra.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iactu.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iamveto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "icebat.dyndns.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ictinforensics.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "idiopolis.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ies.id.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ifconfig.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iflare.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "igforums.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "igrivi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "immaterium.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "informatik.zone", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inios.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "insane.zone", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "internetcasinos.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inton.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "investorforms.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iodu.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipconsulting.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "irazimina.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iridiumflare.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iskaron.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isreedyintheuk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "issuesofconcern.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itludens.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itsatrap.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iwalton.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iwizerunek.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jackdelik.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "james.je", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesbradach.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesdoell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamiemagee.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "janario.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jaqen.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jasonamorrow.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jastoria.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jazzanet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jazzncheese.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jbradaric.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jctf.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jdubya.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeffcasavant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeremiahbenes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jhejderup.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jimas.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jka.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joakimalgroy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johannes.wtf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnrom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnverkerk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonn.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jopsens.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jrgold.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jstore.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jugendsuenden.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jultube.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jump.wtf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "junaos.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "junkdrome.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jupp0r.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kalami.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kantankye.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karguine.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "katericke.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kausch.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kdata.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ke7tlf.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keaysmillwork.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ketosecology.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kevinapease.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kevinbusse.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirara.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirschbaum.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirstin-peters.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klausimas.lt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kolaykaydet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "konata.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koopjesnel.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koot.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kraiwan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kraiwon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kream.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kriegskindernothilfe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kristikala.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kroetenfuchs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kuwago.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "labordata.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "labs.moscow", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lacledeslan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lacledeslan.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lambdafive.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lamboo.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laminine.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "langendries.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "langhun.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "larsklene.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lavine.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lbayer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lenn1.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leolana.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lerner.moscow", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lerp.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lgts.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lhalbert.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lightpaste.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lindberg.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linzgau.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "litchidova.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lithesalar.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "little.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liveforspeed.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livnev.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loafbox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "localchum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loginseite.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loli.bz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loopstart.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lpm-uk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lubot.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lucielavickova.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luther.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luukklene.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lzzr.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "macchaberrycream.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maddin.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maelstrom.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mahefa.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "malfait.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "managemynetsuite.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "manowarus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marcelpreuss.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marcofinke.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marcohager.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marilsnijders.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matrix.ac", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matt.tf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mattandyana.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matthiasschwab.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matze.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maultrom.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcatnnlo.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcl.gg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meadowviewfarms.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medusa.wtf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meghudson.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meifrench.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "merccorp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mereckas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "merson.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "metapeen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michaelfitzpatrickruth.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michasfahrschule.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miconware.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "midwestwomenworkers.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikepair.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikewillia.ms", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "milonga.tips", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mirodasilva.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mjec.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mmucha.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "modydev.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moen.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mojaknjiznica.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moonraptor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moov.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "morbatex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "morenci.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mornings.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "morpork.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "morteruelo.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mozoa.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mplusm.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mremallin.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mrettich.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "msiegmund.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mvanmarketing.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mwavuli.co.ke", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mycoted.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mysoundtalks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mytty.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "n0psled.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "naminam.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nathanmfarrugia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "navjobs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ncrmnt.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ne1home.dyndns.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neap.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nedraconsult.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nerdjokes.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nerdydev.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neris.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netherwind.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netsight.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nettools.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nex.sx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nexlab.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nextproject.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nickloose.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nickrickard.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nicoknibbe.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nicolaeiotcu.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nightfirec.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nikomo.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nohup.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nojestorget.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nolaviz.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nomorebytes.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noordsee.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nopol.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "norandom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "norb.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "notadd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ntbs.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nuxer.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "octav.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "octothorpe.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ollie.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "omgaanmetidealen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onaboat.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onewebdev.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onlinekasino.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onlinespielothek.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onthebriteside.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openpriv.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orbitcom.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oricejoc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oshell.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "osticketawesome.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "othercode.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "othermedia.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otherstuff.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otrsdemo.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "overseamusic.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ozvolvo.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "p1984.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "p1c.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paginapolitica.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pakke.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paneu.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "papierniak.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paranoxer.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "partijtjevoordevrijheid.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "partyhaus.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "passieposse.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pataua.kiwi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulyang.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pekkapikkarainen.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pelanucto.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pengi.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pennergold.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perlwork.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "persson.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "petabits.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pgregg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "philphonic.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phoebe.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phperformances.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "picardiascr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pickr.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pippen.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pitfire.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pittonpreschool.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pixelbash.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "playmaker.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pocloud.homelinux.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "polynomapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "povitria.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "powerxequality.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "predoiu.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pridoc.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "progreso.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "promhadan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proustmedia.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "puikheid.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pumpgames.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "puppydns.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pypt.lt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "q2.si", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qingpei.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qinxi1992.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qop.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quranserver.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qwilink.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "r10n.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "r15.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raajheshkannaa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "radicaleducation.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rapenroer.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rauros.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raydan.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reachr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reactivarte.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "readonly.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "regionale.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "regmyr.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reisyukaku.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rejo.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "renkenlaw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "revello.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rgavmf.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rhering.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "richardhering.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ringingliberty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rix.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rodehutskors.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rodney.id.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roelf.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rohedaten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rsf.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rubberfurs.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rubenschulz.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rudeotter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruqu.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rwanderlust.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rxv.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "samifar.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sanglierhurlant.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sash.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "satrent.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saturne.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sc4le.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scandicom.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schlabbi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schnouki.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schumanandmonnet.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scrion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seattlefabrication.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securiviera.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "selcusters.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "semyonov.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "septakkordeon.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seq.tf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "serverco.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sharepic.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shaunwheelhou.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shiona.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shortr.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "showsonar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sidnicio.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silentlink.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silentundo.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silverdragonart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silverhome.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silverwind.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simonwessel.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simplefraud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sin30.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skullhouse.nyc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slaps.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slashdesign.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slashem.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sluitkampzeist.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slycurity.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smalldata.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snowcrestdesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sobotkama.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sofabedshop.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soju.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "solidus.systems", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "someshit.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soph.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sortaweird.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sown.dyndns.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spacedust.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sparsa.army", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spicydog.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "squatldf.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "srna.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stalder.work", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "standingmist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "starsam80.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stderr.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sternplastic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stoianlawfirm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strobeto.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studenttravel.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studyhub.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stuntmen.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suave.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sudo.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "superbabysitting.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "superbart.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "supermarx.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suprlink.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sushifrick.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swedishhost.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swedishhost.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "syam.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "synatra.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "synchrocube.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sysadmins.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "systemreboot.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "szaszm.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "szongott.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "t7e.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tahf.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tantalos.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tartaros.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taskulu.ir", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taxaroo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tazz.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techcavern.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techtalks.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tecture.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teemperor.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tehotuotanto.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "testbawks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tezcam.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "the-earth-yui.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thehonorguard.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theinvisibletrailer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theodorejones.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thescientists.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thesled.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thetradinghall.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thezero.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thibautcharles.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thinkcoding.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thisisforager.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thisserver.dontexist.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thkb.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thrx.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tianshili.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tikutiku.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tinastahlschmidt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tlach.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toccoig.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomaspialek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomrei.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonage.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toncusters.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "topmarine.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tosteberg.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toucedo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toutart.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "townhousedevelopments.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trik.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trollscave.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trustmeimfancy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tty.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuvalie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uat-activesg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ukrgadget.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unexpected.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unpossible.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uns.vn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urban.melbourne", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urbanmelbourne.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "usbcraft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "valkohattu.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vangeluwedeberlaere.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vantru.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vespacascadia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vetinte.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vincentkooijman.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vincentkooijman.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vleij.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "voidi.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vop.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vpl.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vztekloun.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "warsentech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "warsh.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wasserspucker.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wassim.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webstory.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "welteneroberer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weltengilde.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weltenhueter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weltmeisterschaft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "werkplaatsoost.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "werkruimtebottendaal.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "westcountrystalking.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wetofu.top", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wetthost.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wifimask.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wiktoriaslife.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "withmy.beer", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "womosale.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wpmetadatastandardsproject.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wrgms.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wxster.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "x2w.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xandocs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xbt.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xichtsbuch.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xmppwocky.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xss.ht", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xwalck.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yakmade.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yanaduday.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yanwh.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yaxim.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yhaupenthal.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ymarion.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yoramvandevelde.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youkok2.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youtous.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ypiresia.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "z1h.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "z4k.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zakmccrac.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zcon.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zdbl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zebrababy.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "znation.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zocken.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zwerimex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0513c.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0x.cx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1022996493.rsc.cdn77.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "14it.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "24ip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "28spots.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2or3.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "35792.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "365.or.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "4project.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "6660111.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "7sons.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "7thheavenrestaurant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aaronkimmig.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abacustech.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abou.to", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adayinthelifeof.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "advancedstudio.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aikido-linz.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aikido-wels.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aleax.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alela.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexandre.sh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allinnote.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allthethings.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alphalabs.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "altfire.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amri.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anagra.ms", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andisadhdspot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrewmichaud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrewvoce.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "androoz.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andyuk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anglictinatabor.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "angrapa.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aniplus.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anomaly.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anyways.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ao2.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aposke.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arrmaforum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "art2web.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "artifex21.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arvamus.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "as9178.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "assekuranzjobs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "audisto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ausnah.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "azzag.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "azzorti.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "babybee.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "backeby.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barcoderealty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barrelhead.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bcheng.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bedrijvenadministratie.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beinad.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "berlinleaks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betonmoney.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betplanning.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bfear.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackdesertsp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blha303.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blindsexdate.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blogreen.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blutroyal.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "borisbesemer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bramvanaken.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "branchzero.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brandred.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "busold.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "butchersworkshop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buybaby.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bwear4all.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bytesofcode.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "c1yd3i.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cajunuk.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "canadiangamblingchoice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "canyoupwn.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "catinmay.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cerebelo.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chaulootz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chazay.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "christophheich.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cigarblogs.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cimalando.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clanthor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clockcaster.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudapi.vc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudbolin.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudstrike.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clvrwebdesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cmsbattle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "code.fm", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "code67.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codyevanscomputer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coldfff.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comercialtrading.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "continuumgaming.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cool110.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "creep.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cruzr.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyberoptic.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cygnius.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "czlx.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "d-designerin.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dachb0den.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dakrib.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danjesensky.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danrl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darrenm.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dash.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dashboard.yt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "data.haus", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davidmessenger.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davidscherzer.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deepbluecrafting.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deight.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dewalch.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dfranke.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diddens.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "directme.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dittvertshus.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dizorg.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doeswindowssuckforeveryoneorjustme.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dominikkulaga.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dougferris.id.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dramaticpeople.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "draw.uy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drawesome.uy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drobniuch.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dvwc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "echosixmonkey.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edcphenix.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eelzak.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eery.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eidolonhost.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elars.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elearningpilot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elgosblanc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eligrey.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elsamakhin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "end.pp.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enteente.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enveloppenopmaat.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "epanurse.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erotalia.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erp-band.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erp.band", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erpband.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "errolz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esteam.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "euanbaines.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eulenleben.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "everylab.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ewie.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "expertmile.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ezrefurb.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fanvoice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fawkex.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fierman.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fierman.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "finanzkontor.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "findyour.diet", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fionamcbride.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firstderm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flags.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flamme-von-anor.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fletchto99.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foodiebox.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "formazioneopen.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "formini.dz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fotowolfy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frankhaala.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freeboson.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freekdevries.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freezion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freshdns.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frob.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fromscratch.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "g-marketing.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gabber.scot", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamajo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "garyjones.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gatilagata.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gaussorgues.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gechr.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genehome.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "get-asterisk.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "get-erp.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geterp.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getlolaccount.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getts.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gheorghesarcov.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goben.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gogenenglish.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goldpreisfinder.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gordonobrecht.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grafmurr.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gritte.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "groovydisk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guffr.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gussi.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "h-jo.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haktec.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "happytiger.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "happyukgo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hardertimes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hauntedfishtank.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haurumcraft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hdwallpapers.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hexicurity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hogar123.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "holofono.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "homeseller.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "homeseller.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "housingstudents.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hpisavageforum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hsir.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "id0-rsa.pub", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "idolf.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ikwilguidobellen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imim.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "in-depthoutdoors.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "infcof.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inflation.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "innovaptor.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intel.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ip-life.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ircmett.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isincheck.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isletech.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "its-gutachten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "its4living.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iwannarefill.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jagido.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesmorrison.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "janokacer.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jaot.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jasperhammink.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "javalestari.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jayscoaching.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jensenbanden.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jetsetcharge.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jetsieswerda.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jettlarue.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jie.dance", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joerss.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joostrijneveld.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jr5devdoug.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jr5devdouglas.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "juliamweber.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "justchunks.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jvoice.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kackscharf.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kaileymslusser.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kalender.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kamitech.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kana.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kapseli.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kawaiiku.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kawaiiku.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keops-spine.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keops-spine.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kerksanders.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kg-rating.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kilianvalkhof.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kissart.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kjaermaxi.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kleinerarchitekturfuehrer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klicktojob.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kmkz.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kolmann.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "krasota.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "krmela.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kumachan.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kumasanda.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kummerlaender.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lacasseroy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "land.nrw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "langenbach.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "largescaleforums.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lasercloud.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lask.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laxatus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leedev.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lega-dental.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lesperlesdunet.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "letustravel.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lewis.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lfullerdesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liaillustr.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "libbitcoin.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lillepuu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linuxbabe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liris-beautywelt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lntu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "localbandz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lokaal.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lolpatrol.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lrhstsa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lukas.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lumiere.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lunix.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "madnetwork.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mailchuck.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mall.hr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marikafranke.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "martelange.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "martiert.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "massdrop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mattandreko.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mavisang.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mawe.red", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mce55.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mdscomp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meap.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "melnikov.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mentax.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mesmoque.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "microvb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mijcorijneveld.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mintea-noua.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mitzpettel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mlemay.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mlp.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mobidea.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mobilpass.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moelord.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mommel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mommelonline.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "monix.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moonloupe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "morningcalculation.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "msmails.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nabru.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ncc60205.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nemno.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nerd42.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "network23.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ninchat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nobly.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noop.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noxlogic.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nsweb.solutions", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nyyu.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oceandns.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oceandns.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oceandns.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ocotg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oftn.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oiepoie.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "okhrana.agency", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "okok-rent.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "okok.rent", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ols.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oneway.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onlinepollsph.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opensrd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opus-codium.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oscsdp.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ostendorf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "p3in.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pajuvuo.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "palatin.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pamplona.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "panni.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paradoxdesigns.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parithy.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "payfreez.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pear2pear.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peervpn.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perot.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "petchart.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "petravdbos.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pgmsource.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "philadelphiadancefoundation.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pindanutjes.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinoyonlinetv.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pipenny.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pir9.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "placehold.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "port80.hamburg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pr2studio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prekladysanca.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "privatepokertour.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "protonmail.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "protonmail.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "psxtr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pygarage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qtpower.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qualityology.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quantumfurball.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "r40.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rainbowbarracuda.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "razlaw.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rbhighinc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rcnitrotalk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "realmofespionage.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "recht-freundlich.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reddit2kindle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "renderloop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reprolife.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "richsiciliano.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ring0.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rous.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rozalisbengal.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rubbereggs.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruderverein-gelsenkirchen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ryanmcdonough.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "safejourney.education", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "safeme.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saleaks.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "salud.top", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "santing.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sarahbeckettharpist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schmitz.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schneids.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schwarzwaldcon.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scottstorey.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scrapings.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "screencaster.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "secandtech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sedoexpert.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sedoexperts.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sephr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "serveroffline.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sessionslogning.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shiftins.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shulan.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "siciliadigitale.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sideshowbarker.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sig6.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sigabrt.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "signere.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simbast.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sincron.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sinneserweiterung.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sisv.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sitehost.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sizingservers.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skatn.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skhoop.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slauber.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sliceone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smartofficesandsmarthomes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smet.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smirkingwhorefromhighgarden.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "socialgrowing.cl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "socialhams.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soldecom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soumikghosh.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soundforsound.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sovereignshare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spot-events.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spuffin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spydersec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "srpdb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssworld.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stationaryjourney.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stefanweiser.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stefany.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stigharder.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stnl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strobeltobias.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studlan.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stumf.si", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stygium.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sundayfundayjapan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swansdoor.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swmd5c.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swyn.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sxbk.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sylvan.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "systemintegra.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "t0dd.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tankski.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tappublisher.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taranis.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techmatehq.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "technoparcepsilon.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teodio.cl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "testandroid.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "testnode.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tf-network.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tfnapps.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "themeaudit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thenocman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thestory.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theworldsend.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thezonders.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmitchell.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonsit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonsit.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toptranslation.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transitpoint.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transverify.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "treeschat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trimage.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "triple-mmm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trzepak.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ts2.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ulmo.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "umidev.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "upboard.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ur-lauber.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "usbtypeccompliant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "val-sec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "valethound.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "valshamar.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vanestack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vattulainen.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vdcomp.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vegalitarian.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vglimg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viciousviscosity.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "videomuz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "visiontree-beta.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vogt.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vonedelmann.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wangqiliang.xn--fiqs8s", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "warekon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weberjulia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webstore.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wer-kommt-her.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whisp.ly", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikimilk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winecodeavocado.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wittydonut.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "womb.city", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "woording.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wphostingblog.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wql.zj.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xmr.to", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--3lqp21gwna.xn--fiqs8s", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--3lqt7ir4md4tzwa.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--3lqt7ir4md4tzwa.xn--fiqs8s", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--qckss0j.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xqin.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yamamo10.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yatesun.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yjsw.sh.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yusa.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "z33.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zelfstandigemakelaars.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zerocool.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zima.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zoomingin.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zulu7.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zvps.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "020wifi.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0xa.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "21.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2programmers.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "420dongstorm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "4ourty2.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "960news.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agroline.by", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amazing-gaming.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrewtebert.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arturkohut.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atg.soy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "awg-mode.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "azuxul.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bankcardoffer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barely.sexy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bazarstupava.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benni1.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bexit-hosting.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bexit-security.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bexit-security.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bexithosting.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bible.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bibleonline.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biguixhe.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "binaryabstraction.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackhelicopters.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bobiji.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bondskampeerder.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brossman.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brunix.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burzmali.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carey.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cfh.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ciubotaru.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clubmate.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cnam.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codeplay.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codewiththepros.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "compalytics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coursera.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coverduck.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crendontech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptearth.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daolerp.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datascience.cafe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dbx.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deeprecce.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "denisjean.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dick.red", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "distinctivephotography.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dnscurve.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dogespeed.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "duuu.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eauclairecommerce.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eichornenterprises.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "einaros.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "empleostampico.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enteente.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enteente.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fakeletters.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "familie-sander.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fargtorget.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fierlafijn.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "finenet.com.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fortnine.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "glittersjabloon.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmw-hannover.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gonzalosanchez.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gripopgriep.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "groseb.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guevener.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haku.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hashru.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "herrsmith.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "highvelocitydesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hikariempire.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hipstercat.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hirake55.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "holmesian.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hx53.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ianix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "idoc24.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "idontplaydarts.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imagefu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imjiangtao.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inchomatic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intranetsec.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inzdr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isogen5.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itsecurityassurance.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jcaicedo.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jefftickle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kakaravaara.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kantanmt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kesteren.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kesteren.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kjellvn.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laobox.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lemoine.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leonmahler.consulting", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leovanna.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lesdouceursdeliyana.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "logopoeia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lvrsystems.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mariaolesen.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markrego.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markri.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "martinkus.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michaeltroger.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michalkral.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moviedollars.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mpetroff.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mtamaki.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "muriburi.land", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mybeautyjobs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "n4l.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nekosc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nerull7.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netulo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nnya.cat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nottres.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ofcourselanguages.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "olmari.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opentrack.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opq.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "outetc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pbscreens.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pentagram.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perdel.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "petsittersservices.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "poussinooz.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "professionalboundaries.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "projectblackbook.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "r0t.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rapidthunder.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raulfraile.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reader.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redicabo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rezosup.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rezosup.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rheocube.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rhodri.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ride-up.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rijndael.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robinwinslow.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robohash.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rxprep.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scriptict.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seanholcroft.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "setfix.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shannoneichorn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shome.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sighup.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skanvordoff.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skills2services.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slamdjapan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snl.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sowncloud.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spielcasinos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spiet.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "starpeak.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studer.su", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "subbing.work", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sublevel.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "supereight.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "svarovani.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "talktwincities.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tcdw.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tenyx.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tescoirelandpayslips.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "themostexpensiveworkofart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thinkcoding.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thomasnet.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tictactux.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tiensnet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tigerchef.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timetab.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tit.systems", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tombrossman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonymanning.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uerdingen.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utumno.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "valtoaho.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vipnettikasinoklubi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webdesigneauclaire.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webnosql.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whoclicks.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whoisapi.online", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wipply.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wolfesden.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wxukang.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yagihiro.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zhendingresources.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "3s-hosting.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "7kovrikov.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adderall.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agwa.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alanlee.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atletika.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auto-anleitung.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bakaweb.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "breitbild-beamer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bullbits.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cat-box.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cgtx.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chriskyrouac.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chuckame.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clawe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clickforclever.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clickphish.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cmacacias.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cmlancy.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comodo.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "curveweb.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "debank.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dentistglasgow.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "denverprophit.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitalehandtekeningen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "docid.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dotbigbang.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edesseglabor.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edp-collaborative.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emilong.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ensured.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ensured.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geekwu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "glasschmuck-millefiori.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goge.site", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "graavaapi.elasticbeanstalk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gz-architekten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "httpsecurityreport.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ibron.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "icewoman.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ifxor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "innovaptor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "interlun.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jmk.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jobmob.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joretapo.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kamcvicit.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kintore.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lakhesis.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "langguth.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "latitude42technology.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linuxmonitoring.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mediawikicn.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikeg.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nalao-company.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pekoe.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "php-tuning.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prytkov.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "s13d.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saorsat.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sazuz.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sectia22.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shiftplanning.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssbrm.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sslcertificaten.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sslcheck.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strijkshop.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "synackr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "szagun.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techassist.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobiasofficial.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "traffixdevices.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trusteecar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "windscribe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wlaws.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xolphin.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zellari.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "123plons.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1cover.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1xcess.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2carpros.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "3r.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abilitynet.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aboutmyproperty.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acheconcursos.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acnpacific.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acuve.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "addaxpetroleum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adigitali.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adquisitio.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adquisitio.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adquisitio.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adquisitio.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adquisitio.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "affiliateroyale.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aficotroceni.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ahd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "airsoft.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aldes.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexandra-schulze.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "all-subtitles.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "all4os.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ama.ne.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amateri.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "animesfusion.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "applez.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ausschreibungen-suedtirol.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "babysaying.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bankersonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "banqingdiao.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bbdos.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bcdonadio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bedabox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "belcompany.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benmatthews.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beryl.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betcafearena.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betpamm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bevinsco.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bfi.wien", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bhuntr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "billin.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biofam.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bip.gov.sa", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bismarck.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitshaker.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blinkenlight.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluechilli.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bookmein.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brd.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cabusar.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cando.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "capitalquadatv.org.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cardstream.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "centennialrewards.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "centerpereezd.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "centillien.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "centralstatecu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "centrobill.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cgbilling.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chamilo.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chargejuice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "checkyourmath.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chepaofen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cienbeaute-lidl.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cigarterminal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cittadesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "citya.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clickenergy.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clockworksms.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cmscafe.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coffee-mamenoki.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coinessa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comfortticket.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comparamejor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comparetravelinsurance.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "contarkos.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cookmedical.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coryadum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "countybankdel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crazydomains.ae", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crazydomains.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crazydomains.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crazydomains.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crazyhotseeds.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "criena.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crowdsupply.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptobin.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptocon.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptolab.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cselzer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cutorrent.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dalfiume.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dargasia.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darkshop.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datacalle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datortipsen.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "detutorial.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "developmentaid.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digminecraft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dijkmanmuziek.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diodeled.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "divegearexpress.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diybook.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diycc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dndtools.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dpd.com.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drakefortreasurer.sexy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dreizwosechs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drumbe.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dunea.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dycontrol.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebankcbt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebp2p.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edati.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "educationunlimited.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "educator-one.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elenoon.ir", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emaily.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emilyshepherd.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "energiekeurplus.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "englishforums.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ericdiao.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eternitylove.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "euroshop.or.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "expo-asia.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "factuursturen.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "factuursturen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "faktura.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashion.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feard.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fexco.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fillmysuitca.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "finalgear.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firecore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firexarxa.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flexport.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fly.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fnb-griffinonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forextimes.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "formationseeker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freelance.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freesitemapgenerator.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frezbo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fugle.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "functions-online.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "funnyang.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "g2a.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gcsepod.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gifzilla.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "godesigner.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "graciousmay.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greatnet.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grytics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gtlfsonlinepay.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gunwatch.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "halo.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "harmoney.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hdfgroup.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hellenicaward.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helpmebuild.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "homehunting.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "homeyou.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hostedbgp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hotelmap.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "htmlacademy.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "huren.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "idlekernel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ikeyless.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ilrg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "immigrationdirect.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imusic.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iprice.co.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iprice.hk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iprice.my", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iprice.ph", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iprice.sg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iprice.vn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipricethailand.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "islandhosting.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iterror.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ivpn.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jabber.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jackf.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesburton.london", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jelly.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jennybeaned.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jr5proxdoug.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "juhakoho.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kaisers.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karmaplatform.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "katekligys.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kefaloniatoday.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kernl.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kerrfrequencycombs.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kgxtech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kornersafe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "krachtinverbinding.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kriegt.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "krizek.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kynastonwedding.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lacentral.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leatherfurnitureexpo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leopotamgroup.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lifeinitsownway.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linkenheil.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linkmaker.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linkonaut.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liquidcomm.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loadingdeck.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "locomotive.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lpak.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lynkos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "m.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "madebymagnitude.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "madtec.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mail4you.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "manueli.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marbogardenlidkoping.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "masterhaus.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matthewprenger.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maxserver.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mbilker.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcdonalds.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mealgoo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mhict.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michel-wein.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miku.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mmonit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "monobank.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moveek.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mtg-tutor.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mtnz.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mutuelle.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myclientsplus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myconan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mysmelly.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "namacindia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "natuurbehangnederland.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "navstevnik.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nct.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ndbt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netmagik.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neuwal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nfo.so", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nohats.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "northcutt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nos-medias.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "notjustbitchy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "novatrucking.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "novelfeed.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nshost.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nyiad.edu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nyip.edu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oaic.gov.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "olafnorge.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onmarketbookbuilds.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ononpay.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openvz.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "optumrxhealthstore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orcamoney.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "osmosis.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oxynux.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pagewizz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "panamaequity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "particonpsplus.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "passwordrevelator.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "payoff.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paytm.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "payupay.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pcforum.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pedicureduiven.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pensiunealido.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pepperworldhotshop.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "philadelphia.com.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "picoauto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "picotech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "picscare.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinkcasino.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pisexy.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pixelminers.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plainjs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "planete-cocoon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "politologos.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pro-link.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "punknews.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quera.ir", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quire.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "racius.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reezer.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "regenbogenwald.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "renrenche.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rheuma-online.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riaucybersolution.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rk6.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "royzez.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "runtondev.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "safcstore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sakaserver.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "salesmachine.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "salon.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sampoznay.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sandviks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sardegnatirocini.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schont.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schwarzkopfforyou.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "serveradminz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shawnh.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "siriuspup.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sitsy.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skyway.capital", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slotboss.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smittix.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smove.sg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snelwerk.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snoqualmiefiber.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sofort.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sofortueberweisung.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sosaka.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soundgasm.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spectrosoftware.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sperrstun.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spiegels.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stalker-shop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stephanierxo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stoffelen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stormyyd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studentskydenik.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sudo.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suneilpatel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "supcro.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "superbshare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "supersalescontest.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "svijet-medija.hr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swimming.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swite.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "syncmylife.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "talentcast.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tasmansecurity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teamtouring.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "terrastaffinggroup.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "textburst.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "texter-linz.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thebikeinsurer.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thecandidforum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thedisc.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theinitium.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theseed.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theseletarmall.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thomashunter.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thomaskliszowski.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "threedpro.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tiendschuurstraat.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tiplanet.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmprod.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomeara.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "top-stage.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toysperiod.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trabbel.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trackchair.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transformify.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trineco.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trineco.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uangteman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "umassfive.coop", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unicef.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unicredit.ba", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unicredit.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unicreditbank.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unicreditbank.rs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unicreditbank.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unseen.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unyq.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uplinklabs.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "us-immigration.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "useresponse.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "usitcolours.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "validbrands.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "veggiesbourg.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "velasense.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "verifikatorindonesia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "versia.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "veryhax.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viaprinto.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vinilosdecorativos.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vivaldi.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vizeat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vorodevops.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vpn.ht", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vulners.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wail.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "walkingforhealth.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weather-and-climate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webtobesocial.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weekdone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weekly-residence.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weisse-liste.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wellacapability.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "werally.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "westsuburbanbank.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wftda.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winshiplending.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wizzley.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wkv.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "word-grabber.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wunderkarten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ximage.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xmerak.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xotika.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xtronics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zberger.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zizoo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zju.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zjubtv.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zoe.vc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zoznamrealit.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "10seos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "126ium.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "a2nutrition.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aanmpc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ac-town.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "active.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexmerkel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ambiq.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arbitrarion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auth.adult", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baby-click.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bayden.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bckp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betafive.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bildiri.ci", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bmone.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boeddhashop.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bpadvisors.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bukkenfan.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bytesystems.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chaoswebs.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chiphell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chorpinkpoemps.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "christianliebel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "collinsartworks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "combatshield.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "compareinsurance.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crosssec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crypt.guru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptolab.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crystalclassics.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dairyshrine.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davevelopment.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dcpower.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "donthedragonwilson.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dragonschool.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drkmtrx.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drpetervoigt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dsol.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dynamicnet.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "easyplane.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enecoshop.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enefan.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "etula.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exeria.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exno.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "extranetpuc.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "finditez.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "formula.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "g5led.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "generali-worldwide.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "golocal-media.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grieg.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "griegshipbrokers.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grimneko.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hackit.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hasinase.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hegen.com.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hele.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hennymerkel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "herbandpat.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heyfringe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hjw-kunstwerk.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hqhost.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hugocollignon.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "husakbau.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ibarf.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "idgsupply.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "immortals-co.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "incendiary-arts.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "injigo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intimtoy.com.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "irgit.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isqrl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itechgeek.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jenjoit.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karateka.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kindleworth.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirkovsky.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "km-net.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "krisstarkey.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kroodle.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kwidz.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kwikmed.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linkages.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loveto.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ls-a.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luis-checa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lyness.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ma2t.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maildragon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "majesnix.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mascosolutions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikaelemilsson.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mironized.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myshirtsize.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netvizura.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neueonlinecasino2016.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nottheonion.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "novafreixo.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oneb4nk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onvori.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onvori.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "papeda.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pauspam.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "petplus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ploup.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "portalzine.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rage4.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "regalpalms.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reox.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "romaimperator.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rubysecurity.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sapience.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sarisonproductions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saunas.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scrayos.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "signtul.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sikatehtaat.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "socialnous.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "softwarebetrieb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "somebodycares.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sp.rw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spiritbionic.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stanandjerre.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "storvann.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "storvann.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "structurally.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taniesianie.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tarhauskielto.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tendertool.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theamateurs.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thierryhayoz.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomaw.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomudding.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "truserve.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trustedinnovators.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuingereedschappen.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "typeonejoe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vazue.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "veil-framework.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vemokin.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vid-immobilien.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "w4a.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whysuck.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wirc.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xbind.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--jp-6l5cs1yf3ivjsglphyv.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yamadaya.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zoeller.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gendrin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webmail.xalqbank.az", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winebid.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, // END OF LEGACY 18-WEEK BULK HSTS ENTRIES // Entries submitted through hstspreload.appspot.com in Chrome 51 or later. // These entries are subject to the continued requirements documented at // https://hstspreload.org/#continued-requirements // START OF 18-WEEK BULK HSTS ENTRIES { "name": "0x.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1st-community.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2kgwf.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "92url.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aaronsilber.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aatf.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abthorpe.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acrylicwifi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aficionados.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agowa338.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akutun.cl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alienstat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alterbaum.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "americkykongres.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amnesy.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "and-stuff.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annarokina.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annetta.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "antoinedeschenes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aramido.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asmui.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "automacity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "avtovokzaly.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "awxg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "babacasino.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bankofdenton.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barisi.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bebef.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "befundonline.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beikeil.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benjaminblack.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bermytraq.bm", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bestessayhelp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bible-maroc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biblionaut.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "billiger-mietwagen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "billogram.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin-india.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitref.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bl4ckb0x.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blaudev.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blogarts.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluepoint.foundation", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluepoint.institute", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boomersurf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boringsmith.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "botox.bz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bubblegumblog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "c3w.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caphane.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carigami.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carlgo11.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cdnjs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cfcproperties.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chatup.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cipherboy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "citizensbankal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "connectfss.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cordlessdog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "correctpaardbatterijnietje.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptonym.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ctpe.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyberwire.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "d-20.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dag-konsult.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dammekens.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darkspacelab.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "databutlr.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datenreiter.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datenreiter.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dckd.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deathy.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "delta-data.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devcu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dicionariofinanceiro.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dieti.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digidroom.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "disposable.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dnc.org.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doctorfox.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domadillo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dontcageus.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doordecor.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dr2dr.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drhopeson.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "driftdude.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drrr.chat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drycreekphoto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e-teacher.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ecchidreams.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ekostecki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eligibleapi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elisabeth-kostecki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elisabethkostecki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elternforum-birmensdorf.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emprego.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "encfs.win", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erigrid.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erudikum.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "estebanborges.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "etyd.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "everling.lu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evin.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fakturi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "falsum.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feedhq.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fernandes.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firstmall.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fitzsim.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flipneus.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "florian-thie.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fnordserver.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foxbnc.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foxdev.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fraho.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "franckgirard.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frank.fyi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frizo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frugro.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fsbpaintrock.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fsbturton.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fxp.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fyn.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "game7.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geli-graphics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "georgmayer.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "germandarknes.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getcarina.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gipsic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gixtools.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gixtools.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gjcampbell.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goerres2014.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gohon.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gospelvestcination.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grieglogistics.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hackmd.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "happyandrelaxeddogs.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haskovec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haveforeningen-enghaven.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hdhoang.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hebikhiv.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hentschke-bau.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hicl.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hippies.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hory.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hostmijnpagina.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hyk.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "i--b.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iba.community", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ict-concept.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "igiftcards.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ile-kalorii.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "in-flames.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ionx.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iossifovlab.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ischool.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itnota.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jaredfernandez.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jaymecd.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jensrex.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jesters-court.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jetwhiz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "julibear.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jungesforumkonstanz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karsofsystems.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keeweb.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keisaku.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kempkens.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kgm-irm.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "killerrobots.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirbear.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koretech.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kreationnext.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kurz.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kylelaker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kyosaku.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ld-begunjscica.si", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lgiswa.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lgrs.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lifi.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lingros-test.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "link2serve.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linuxhostsupport.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "localbitcoins.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lover-bg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lwl.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lynthium.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maddi.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magenx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mahrer.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mailfence.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markido.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "masse.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matthiasadler.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maxtruxa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mbaestlein.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mce.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mce.nyc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mceconferencecentre.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mechanus.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "merkel.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "metaether.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mheistermann.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "midair.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mireservaonline.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "misakiya.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mkes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mktemp.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mm13.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moneygo.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moonagic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mrnonz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "murfy.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mx.org.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myownconference.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myownconference.com.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mystudy.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nargileh.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nathansmetana.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ncstep.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "next24.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nierenpraxis-dr-merkel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nl-ix.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nomesbiblicos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nord-sud.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nutleyef.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ochaken.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onefour.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oneweb.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onmaps.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "open-future.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openmtbmap.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oprbox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oracaodocredo.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otpsmart.com.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oznamovacipovinnost.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paragreen.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parentinterview.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pastaenprosecco.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulbdelaat.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulinewesterman.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paxwinkel.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "payslipview.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peername.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pharynks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phormance.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "piekacz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pisupp.ly", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plaintech.net.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plixer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plumlocosoft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "powerwellness-korecki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ppipe.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "profidea.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prtpe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "przemas.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pste.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pxx.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quietapple.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rainforest.engineering", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "randc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ravindran.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rdh.asia", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reanimated.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redballoonsecurity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "regalosymuestrasgratis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "remambo.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rent-a-coder.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "republique.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "revthefox.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rhynl.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riyono.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rolandreed.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rowancasting.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "s-cubed.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sarahlicity.me.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schreinerei-jahreis.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schritt4fit.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "semps.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shellfire.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shh.sh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simonreich.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simonsreich.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "singleuse.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sistem-maklumat.com.my", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sloancom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slxh.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slxh.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smarthdd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smartrak.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sme-gmbh.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sniderman.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spicydog.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sqlapius.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sqr-training.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssl247.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssl247.com.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssl247.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "styleci.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "su1ph3r.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "superhome.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sydgrabber.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sylvaindurand.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "t-hawk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taquilla.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "team3482.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teemo.gg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tepid.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theploughharborne.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theseoframework.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "throwaway.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmi-products.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmi-produkter.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonegidoarchief.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toshkov.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "totaltriathlon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tout-art.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tp-law.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tradeinvent.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "troi.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trw-reseller.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuxcloud.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twd2.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tysye.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "umisonoda.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urbanesecurity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urspringer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "usleep.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "v2.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vandalfsen.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "videogamesartwork.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vigilo.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vigilo.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vistaalmar.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "volkergropp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vux.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vxapps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wave.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wavesboardshop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webstylemedia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wiedu.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wintodoor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wizzr.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wow-foederation.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xbb.hk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--pbt947am3ab71g.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xrockx.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xsmobile.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xuc.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yinlei.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youkaryote.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youkaryote.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "z-vector.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zaalleatherwear.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zimiao.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "4x.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "9vx.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0xn.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "700.az", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aati.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acsemb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abeus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adamoutler.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ahero4all.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aegee-utrecht.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aluroof.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alpencams.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anoneko.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anonyme-spieler.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "antarcti.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atrinik.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asr.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arzid.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atnis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "badoo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biosbits.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoincore.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blueimp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blingsparkleshine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biurokarier.edu.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blieque.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bobcopeland.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brigidaarie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brefy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boxpirates.to", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "callhub.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "callear.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caasd.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "campfiretails.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cadusilva.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bvionline.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cablemod.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "casovi.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "capecycles.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ceml.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cantrack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "churchthemes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clifflu.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chronoshop.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "code-well.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "compliancedictionary.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crumbcontrol.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "currency-strength.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyberspect.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "creativephysics.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dad256.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danielrozenberg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dehopre.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "derekkent.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "desserteagleselvenar.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dethemium.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitaldeliarchive.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dinepont.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drew.red", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dvotx.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "effortlesshr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "easypv.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "egg-ortho.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eintageinzug.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "endlessdiy.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ender.co.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ensemble-rubato.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eq-serve.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erichorstmanshof.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evolutionlending.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "filestar.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "first-time-offender.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "floaternet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flightschoolbooking.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freemyipod.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frtn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fuwafuwa.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geeklair.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gameisbest.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geneau.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ggservers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gianttree.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grokker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gryffin.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gycis.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gryffin.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hallelujahsoftware.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hlfh.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "horstmanshof.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "huang.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "huagati.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hussam.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imguploaden.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inovatec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "internetpro.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipokabu.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jaimechanaga.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jabbari.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "junglist.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jschumacher.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kandalife.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keithws.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keifel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kn007.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kinkenonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koebbes.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kolmann.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kroon.email", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kuemmling.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "life-time.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livecards.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livekort.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loli.pet", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livekaarten.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loveisourweapon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livekort.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luxsci.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magicball.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mastellone.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maxmilton.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miagexport.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meteobox.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meteobox.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meteobox.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meteobox.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meteobox.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meteobox.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meteobox.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meteobox.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mjacobson.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mitrecaasd.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mitremai.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mit-uns.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mindcraft.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mnmt.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "modernapprenticeships.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moritz-baestlein.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nafod.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "namegrep.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "namu.wiki", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nelhage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "natenom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neuhaus-city.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "new-process.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nitropur.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "norrliden.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nube.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "obsproject.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ockendenhemming.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oogami.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onysix.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orleika.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ostr.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "papa-webzeit.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "percolate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "petruzz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parlamento.gub.uy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pokeinthe.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pypi.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "punkapoule.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "radar.sx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qkka.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rak-business-service.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rex.tc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rezept-planer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "remonti.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riscascape.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rokort.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robhorstmanshof.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruffbeatz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruhrmobil-e.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saml-gateway.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sasyabapi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schnellno.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "science-texts.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sectio-aurea.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sebster.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "segulink.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "semps-2fa.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "semps-threema.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shadowmorph.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shareworx.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sillisalaatti.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snazzie.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sparkforautism.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stat.ink", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sunsetwx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stutelage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sv-turm-hohenlimburg.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "szentistvanpt.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "takk.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sy-anduril.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techorbiter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tbitc.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thebigdatacompany.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thelaimlife.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theeyeopener.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thewhitneypaige.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timcamara.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tilikum.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thisisacompletetest.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmf.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "topfivepercent.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "torrenttop100.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trommelwirbel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "typo3.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utopicestudios.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vgerak.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vereinscheck.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vgropp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tokyo-powerstation.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vitalismaatjes.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "volker-gropp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wearegenki.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vkox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wbt-solutions.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wayohoo.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wbt-solutions.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webmedpharmacy.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wy6.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yclan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zombiesecured.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zundapp529.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adalis.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aistockcharts.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alecrust.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aljaspod.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aljaspod.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ams.co.rs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amuq.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amzn.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "animeday.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anohana.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anxietyspace.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apk4fun.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ascension.run", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "azort.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bittylicious.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biztera.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bleche-onlineshop.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blessedguy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blio.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "casa-due-pur.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "casa-due-pur.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "casa-due.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chromebookchart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cj-jackson.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cjey.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ck.cx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clanrose.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codeit.guru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "colemak.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comff.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "commania.co.kr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cool-wallpapers.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "copypoison.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "covershousing.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "craigfrancis.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crazymeeshu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crstat.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crystone.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cvlibrary.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dan.me.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daniel-baumann.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danieliancu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danielthompson.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davidadrian.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "debtrecycling.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dgpot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diasp.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "do-do.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dolice.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drrr.wiki", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dumbeartech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dustygroove.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edisonlee55.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edited.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emilstahl.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.cl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.hk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fenster-bank.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fenster-bank.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ferrolatino.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fonga.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fontein.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frantic1048.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genslerapps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "georgioskontaxis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "georgioskontaxis.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "georgioskontaxis.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gerritcodereview.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getgeek.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gillmanandsoame.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "giunchi.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gkralik.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goalbookapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goudenharynck.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grandpadusercontent.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gravitascreative.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gregorians.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gregorywiest.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gryffin.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gsimagebank.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gsrc.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haozhang.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helioanodyne.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "herringsresidence.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hititgunesi-tr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hostfission.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hpbn.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inhaltsangabe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instantkhabar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "internetstaff.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isvbscriptdead.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jakobejitblokaci.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jedipedia.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeffsanders.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jondarby.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "justinho.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "justupdate.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karmaflux.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kialo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kircp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kkzxak47.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koluke.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koluke.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kontaxis.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kortgebyr.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kraga.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kriptosec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lafka.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lavabit.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "le42mars.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "li-ke.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "libnull.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liliang13.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livingworduk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "look.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lookastic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lookastic.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lookastic.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lookastic.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lookastic.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loune.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lukasberan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luripump.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magdic.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magenda.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "makedin.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mathieuguimond.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcyukon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medicoresponde.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meme.institute", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "microco.sm", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mizque.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moe4sale.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mysignal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "narindal.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nasrsolar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neswec.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netconnect.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netcoolusers.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netsite.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nextcloud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nextcloud.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nwwnetwork.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "okay.coffee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "online.marketing", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onlinemarketingtraining.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "open-infrastructure.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "panaxis.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pascalleguern.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pentandra.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pfa.or.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinpointengineer.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pirman.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pitchup.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pmalaty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "powermeter.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "princesparktouch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "profection.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "progress-linux.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qivonline.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raphael.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rose-prism.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roseitsolutions.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "s007.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sansonehowell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sbiewald.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seconfig.sytes.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "server-daten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "settleapp.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shiawasedo.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shitproductions.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sibrenvasse.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simplicitypvp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slimspots.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smdcn.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smoothgesturesplus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sol24.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spodelime.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spotupload.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spydar007.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "staatschutz.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "staatsschutz.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "staatsschutzgesetz.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studiostawki.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sunstar.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tenta.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thermolamina.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thole.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tweakers.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twistapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twistedwave.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "umenlisam.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urbackups.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vanmalland.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "varshathacker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vibrant-america.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vogler.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vyskocil.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wakatime.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "washingtonviews.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "watchinventory.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "watchstyle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webmetering.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weserv.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wikimedia.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winterhillbank.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wmfusercontent.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wolfgang-kerschbaumer.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "works-ginan.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xenophile.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xperidia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yooooex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zenk-security.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zhengjie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zyria.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "00f.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1536.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1ststop.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "4th-ave-studio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "99rst.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acsports.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adamdixon.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adblockextreme.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "addtoany.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adxperience.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aidanmontare.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aiois.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "airhelp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexberts.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "algolia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aljaspod.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alldewall.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alza.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alza.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annejan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ansogning-sg.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "applian.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "armstrongsengineering.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arrow-api.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arrowwebprojects.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arthurlaw.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "artlogo.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "artlogo.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "artlogo.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "artweby.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asadatec.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atelier-naruby.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ateliernaruby.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auditos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "avaaz.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "azlk-team.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "b1c1l1.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "balist.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ballejaune.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bankinter.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beerians.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beetman.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "belani.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "belgers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "belmontgoessolar.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "besola.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bestmotherfucking.website", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beyondtrust.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "billigpoker.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bioknowme.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitvest.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitwolk.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blankersfamily.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blissplan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluefuzz.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brashear.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brave.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brokenhands.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "btcarmory.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bucket.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bunkyo-life.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bwilkinson.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bymike.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bytema.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "c-shock.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cadmail.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calculator.tf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cambier.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "capitalcap.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carauctionnetwork.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carauctionsalabama.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carauctionsgeorgia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cardranking.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caretta.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caroli.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cashplk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cbecrft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cellsites.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "certspotter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "certspotter.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cheapticket.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chelseafs.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chrismcclendon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "christophertruncer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "circara.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "classicalpilates.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clubon.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coin.dance", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "colorcodedlyrics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cometcache.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "computerhilfe-feucht.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "constant-rough.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cookiecrook.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "core-networks.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cornodo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "craigrouse.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crazypaul.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "czechvirus.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daemen.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dataswamp.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "decosoftware.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deroo.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "designsbyjanith.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dicionariodenomesproprios.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diffnow.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digwp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dir2epub.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dir2epub.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "discordapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "distinguishedprisoner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "djangosnippets.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dmarc.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dn3s.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dns-control.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dominationgame.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doomsworld.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doujinshi.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "draugr.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e5tv.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eaton-works.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebankingabersicher.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebankingbutsecure.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebankingentoutesecurite.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebankingmasicuro.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebas.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebataw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebonyriddle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eiyoushi-shigoto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "empathy.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "equidam.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erikhubers.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esoko.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esoterikerforum.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "etv.cx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "euren.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evlear.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "excelgum.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "experteasy.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "extreme-gaming.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "extreme-gaming.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fabriziorocca.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "farhadexchange.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feistyduck.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "findyourvoice.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flashback.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fleep.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "florisvdk.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fluxforge.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foorack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forex.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fran.cr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "francoz.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frappant.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frbracch.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fumblers.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fuseos.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fuyu.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fveevaete.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fxopen.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fxopen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gaestehaus-monika.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamberorosso.menu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gambetti.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gartenplanung-brendes.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gecem.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genesiseureka.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getbooks.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ggmmontascale.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gianproperties.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goto.world", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gracethrufaith.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greenaddress.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greg.red", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grunwasser.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haavard.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hao-zhang.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hardenize.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hartmancpa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hearty.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heavensattic.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hesaplama.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoe.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hollyforrest.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hollyforrestphotography.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hord.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hotornot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "howlongtobeatsteam.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hsivonen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hsivonen.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hsivonen.iki.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "huutonauru.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ich-tanke.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ifsac.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ilamparas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imed.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imgaa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imppac.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "info-beamer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ins1gn1a.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intafe.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intencje.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inthepicture.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inthouse.cloud", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "investpay.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipcareers.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "it-rotter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itactiq.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itsok.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jadopado.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesgreenfield.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeffersonregan.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeffersonregan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeffersonregan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnnybet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonoalderson.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jproxx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "judoprodeti.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "juliangonggrijp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "juliekoubova.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "justpaste.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kabeuchi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kartec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kateduggan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kati-raumplaner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kennedy.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kiadoapartman.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirstenbos.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kjaer.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kkyy.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kncg.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koethen-markt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "komidoc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kommune42.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kshlm.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kuemmerlin.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kuschku.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "labourreedevergheas.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lacyc3.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laextra.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lattyware.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lattyware.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lawrencemurgatroyd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lebanesearmy.gov.lb", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leertipp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leighneithardt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leisure-blog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lew.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lichess.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lintmx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "listminut.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lofttravel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loganmarchione.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lolicon.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lolkot.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luuppi.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lynx.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "macdj.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maisgasolina.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "malinheadview.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marble.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mariviolin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markepps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "martinreed.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "master-net.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "masterdigitale.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcdonalds.design", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mdmed.clinic", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medicinia.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "micbase.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michalwiglasz.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minux.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "movabletype.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moylen.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mustard.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myimmitracker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mypaperwriter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myschoolphoto.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "namu.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neillans.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neons.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neoxcrf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netzfrauen.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neurogroove.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nframe.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nfsec.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "niagarafalls.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nightsnack.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nitrix.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ntotten.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nubu.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ocg-card.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "octod.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "olegon.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "omniverse.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oparl.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openquery.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otvaracie-hodiny.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "outgress.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "outlookonthedesktop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paraborsa.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parser.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pasadenapooch.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "passumpsicbank.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulov.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulwatabe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "payme.uz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "periscope.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pgnetwork.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phpprime.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "placker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "podemos.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pole.net.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pornbay.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "porybox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "praguepsychology.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prinice.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prnav.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prodct.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "propertygroup.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pstrozniak.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "publiccarauctionscalifornia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "publicintegrity.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pypi.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qtpass.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qtpower.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qtpower.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quemmeliga.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quikchange.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qwikdash.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raissarobles.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ralfs-zusizone.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redable.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rediske.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redstoner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reganclassics.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reganclassics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reganparty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reinencaressa.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rentasweb.gob.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "responer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "respostas.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "revealdata.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rewardingexcellence.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "richardlangworth.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robin.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roslynpad.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roughgrain.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rpgmaker.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rsblake.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "runvs.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rynekpierwotny.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "s-mainte.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "safegroup.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "safire.ac.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sail-nyc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saiputra.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "samel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sas-snowboarding.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sauvagebridge.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sb.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schizoids.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schlechtewitze.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schrauger.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schrauger.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schrauger.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schrauger.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schrauger.run", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schreibers.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sealbaker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seo-linz.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "serf.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "servepublic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "servepublic.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "settberg.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shadowsocks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shanetully.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shansing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shansing.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shotbow.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shrub.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "signix.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.kr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simonwoodside.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sistem-maklumat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skepticalsports.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "somanao.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sophiakligys.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sor.so", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "space-it.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spacehost.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spenglerei-shop.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "splitreflection.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sponc.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spricknet.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sptk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "starfm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "starina.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steemit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stephanieschreiber.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stephenhaunts.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stephenschrauger.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stephenschrauger.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strangemusicinc.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "streetspotr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studiomarcella.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suborbital.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sudoschool.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "svendubbeld.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swat4stats.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taler.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teachpeople.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techcultivation.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techmasters.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tenkofx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tflite.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tgbyte.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thelanscape.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thenexwork.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theseosystem.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thomaswoo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thompsonfamily.cloud", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "time2060.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timetotrade.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toleressea.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toles-sur-mesure.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomssl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toutmonexam.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "travisforte.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "travisfranck.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "travler.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tributh.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tumedico.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tyler.rs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tyleromeara.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "udruga-point.hr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uhrenlux.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unblockat.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "underskatten.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unser-gartenforum.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "upplevelse.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "url.rw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utvbloggen.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "v2ex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "validator.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vanwunnik.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "veii.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "verfassungsklage.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "verifyos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vetofish.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "voter-info.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "votoot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wallethub.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "walls.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "watchface.watch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webcamtoy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weblate.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webmandesign.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wereldkoffie.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wint.global", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wireshark.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wirhabenspass.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wodinaz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wp-mix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "writeoff.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xfix.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yoga-school.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zachgibbens.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zilore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zk.gd", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zonemaster.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zoom.earth", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zundappachterhoek.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2.wtf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1pw.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agilebits.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexpavel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acelpb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alinasmusicstudio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alicestudio.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aigcev.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "achtzehn.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ad-notam.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ad-notam.asia", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alecpapierniak.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alphachat.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alextsang.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ad-notam.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abuse.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abe-elektro.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "applemon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "autoauctionsohio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "86metro.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "autoauctionsvirginia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anniversary-cruise.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "artroot.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anna.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aplpackaging.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andreaskrasa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arokha.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexanderschimpf.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1on1on1.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atelierdesflammesnoires.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1on1on1.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "audio-detector.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asbito.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alwaysmine.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ballarin.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asato-jewelry.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alisonlitchfield.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benchmarkmonument.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "armadaquadrat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bartelt.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bagheera.me.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "analyticum.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atom-china.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bartula.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "analyticum.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "analyticum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "analyticum.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "analyticum.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baggy.me.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "batten.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackcatinformatics.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "argekultur.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackcat.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackcatinformatics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beastlog.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "awaremi-tai.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bewerbungsfibel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bemsoft.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beyondalderaan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biboumail.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beijinglug.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blichmann.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackbag.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluex.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluepoint.one", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitmessage.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluex.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluex.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bulario.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bosun.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "africa.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "afghan.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carauctionscarolina.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bpol-forum.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "canva-dev.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluex.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bru6.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bx-n.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cat.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bsw-solution.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "catmoose.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "charlesbwise.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bueltge.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beehive42.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beehive42.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "casbuijs.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "captured-symphonies.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carlosjeurissen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beehive42.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beehive42.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beehive42.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "centrumhodinek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coalpointcottage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chatbelgie.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cheez.systems", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codingrobots.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comdotgame.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudapps.digital", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chatnederland.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "collaction.hk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cookicons.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "classpoint.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cowbird.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bbw.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuddlecomfort.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cheddarpayments.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cnc-lehrgang.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "contrabass.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "confiwall.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "complexart.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuvva.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuvva.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuvva.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuvva.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuvva.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuvva.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuvva.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "convert.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuvva.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "curtis-smith.me.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crvv.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burtrum.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuvva.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dejandayoff.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cormactagging.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dcepler.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darkishgreen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptophobia.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danieljamesscott.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corniche.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darkcores.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danielkoster.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dfctaiwan.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danielmostertman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devcu.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danielmostertman.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domenic.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "designville.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "designville.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dermapuur.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "canadian.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "different.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deepzz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caribbean.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drjoe.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dxgl.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drweissbrot.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dotrox.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "do67.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "do67.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dobrisan.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "christians.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dopesoft.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emilvarga.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elenagherta.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e7d.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dutchessuganda.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ealev.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eighty-aid.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dhome.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cougar.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elisabeth-strunz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "epicenter.work", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ecompen.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deaf.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edv-lehrgang.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "facebook-atom.appspot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "facerepo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "epizentrum.works", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erdethamburgeronsdag.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fanz.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doctor.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "energydrinkblog.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fm.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fiix.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fach-journalist.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "epizentrum.work", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "epicenter.works", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "epicentre.works", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feastr.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flana.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feudalisten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "es-geenen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fixforce.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ff-obersunzing-niedersunzing.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gearset.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fehngarten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getmdl.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fleisch.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fragmentspuren.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gheorghe-sarcov.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ethiopian.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goldminer.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gokhankesici.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geder.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hacker1.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gta-arabs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "giga.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "glasner.photo", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gehsicht.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goetemp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hake.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greencircleplantnursery.net.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iandouglasscott.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gv-neumann.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heiland.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gyu-raku.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helenkellersimulator.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gyas.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guardian360.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guenthereder.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firefighters.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instagram-atom.appspot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hakatabijin-mind.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "honkion.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hacktivis.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hiqonline.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hasselbach-dellwig.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "invoiced.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hilnu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "issforum.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hynek.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "despora.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gveh.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "illicitart.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hraesvelg.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inditip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instagrammernews.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inspired-lua.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imbushuo.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ifsr.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hotelident.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itochan.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "is-a-furry.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ihkk.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jayxon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jabberfr.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jpeg.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jayf.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnmcintosh.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonirrings.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jetkittens.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ignace72.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamessmith.me.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jiyuu-ni.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kalian.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jesseerbach.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kab-s.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jurassicbarkharrogate.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jsteward.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kamikatse.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kpumuk.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lafillepolyvalente.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lafillepolyvalente.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kuehndel.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "largeviewer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kyochon.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kki.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koertner-muth.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "komicloud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kumalog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonas-thelemann.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "italian.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kurswahl-online.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kriechel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lefebvristes.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lefebvristes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leseditionsbraquage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livi.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "listahu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klebetape.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lirion.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leanplando.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lernorteuropa.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karachi.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lernorteuropa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livedesign.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lernorteuropa.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linqhost.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lanuovariviera.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lookasik.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luxvacuos.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luce.life", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lunarlog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lemarcheelagrandeguerra.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "korea.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ludwiggrill.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "litfin.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lunapps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laos.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "latino.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mdxn.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mdx.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mawidabp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "makkusu.photo", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ls-alarm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcea-hld.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "machtweb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikecb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "menzietti.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mainzelmaennchen.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marcelsiegert.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mdcloudps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mechmk1.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "microlog.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mobio.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "map4erfurt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mediamarkt.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magnets.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miegl.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mind-hochschul-netzwerk.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mobilewikiserver.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mijnstembureau.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mariemiramont.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mirkofranz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mail-rotter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mingram.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "map4jena.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mistreaded.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "msh100.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "megamisja.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mkoppmann.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "london.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mybb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "molb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mojzis.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mojzis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mscc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miui-germany.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mmalisz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "malaysian.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mncloud.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mihnea.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "megumico.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "murgi.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mini-piraten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "networth.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nien.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "longhorn.id.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nitropur.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "northpole.dance", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nerdpol.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ni-mate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nhome.ba", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oddnumber.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nickstories.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "notnize.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moparscape.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oppaiti.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nfe-elektro.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oddsandevens.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nothing.net.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nrkn.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "niederohmig.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oddsandevensbookkeeping.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nemo.run", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "musician.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "muslim.singles", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "notabug.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "patrickaudley.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "octofox.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paudley.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paudley.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "patrickaudley.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nsm.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oeh.ac.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "organicae.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "obtima.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orrs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pandymic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "percy.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nvr.bz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parckwart.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paw.cloud", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "osacrypt.studio", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otrm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "passvau.lt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "npm.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pasternok.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pavelrebrov.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "promisesaplus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pegas-studio.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "picturingjordan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pretzelx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pixiv.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otakubox.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pmklaassen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prowise.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "petmall.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pet-hotel-mura.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "privea.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "polaire.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "put.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pvpcraft.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prado.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pcnotdienst-oldenburg-rastede.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "punikonta.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "r2d2pc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "radreisetraumtreibstoff.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "randomkoalafacts.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rohitagr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qtvr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "restrealitaet.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reinhardtsgrimma.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riceadvice.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reichl-online.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prometheanfire.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prometheanfire.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rolandszabo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saorviewconnect.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rylin.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rocssti.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rxbn.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sd.af", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rq-labo.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rleh.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scriptjunkie.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rowlog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "royal-rangers.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schnapke.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seewhatididhere.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sec.ec", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rdl.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "satmd.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "romanpavlodar.kz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schildbach.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sentry.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sech.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sidepodcastdaily.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "significados.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shux.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sciencesolutions.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "salsa-straubing.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sebi.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sidepodcast.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seitenwaelzer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "semox.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skyline.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sking.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sexy-store.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "senzaparole.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "somethingsimilar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "severntrentinsuranceportal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smalltalkconsulting.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sgtcodfish.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "splunk.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scandinavia.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sinquin.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slapen17.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sitc.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "startpage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sm.ms", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stammtisch.domains", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "storyland.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sobieray.dyndns.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soe-server.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seemeagain.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strahlende-augen.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "softwerk-edv.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stageirites.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "solit.systems", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spom.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "streetview.wien", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steklein.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "straubis.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tdude.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stuermer.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stageirites.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tammy.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sps-lehrgang.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tamchunho.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tchebb.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sw-servers.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stair.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sweep-me.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tetrarch.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studiostudio.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tenderstem.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tege-elektronik.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "streetdancecenter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teracloud.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thaihomecooking.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suburban-landscape.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teampaddymurphy.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thexme.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thegreatplains.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timnash.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thues.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ti-pla.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmm.cx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobiasconradi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "southamerican.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tenshoku-hanashi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "todoescine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thomasvochten.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taiwan.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tunnelwatch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sydney.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transferserver.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "travelogue.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuxie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timvandekamp.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unrealircd.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ticfleet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toool.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tattoo.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "veryapt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uiop.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "troianet.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vostronet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thai.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unpkg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ushare.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vdownloader.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unixattic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "van11y.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vloeck.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tokyo.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "udo-luetkemeier.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ufindme.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wawak.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wowjs.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "visalogy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wowjs.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vician.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whatwebcando.today", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wowjs.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viewsea.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vaur.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wein.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tokaido-kun.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xuyh0120.win", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "willi-graf-os.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weissman.agency", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wearepapermill.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wollwerk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--v-wfa35g.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weiterbildung-vdz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xfrag-networks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xclirion-support.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yaup.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zten.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--rt-cja.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "www.sb", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yestees.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zanthra.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wselektro.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ypid.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unrelated.net.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yeswehack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zakr.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zbyga.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wsgvet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vietnamese.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zary.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zund-app.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zulu.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ameego.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ameego.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alyoung.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionist-society.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ameego.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abilma.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amineptine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ahelos.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akr.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "9449-27a1-22a1-e0d9-4237-dd99-e75e-ac85-2f47-9d34.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1se2or3.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ameego.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ameego.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aegrel.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "3dmedium.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aimeeandalec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "32h.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acara-yoga.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alumni-kusa.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "american.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benhaney.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abc-rz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andre-otto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bestgiftever.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "basyspro.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aykutcevik.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "artioml.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arminpech.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "birzan.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beulen.email", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "491mhz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benhavenarchives.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrewin.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asphyxia.su", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amsterdamian.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burgers.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bieser.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "borowski.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "britton-photography.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitstorm.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "backpacker.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bluepostbox.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buonventosbt.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calendarr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "builtwith.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bruckner.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bxp40.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clr3.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "breckle.com.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "christensenplace.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "charliehr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chinawhale.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "consumerfiles.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chosenplaintext.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "console.rest", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biltullen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chriscarey.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "conjugacao.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carriedin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coccolebenessere.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "avus-automobile.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crackstation.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cavzodiaco.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coincoin.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cosmundi.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuetoems.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cybersmart.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cooldan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cvv.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "csabg.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dadrian.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chinacdn.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clubeohara.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "curtissmith.me.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "databutlr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davidpearce.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cybersins.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "defuse.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutz-individuell.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "develux.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "defiler.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitaldeli.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dlitz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dormiu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitaldeli.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dailybits.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitaldeli.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dark-vision.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dzndk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drsturgeonfreitas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danarozmarin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dent.uy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebiografia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dinmtb.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dwtm.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "disabled.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "en-booster.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ds67.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "engg.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ericoc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "effex.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dyrkar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "especificosba.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "easyfiles.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eridanus.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exceptionalservers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "estonoentraenelexamen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europapier.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europapier.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "etheria-software.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fastconfirm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "felixseele.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eve0s.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "festivaljapon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "filmatiporno.xxx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eynio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exactphilosophy.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foxontheinter.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flagburningworld.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dintrafic.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "farmer.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "famcloud.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fluxoid.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fluffycloud.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "florian-bachelet.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "el-cell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freelancehunt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "friet.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "g2pla.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "funtime.kiev.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gene-drive.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getidmcc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "faq.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "followthatpage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geertswei.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "godrive.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geofox.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greyskymedia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greger.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getsecure.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goshawkdb.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gothic.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greek.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hayai.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guildgearscore.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "harrysmallbones.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gpcsolutions.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helden-spielen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "happist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hedweb.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haoyugao.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hedweb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hentschke-betonfertigteilwerk.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hedweb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hm1ch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "herbweb.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "herbweb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hunter.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hsts.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helsinki.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haens.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "howsecureismypassword.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "huxley.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hogl.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "igglabs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "invasion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "icodeconnect.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hyperreal.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "innermostparts.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesbillingham.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hycken.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "indigosakura.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inoa8.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jarondl.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iruca.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inline-sport.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipsilon-project.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnvanhese.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jani.media", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jhuang.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itchy.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jiyuu-ni.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipty.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "igiftcards.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jakarta.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kaffeekrone.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kcsordparticipation.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jongbloed.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kayleen.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kualo.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kfz-hantschel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kualo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kualo.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kongar.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kleineanfragen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "legalrobot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kydara.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeproteste.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lasereyess.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kanaete-uranai.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "layoutsatzunddruck.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leola.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "le-bar.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "krizevci.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "link-sanitizer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leola.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kultmobil.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "levelum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loqu8.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lebihan.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lindeskar.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "litz.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "litzenberger.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lrssystems.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lantian.pub", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lona.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "localspot.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lockpick.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "m2os.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ludikovsky.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lowsec.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "manja-und-martin.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marianatherapy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "managementboek.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mdma.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marmotte.love", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lockpicks.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minimvc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mediadex.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michaeltruskowski.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "momentumdash.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minitruckin.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mimemo.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medialab.nrw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miguelmoura.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miraidenshi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mundodasmensagens.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "migueldemoura.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moonshyne.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mypillcard.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mojzisova.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myoukochou.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikalikes.men", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neuroethics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nullroute.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nikandcara.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nachtmuziek.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ocf.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nicolas-hoizey.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "new-process.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "new-process.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nicolas-dumermuth.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "new-process.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oslinux.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "obg-global.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nursejj.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oeko-jahr-jubilaeum.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "odifi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paw.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pensacolawinterfest.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nettx.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "okusiassociates.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "odtu.lu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noctinus.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "partecipa.tn.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nunomoura.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "patrz.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "persson.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "postmatescode.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pissblau.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "preisser.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pokefarm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "platten-nach-mass.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qotw.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinklecfest.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "playanka.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "principia-online.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "presbee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "praeparation-keppner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rationalism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reilly.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oticasvisao.net.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "q-inn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "q-inn.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "president.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rte.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pyspace.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rpherbig.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robjager-fotografie.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "salesflare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rip-sport.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rosset.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rocketr.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saorviewconnected.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rosset.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rio-weimar.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saharmassachi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proposalonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sb.sb", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ryanbritton.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sahar.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qul.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scooterservis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schuler.st", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schunako.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rtho.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sexpay.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schutzwerk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schamlosharmlos.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rowankaag.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sinonimosonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "retube.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schwabenhaus-ka.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seyfarth.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shazzlepro.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "si.to", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sorenstudios.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simonhirscher.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spamloco.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssky.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "supercentenarian.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soulmate.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "technosorcery.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sport-potreby.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sport-potreby.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stening.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slangbellor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strategie-zone.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suki.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "takumi-s.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thedocumentrefinery.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teahut.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stilmobil.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thesaturdaypaper.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "telling.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tianeptine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tenisservis.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tarsan.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "themonthly.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tadu.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suevia-ka.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sectest.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timewasters.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobi-mayer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transitownplaza.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomm.yt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utilitarian.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utilitarianism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tursiae.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unxicdellum.cat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "truckersmp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uli-eckhardt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wangqr.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uswitch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "velen.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ureka.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weibomiaopai.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "waschpark-hantschel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whipnic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "violin4fun.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vksportphoto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wsdcapital.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "verliefde-jongens.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "woohooyeah.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "voidpay.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vmis.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wyday.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--pq1a637b.xn--6qq986b3xl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wuji.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yourciso.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xtarget.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "z99944x.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--ruanmller-u9a.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yhrd.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zeel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yuki.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wumbo.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rvsbevestigingen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "afva.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "accelerateyourworld.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1600esplanade.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "9yw.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionistsociety.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abulanov.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0xda.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acwcerts.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "11urss.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aitosoftware.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agenda21senden.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adrinet.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aimotive.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amcfirst.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amphetamines.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "analyticsinmotion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anotherfatgeek.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "animal-rights.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexdaniel.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ankiweb.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apple.ax", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arigato-java.download", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0o0.ooo", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ami-de-bastanes.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anti-radar.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alupferd.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arados.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asafilm.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ariacreations.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arab.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atom86.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arnaudb.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ascgathering.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "axg.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "avepol.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asia.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aubio.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "autoparts.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "autoparts.wf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bdd.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atraining.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "autoentrepreneurinfo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bankbranchlocator.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auditsquare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apretatuercas.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "avepol.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auriko-games.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "babymasaze.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "axiomer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "australian.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atypicom.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atypicom.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "autosiero.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aviationstrategy.aero", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bicha.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barburas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "b-landia.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asr.solar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bibliaon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atypicom.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beauty24.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biointelligence-explosion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biopsychiatry.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "block-this.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bltc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bltc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "btorrent.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brettcornwall.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackphantom.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brianalaway.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "backschues.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brickftp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackdown.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brandtrapselfie.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brianalawayconsulting.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biker.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bgkoleda.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "black.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "birgit-rydlewski.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bool.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boudah.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ca-key.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brege.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brie.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brauingenieur.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brazilian.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bugwie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carbon12.software", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cacao-chocolate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "batonger.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caylercapital.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cannabis-marijuana.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carbon12.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "charcoalvenice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "charlottesvillegolfcommunities.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bogner.sh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "c4539.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caputodesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cesdb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "centrationgame.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cambodian.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ceciliacolombara.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "casc.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caletka.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cfan.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "catholics.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cgan.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudoptimus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chewey.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clipclip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chewey.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chenky.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "computer-acquisti.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "claimit.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "catenacondos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coreyjmahler.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "congineer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudia.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "computerbase.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cookie4.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crustytoothpaste.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "criminal.enterprises", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "collectdocs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "colombian.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "combron.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corona-academy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crisp.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cubekrowd.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dalingk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cubecraft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "david-pearce.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cube-cloud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "defero.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cybertorsk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "das-sommercamp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "de-rwa.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deltava.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dbas.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bstoked.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dcl.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "db-works.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diferenca.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dicionariodesimbolos.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deitti.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "der-bank-blog.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deutsch-vietnamesisch-dolmetscher.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dicionario.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "desu.ne.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dbox.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digiarc.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dooleylabs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deurenfabriek.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dogmap.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dress-cons.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "directnews.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitalbitbox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drummondframing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dulei.si", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dokelio-idf.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doma.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drighes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dotplex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dragfiles.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e-standardstore.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "duncanwinfrey.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "droni.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drgn.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elementalsoftware.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elementalsoftware.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "entabe.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "energyaupair.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enuchi.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ennori.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "egw-ceramica.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enginepit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "epsilon.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "entheogens.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "entactogens.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "encode.host", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elektro-koehl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "extensiblewebmanifesto.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ericairwin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "extensiblewebsummit.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erythroxylum-coca.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "estcequonmetenprodaujourdhui.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "facebook.ax", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "escapeplaza.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evafojtova.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "endlessvideo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ficlab.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exs.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exploited.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "farmacia.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flooringnightmares.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "earticleblog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erstehilfeprodukte.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europapier.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "easyocm.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europapier.hr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firesofheaven.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "etath.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europapier.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europapier.si", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europapier.rs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europapier.ba", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europapier.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feld.saarland", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fachschaftslisten.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fotella.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fojtova.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flauschig.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fojtovi.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frostwarning.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foolip.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frolova.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foo.hamburg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gaireg.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forstbetrieb-hennecke.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamingexodus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foej-aktiv.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fullbundle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flymns.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fresh.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gebn.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foto.by", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gene-drives.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "general-anaesthesia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geti2p.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "farmkazuto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "garystallman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "graphene.software", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gradients.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gracetini.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hackerone.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "google.ax", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hallucinogen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geekwithabudget.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ginnegappen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "git-stuff.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gza.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "henry.gg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gruenes-wp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getpublii.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "habtium.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gruene-wattenscheid.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "group4layers.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grumpy.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goanalyse.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hedonistic-imperative.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hamacho-kyudo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmod.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guso.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goombi.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hipercultura.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feuerwerksmanufaktur.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hardtfrieden.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "https.jetzt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "headshotharp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "http2.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hr98.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hidbo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hydronium.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hydronium.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hydronium.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hydronium.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hybridworx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hybridworx.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hybridworx.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hybridworx.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hszemi.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grabi.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hanzubon.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hybridworx.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hotelflow.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hvh.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ilhansubasi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iiong.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "internetovehazardnihry.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intercom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "informatik-handwerk.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "interchanges.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "info-screen.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inima.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ihrhost.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "internetcom.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "integralblue.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ikulist.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipv6.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "installgentoo.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamhost.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "interracial.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ithakama.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipv4.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ifengge.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "istschonsolangeinrente.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ithakama.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "irish.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jdtic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iphoneunlock.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jjj.blog", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "irmgard-woelfle.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jps-selection.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jps-selection.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jordans.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kerijacoby.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jcwodan.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joscares.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jakobssystems.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klickstdu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "k-scr.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karlis-kavacis.id.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeannelucienne.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kafoom.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kalterersee.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kokumoto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirchengemeinde-markt-erlbach.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "institutulcultural.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jobseekeritalia.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kuketz-security.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kuketz-blog.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kub.hr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kotilinkki.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laughinggrapepublishing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "legible.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lazowik.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laubacher.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kodak-ism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lifanov.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lemuslimpost.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lexicography.online", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "languageterminal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lexico.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kvetinymilt.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liquidhost.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linux-florida.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lidl-shop.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liftie.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lidl-shop.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linss.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livejasmin.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loforo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "librervac.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lunarsoft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kofler.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "limawi.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lostserver.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lukas-schauer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lukas2511.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luzfaltex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lizhi.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lvmoo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mansdell.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matthi.coffee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "m132.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "masterdemolitioninc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lila.pink", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "materialism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marriage-shrine.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mediaarea.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "margagriesser.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matthias-muenzner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "metsasta.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matanz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mescaline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "martine.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "locauxrama.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "med-otzyv.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markuskeppeler.no-ip.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "martonmihaly.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mathieui.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mimocad.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meldcode-assistent.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miraheze.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "melbourne.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mika.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mobileread.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michaelpfrommer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minitrucktalk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mexican.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mailon.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moodfoods.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klva.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mondedie.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mticareportal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moefactory.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mybicc.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mobisaar-cloud.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mundschenk.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moechel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "misoji-resist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myanimelist.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kinmunity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newday.host", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newtrackon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neurobiology.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nashira.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mush-room.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neuropharmacology.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nf9q.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mysqldump-secure.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nadyaolcer.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "namereel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mydebian.in.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neatous.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "niklas.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "no-ip.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nietzsche.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newind.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "numberzero.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netwarc.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nootropic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neartothesky.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noisyfox.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oheila.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "octolopagon.games", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "numista.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ofggolf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "not-a.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nurses.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "osburn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "otmns.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "olivierpieters.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oxytocin.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oeko-bundesfreiwilligendienst-sh.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oeko-jahr.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oeko-bundesfreiwilligendienst.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "panpsychism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "notcompletelycorrect.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paradise-engineering.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ordernow.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "passthepopcorn.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oskuro.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orkestar-krizevci.hr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peyote.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phcorner.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pic2map.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "piratesforums.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulswartz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pavelfojt.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pdfresizer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perzeidi.hr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ourai.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulrotter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "physicalism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinpayments.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulrobertlloyd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "piem.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "physicalist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peterhuetz.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "procrastinationland.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "practodev.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prideindomination.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "primates.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peterhuetz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "politik-bei-uns.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "principia-journal.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "practicepanther.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "posaunenchor-senden.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pmsf.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "psychedelics.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "principia-magazin.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "presscenter.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "psychedelia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "psychoactive.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rally-base.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rasagiline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "questsocial.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quarterfull.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pyrotechnologie.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "regolithmedia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proggersession.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "progarm.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raymondelooff.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "recurly.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reptrax.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "purplepr.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "repugnant-conclusion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reproductive-revolution.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rc-offi.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "printeknologies.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "renearends.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "respon.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rogerriendeau.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roelof.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rivlo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robust.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rootusers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sa.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sadbox.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sadbox.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rickrongen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rem0te.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openkim.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "righettod.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riverbanktearooms.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruska-modra.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruskamodra.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "muckingabout.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruhrnalist.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rullzer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scryfall.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saxoncreative.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scepticism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "savageorgiev.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "selegiline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sandrolittke.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sandmarc.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sensualism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sensebridge.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rubyquincunx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "self-evident.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sanderkoenders.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sendonce.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shenghaiautoparts.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sensepixel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sanderkoenders.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "satai.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "senarius.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schwarztrade.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "server-essentials.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simeonoff.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silverlinkz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sims4hub.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sit.ec", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simonsmh.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sirtaptap.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shipard.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sinonimosonline.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sinonimos.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skory.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shiftdevices.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shaken110.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shadowguardian507.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simsnieuws.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slo-tech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sikevux.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sh-heppelmann.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seogeek.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sozon.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sostacancun.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "southernmost.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skolem.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slink.hr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soundeo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "srandom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skydragoness.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "southafrican.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "starka.st", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssls.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spiritual.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "st-kilian-markt-erlbach.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sports.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sport-in-sundern.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "siamsnus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swineson.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "superhappiness.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "subdev.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sorincocorada.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "technologysi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "st-news.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stravers.shoes", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teacherph.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "texus.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "supersu.kr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "texby.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stephan-matthiesen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thedronechart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swiftqueue.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tequilazor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swisslinux.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theoscure.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timdoug.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "todapolitica.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tampabaybusinesslistings.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thebrightons.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thephp.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thetrendspotter.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tloxygen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ti-planet.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tokio.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmberg.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmberg.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "torretzalam.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toretame.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmberg.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmberg.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trafarm.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmberg.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "togetter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomnatt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "traista.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tom-kunze.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toonpool.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomabrafix.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toool.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuxlife.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "topdesk.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twitter.ax", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "truetrophies.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "truesteamachievements.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transfer.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unli.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "turkrock.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "touchoflife.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ttuwiki.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonyw.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ttuwiki.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vavel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tumagiri.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uctarna.online", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utilitarianism.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uk.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unixforum.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vanhove.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "valeriansaliou.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "visikom.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "volkswurst.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vmug.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "volto.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vokativy.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ursuslibris.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ve3oat.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "voyageforum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "verberne.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "websecurity.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "willfarrell.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "willstamper.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "w3ctag.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vjeff.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vbazile.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wane.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vulnscan.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wireheading.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "veganism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wahrnehmungswelten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "widsl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wigggle.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "w-w-auto.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yahoo.ax", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wiz.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--rdiger-kuhlmann-zvb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zeronet.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "x-iweb.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--allgu-biker-o8a.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wr.su", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yuwei.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yingatech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zabszk.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yourcopywriter.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yame2.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uygindir.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yourcomputer.expert", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zigzagmart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "woontegelwinkel.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yobai-grouprec.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yotubaiotona.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zojadravai.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yuricarlenzoli.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zoigl.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zorasvobodova.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "advaithnikhi.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "advaithnikhi.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1cover.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "3v4l.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adurra.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aalalbayt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aextron.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adorecricket.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aextron.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aalalbayt.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aextron.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adrienkohlbecker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1e9.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1panorama.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allcloud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "4u2ore.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akalashnikov.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "advokat-romanov.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ampersandnbspsemicolon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anchev.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anitklib.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anantshri.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andersonshatch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aqualife.com.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apoly.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alpineplanet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "appuals.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "altunbas.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aidhan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "appartement-andrea.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andruvision.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2krueger.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "archlinux.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ativapsicologia.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arjweb.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "artlantis.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agate.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anders.hamburg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "archivesdelavieordinaire.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abeontech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asinetasima.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "azrazalea.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "attilavandervelde.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "avdagic.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auerbach-verlag.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ave.zone", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asseenfromthesidecar.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baselang.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auplidespages.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bangkok-dark-night.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bearden.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "attitudes-bureaux.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "awksolutions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "awaro.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arqueo-ecuatoriana.ec", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bashstreetband.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betseybuckheit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bhodisoft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "balinese.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benjamindietrich.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benjamindietrich.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitsafe.com.my", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitbucket.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitbucket.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bassblog.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bina.az", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bodygearguide.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bltc.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bien-etre-sante.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bestwebsite.gallery", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blockxit.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "berdu.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betterscience.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bremensaki.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bazziergraphik.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bienoubien.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bruun.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bottineauneighborhood.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bibuch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blogaid.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burke.services", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boss.az", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "britneyclause.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bolektro.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bytebucket.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calendarsnow.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bratvanov.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "capitolpathways.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonnsustainabilityportal.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bizedge.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buricloud.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cadooz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cbdev.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caroli.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "britishbookmakers.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chbs.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cavern.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackedbyte.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cermak.photos", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "christopherpritchard.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "citizensleague.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cocoamexico.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudoptimizedsmb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cocinoyo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chytraauta.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cles.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chrisnekarda.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chanz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "copyright-watch.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "channellife.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "channellife.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coding.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cnbs.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cpy.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ctrl.blog", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clubempleos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cupom.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "d0g.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "d8.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coolgifs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datememe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "creativeweb.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "criminal-attorney.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "defendinnovation.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dcrdev.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dachdecker-ranzenberger.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dbaron.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deaf.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dachdeckermeister-egon-weiss.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chrisdecairos.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "desertsounds.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "demonwolfdev.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dee.su", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "demonwav.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danmaby.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deprecate.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devel.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danla.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datenwerkstatt.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "derwaldschrat.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datacenternews.asia", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "die-sinlosen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "docloudu.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dipling.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "creditos-rapidos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datacentrenews.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drawvesly.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "douzer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "duckbase.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dracisvet.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "educationevolving.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dprb.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doli.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebooki.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eickhofcolumbaria.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domaxpoker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eloxt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eilhan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diymediahome.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eigpropertyauctions.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elektro-diehm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elektro-pfeiffer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elektro-hornetz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ehazi.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eddesign.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elektro-liebeskind.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elektrofinke.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elektro-hammes.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "egiftcards.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "embraceni.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitalarchitecture.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elektro-hofmann-gmbh.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elektro-rossbach.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dungeon-bbs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elektro-woerdehoff.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elektrokarges.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eichel.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "escavador.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "envant.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erudicia.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ejdv-anmeldung.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elektro-stock.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erudicia.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erudicia.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ensons.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erudicia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erudicia.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erudicia.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erudicia.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erudicia.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elektrometz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "facialexercising.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erwin.saarland", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europapier.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ewanm89.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europeantransportmanagement.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fabianackle.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ewanm89.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europapier.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ewanm89.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "euroscot.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europeancupinline.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "faehler.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fernandobarata.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "f43.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fairedeseconomies.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "familie-remke.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feminina.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fettbrot.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drjacquesmalan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fliptable.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fleetssl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fireportal.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "follandviolins.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freesolitaire.win", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fidhouriet.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frattaroli.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frau-sucht-bauer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fnof.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fondationwiggli.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fruition.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fpersona.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "froggitt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fritteli.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "furnfurs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freebetoffers.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "for.care", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gadgethacks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frigolit.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ettebiz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "garageenginuity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ftang.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forestraven.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geekpad.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fwest.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "funken-networks.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geiser-family.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gittr.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "glazedmag.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "girvas.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "glueckskindter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gensonline.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gorn.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haiboxu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gierds.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grondius.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gotoxy.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "halyul.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gypsyreel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gutscheingeiz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hayfordoleary.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "havefunbiking.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hash.works", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hashiura.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gymkirchenfeld.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hampl.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hike.pics", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hexieshe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "holoxplor.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haus-garten-test.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hardyboyplant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heckelektro.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hitterfamily.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hitter-lauzon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "higilopocht.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hitter.family", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heello.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heldenhalde.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hostadvice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "herdserv.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heliosnet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heptafrogs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "herni-kupony.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "howtogeek.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iamtheib.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hyperion.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "htmlyse.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ibacktraced.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "http2.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hotel-rosner.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "horackova.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hrdns.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hloe0xff.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hugi.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ih8sn0w.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imoner.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hyphen.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "impotsimple.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ifamily.top", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoken-wakaru.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "info-sys.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ilard.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hyphenpda.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "illich.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "infosoph.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imagine-programming.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "infoduv.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "infotune.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "initramfs.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inet.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "immobilier92.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "internetoffensive.fail", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itsstefan.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isolta.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isolta.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isolta.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intoparking.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isolta.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jaalits.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isolta.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jdoi.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iroise.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "icmp2018.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "huangjingjing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jfr.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jcaicedo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joostvanderlaan.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joshuajohnson.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jomo.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonscaife.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itbrief.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itbrief.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "journeytomastery.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imrunner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joelfries.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "julianvmodesto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jakubvrba.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "julientartarin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jarroba.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "josef-lotz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jenolson.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jreb.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kankimaru.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kidsforsavingearth.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imrunner.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kearney.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kehlenbach.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kluck.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hm1ch.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "knightsbridge.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kimsufi-jordi.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kodexplorer.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "k9swx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kidtoyshop.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kiddyboom.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koelnmafia.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "groovygoldfish.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kupiec.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klarika.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kulivps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kleinreich.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kubkprf.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kimotodental.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "knowdebt.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kuponydoher.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koenigsbrunner-tafel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lauzon-hitter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ktbnetbank.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laraeph.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kupferstichshop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kretschmann.consulting", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laserplaza.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laserplaza.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "le-controle-parental.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "krestanskydarek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lifecoach.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lonesomecosmonaut.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lidl-gewinnspiel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loganparkneighborhood.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lostwithdan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "likegeeks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lojj.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lojamagicalx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lknw.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kinepolis-studio.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lirnberger.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "longstride.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "logitel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linux-mint-czech.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "litebits.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "majid.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "likehifi.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magictable.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maceinturecuir.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marcosteixeira.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matlss.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luxinmo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matillat.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mi80.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mensagensdeconforto.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marcgoertz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "melpomene.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maths.network", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linkycat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mileme.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mdosch.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "memoryex.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meine-immofinanzierung.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikegerwitz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luftbild-siegerland.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minnesotareadingcorps.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michalspacek.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meteosmit.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "milenaria.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mmogah.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michael-steinhauer.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miklcct.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "millefleurs.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "modafinil.wiki", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mivzakim.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mrd.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mozilla.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "morchstore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "muchohentai.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "murakami-sah.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "memoire-resistance-ariege.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "motoryachtclub-radolfzell.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mozzez.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myusagepayments.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nbari.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikkelvej.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mycr.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mystic-welten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mysteriouscode.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neocities.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mumolabs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "namrs.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nankiseamansclub.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neave.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nalepky-na-zed.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nesolabs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nalepte.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newbieboss.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neko-nyan.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nautsch.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nadejeproninu.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netdex.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nidsuber.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noncombatant.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nellen.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noagendahr.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nginxyii.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neolaudia.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nicolaszambetti.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netbears.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noexec.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nstd.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ngvf.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netguide.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nitrokey.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oceanvisuals.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "one-tab.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "musehelix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ohyooo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openrealestate.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "online24.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oelsner.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oemwolf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ocolere.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onhub1.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "olivernaraki.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neyer-lorenz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "olightstore.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "open-letters.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "outsideconnections.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "optik-trosdorff.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oktime.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orion-universe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oulunjujutsu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "payfazz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "open-sauce-recipes.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "os-s.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulov.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulov.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "omsdieppe.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nuevaimagenpublicidad.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pctrouble.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pcgamingfreaks.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peercraft.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "outdoorfurniture.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "philippkeschl.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "popkins.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "popkins.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "popkins.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "popkins.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "popkins.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plzh4x.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perm4.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pmoreau.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "preciscx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phuket-idc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "poshsecurity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phelx.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "polytarian.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prepaidgirl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "premiership-predictors.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pikeitservices.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "obscur.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "projectnom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "privasphere.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proteus-eretes.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qetic.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pfeuffer-elektro.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qrpth.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raulrivero.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phototravel.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rescms-secure.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redcorus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "researchgate.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reha-honpo.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quentinchevre.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rasty.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "respectmyprivacy.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "respectmyprivacy.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perd.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rlove.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riesheating.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "respectmyprivacy.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robertattfield.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "recolic.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robinlinden.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rodzina-kupiec.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reichelt-cloud.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reality.news", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roelhollander.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "romarin.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reinaldudrasfamily.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riverweb.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sanatorionosti.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roelsworld.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "racunovodstvo-prina.si", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruwhof.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rudolph.life", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scenicbyways.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "salon-minipli.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sdho.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sarink.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sdns.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "secundity.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sectelligence.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saz.sh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shareoffice.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sfirat-haomer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sapac.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shadowsocks.com.hk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rezultant.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shimi.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shadowsing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skifairview.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securitybrief.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sijimi.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sivyerge.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securitybrief.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slanterns.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rodneybrooksjr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simbeton.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shower.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shopatkei.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "somuchbetterwithage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "siegemund-frankfurt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sopher.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sportsmansblog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sole-erdwaermetauscher.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securitybrief.asia", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snippet.host", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sorex.photo", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "somweyr.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stickies.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "srroddy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sotoasobi.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spiritualife.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "streets.mn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sit-brn.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spoofhaus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stickswag.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sugarshin.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sporter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stadtplan-ilmenau.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stonystratford.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studiograou.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stern.koeln", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strobotti.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tallcraft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sunfox.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stellarium-gornergrat.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sweharris.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stephenskory.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studium.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stopthethyroidmadness.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stkeverneparishcouncil.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teaser-trailer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tangel.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tecnimotos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tecnoarea.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tesche.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "technologie-innovation.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "team-azerty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tecnodritte.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theyear199x.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "throttlerz.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techday.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techday.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techday.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theclimbingunit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tatara.ne.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobiassachs.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thesignalco.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thepiratesociety.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trailforks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobyx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobiashorvath.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transformaniatime.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobyx.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobiashorvath.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobyx.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobyx.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tovare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trio.online", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "too.gy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trafficmanager.xxx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "todaymeow.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thomalaudan.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "troyfawkes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ushandbookapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ukooku.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuning-werkstatt-nuernberg.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ueberwachungspaket.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "turkish.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urlscan.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urban-culture.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utw.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tkonstantopoulos.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ventizo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vintageportgifts.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "violetraven.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wasatchconstables.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vallei-veluwe.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vagabond.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "villasforsale-bali.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weils.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vinarstvimodryhrozen.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "web404.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wifipineapple.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wahrnehmungswelt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whiteink.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "werner-ema.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wonderhowto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whisky-circle.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "worldsgreatestazuredemo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wellness-gutschein.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "visaop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xkcd.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wilane.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winter-elektro.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xgn.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn----8hcdn2ankm1bfq.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wpandup.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wtpmj.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--berwachungspaket-izb.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youdungoofd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yohanesmario.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zhen-chen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yd.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xvt-blog.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zwartendijkstalling.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zawo-electric.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yourgames.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zootime.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ziroh.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zootime.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ziegler-heizung-frankfurt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zivava.ge", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zymmm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0x00ff00ff.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "100kredite.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "112hz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1kmi.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "281180.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2fraud.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "3ags.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abhisharma.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abundent.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aktivace.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alghanimcatering.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alix-board.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allamericatrans.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alphapengu.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alpharotary.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anankecosmetics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apu-board.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arvindhariharan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arvindhariharan.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aux-arts-de-la-table.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bagiobella.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bakkerinjebuurt.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bayer-stefan.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bayerhazard.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "belegit.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benabrams.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bernd-leitner-fotodesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bernd-leitner-fotodesign.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bernd-leitner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bettflaschen.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brandonhubbard.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brio-shop.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "budolfs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buildbytes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burcevo.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caketoindia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calaad.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "campertrailerfinance.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cathosa.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "censurfridns.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "censurfridns.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "certificatedetails.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cf-ide.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chartsy.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chat40.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chiaseeds24.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "churchwebsupport.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ckennelly.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "classics.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coconutoil24.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "colaborativa.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "controlbooth.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cphpvb.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "creativeink.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "creators-design.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "csvalpha.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danielstach.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daracokorilo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davidschadlich.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dclaisse.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deadc0de.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deidee.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deleidscheflesch.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "der-gardinenmann.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diemattels.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digdata.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dominomatrix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dooby.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dosenkiwi.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doska.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dragon-hearts.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drheibel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dylankatz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "earlyyearshub.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ensage.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "escael.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ezgif.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "faldoria.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fantasyspectrum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashionweekweb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fastworx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fckd.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ffprofile.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "figura.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "film-tutorial.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "filterlists.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firstfinca.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "floffi.media", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foej.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forexchef.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forstprodukte.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forty-two.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foto-leitner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foto-leitner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fotoleitner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fotoleitner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fotostudio-leitner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fotostudio-leitner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "found.website", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fragstore.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freeinoutboard.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fruchtikus.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "g10e.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gaku-architect.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "galinas-blog.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "garda-see.mobi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gargazon.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geekzone.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gelb-computer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gfk-kunststoff-luebben.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "girlan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "glamour4you.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gratis-app.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guesthouse-namaste.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guim.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gulleyperformancecenter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "handleidingkwijt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "happyagain.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heimonen.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hennecke-forstbetrieb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "highspeed-arnsberg.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hobby-drechselei.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoesnelwasik.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "holzspielzeug-shop.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoto.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hypothes.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iclinic.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iconomi.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inglesnarede.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iostream.by", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipfirebox.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jacobi-server.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jahanaisamu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jan-rieger.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "janjoris.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "je2050.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jekhar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jnm-art.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joa-ebert.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnroberts.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joshua-kuepper.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "justgalak.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jwatt.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "k258059.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karabas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karneid.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kasei.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kastankaoffice.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kastelruth.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "katedra.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kc-holzfaeller.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kowarschick.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kucnibudzet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "l0re.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lambauer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lanna.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "law-peters.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leafandseed.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "legland.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "letteringinstitute.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "libre.university", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liveperformersmeeting.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livesure.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "logfile.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "low-diets.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lupinencyclopedia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "macha.cloud", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marlosoft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matchatea24.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "material-world-fuyouhin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maxbruckner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maximdens.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maximiliankaul.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maxkaul.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcneill.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meany.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meduza.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "megagifs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mehrleben.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "melchizedek-forum.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meransuedtirol.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "messer24.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "messymom.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mhalfter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michal-spacek.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michal-spacek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mimithedog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "missualready.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mk89.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "motohell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mpsoundcraft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mredsanders.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mrsk.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mtcq.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "multitek.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "my-dns.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mythicdelirium.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nadelholzkulturen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nakama.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "naturheilpraxis-p-grote.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "naude.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nepovolenainternetovahazardnihra.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newspsychology.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ninaundandre.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "notar-glagowski.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "object.earth", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ontheten.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opendataincubator.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orchidsforum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oreshinya.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "outka.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ozoz.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pablocamino.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "painefamily.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "payboy.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pecker-johnson.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phuket-idc.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pires.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "planmemberpartners.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plassmann.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pluslink.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pokl.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "portalm.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "poweredbyiris.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prepaidkredietkaart.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "purplewindows.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "put.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "puzzle-welt.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quinoa24.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rc-shop.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "regnr.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "residence-simoncelli.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roten.email", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rublacklist.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruerte.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ryazan-region.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sackmesser.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "salde.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sauerland-schnittgruen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scheinlichter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scherfke.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schlachter.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sebastian-janich.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "section-31.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sellajoch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sendai-sisters.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sergije-stanic.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sexgarage.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sexmobil.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shadesofgraylaw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sheaf.site", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shift-to.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shishamania.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shop-s.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shopcoupons.ph", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shopcoupons.sg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "siku-shop.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silashes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skischule-wildewiese.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snafu.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sofa-rockers.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soundabout.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spackova.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spielland.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spirella-shop.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "springerundpartner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stalkerteam.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stargarder-jungs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "startlab.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stefan-bayer.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stefanbayer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stepanvanek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steuerkanzlei-edel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strefapi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stuvel.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tangoalpha.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "telefon.report", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "testbirds.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tfle.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "themoneyconverter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thepcweb.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theresa-mayer.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thunraz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tijden.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timebox.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobiassachs.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tofe.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomdudfield.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "totobetty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trigular.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tsironis-olivenoel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tsundere.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tupizm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tver-msk.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twlan.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ucangiller.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uncensoreddns.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uncensoreddns.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urbanietz-immobilien.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "url0.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urlaub-leitner.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "useyourloaf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wadidi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "waelisch.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webexp.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wenger-shop.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "werbefotograf-leitner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "werbefotografie-leitner.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "werkstattkinder.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wieckiewicz.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "windelnkaufen24.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wineworksonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "witneywaterpolo.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wmkowa.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wpsharks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wstx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wxh.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xenoworld.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--cctsgy36bnvprwpekc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--manuela-stsser-psb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xzclip.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yangjingwen.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youhavewords.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zamos.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zdenekspacek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zillertaleralpen.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zobraz.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "046569.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0day.agency", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "132kv.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "24-7.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2c-b.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2c-d.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2c-e.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2c-t-2.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2c-t-7.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2c-t-8.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2fm.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "2mb.solutions", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "3haueserprojekt.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "3trees.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "5c1fd0f31022cbc40af9f785847baaf9.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aandeautobody.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aaronhorler.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abigisp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolicionistas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolition.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionism.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionism.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionism.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionism.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionism.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionist-project.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionist.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionist.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionist.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionist.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionist.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionistparty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionistproject.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionniste.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abolizionista.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abouthrm.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aboutict.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aboutlegal.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aboutmedia.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "absoluterush.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ac-admin.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "accesloges.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acecerts.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adrafinil.wiki", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "advantagehomeexteriors.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aegisalarm.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aegisalarm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aerandir.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aetherc0r3.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agung-furniture.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ahlaejaba.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ajarope.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akamon.ac.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akihito.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akoya.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alb-flirt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alcnutrition.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aldous-huxley.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aleksejjocic.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexcoman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alicetone.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allesrocknroll.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alterspalter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alvosec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alwayslookingyourbest.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amadoraslindas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "americasbasementcontractor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amf.to", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amorim.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "analgesia.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrespaz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andreundnina.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrewrgoss.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "androidzone.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anedot-sandbox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anginf.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "angry.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "animal-liberation.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anime1.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annemakeslovelycandles.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anti-bible.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anticopyright.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "antispeciesism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "antispeciesist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anxiolytics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aplu.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "appninjas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apv-ollon.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aqualifeprojects.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "araratour.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arcadiaeng.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arcaik.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "argb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arijitdg.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aryan-nation.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atlantareroof.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atomism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "authinfo-bestellen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "avtoforex.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "awningsaboveus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "axtux.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ayothemes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bayer-stefan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bayer-stefan.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bayerstefan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bayerstefan.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bayerstefan.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bayherbalist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bbimarketing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beadare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "belastingmiddeling.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "belhopro.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benbozsa.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beneri.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benleemd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "benscobie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bertoliniodontoiatria.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betshoot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beulen.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bevedo.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bezpecnostsiti.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bglsingles.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biegner-technik.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bierochs.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bike-kurse.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "billgoldstein.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bimmerlabs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "binding-problem.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biohappiness.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bixservice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blink-security.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blogbooker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bloodsports.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bltc.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bltc.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bnty.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bobep.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bogdanepureanu.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bondagefetishstore.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "book-in-hotel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bookshopofindia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bornhack.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bottke.berlin", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bouchard-mathieux.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brahmins.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "braiampeguero.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brain-force.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "breda.computer", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brentnewbury.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brgins.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brianroadifer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brisbanelogistics.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "britishbeef.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "britishmeat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brodowski.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brompton-cocktail.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bsociabl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "btcpop.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buckypaper.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bunny-rabbits.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bupropion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burntfish.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buryat-mongol.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bushbaby.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bytes.fyi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bytesizedalex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cadman.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calltoar.ms", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "campula.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "canadiantouristboard.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "candidasa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caprichosdevicky.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "capsogusto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carauctionsillinois.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carisenda.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carlife-at.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carnet-du-voyageur.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "catbold.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ce-pimkie.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ceebee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "centruvechisv.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chaisystems.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "changesfor.life", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chaos.run", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chaospott.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "charles-darwin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "charlestonfacialplastic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chatu.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chatu.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chatucomputers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chhory.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chiemgauflirt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "childcounseling.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chima.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chimpanzee.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chmsoft.com.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chrisburnell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "christadelphians.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "churchwebcanada.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ciicutini.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cinemysticism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cioscloud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "citymoobel.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cityworksonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "civillines.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "claimconnect.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clusterfuck.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codeeclipse.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codeine.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codeit.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codestudies.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "collabora-office.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "collabora.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "collaboraoffice.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "collaboraoffice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "communitycodeofconduct.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "compassdirectportal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "compassionate-biology.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "computerassistance.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "constructive.men", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "convergnce.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coribi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corsa-b.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "countrybrewer.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "courseworkbank.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cpbanq.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "craftandbuild.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "craftination.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crandall.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "credex.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryothanasia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cuoc.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "customwritings.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyberwars.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyph.healthcare", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyph.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "d00d.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "d4x.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daciaforum.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dailyblogged.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dallinbryce.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "damicris.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dave-pearce.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davecardwell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davepearce.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davidpearce.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davy-server.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dawnbringer.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dbpkg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "degen-elektrotechnik.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deinewebsite.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deontology.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "desagaz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "designer-drug.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "det-te.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "detroit-english.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dezintranet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "df1paw.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dhlinux.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diamorphine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dicionariodelatim.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dicionarioetimologico.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "didierlaumen.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "directorioz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diveidc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "divinegames.studio", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "djt-vom-chausseehaus.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dlrsp.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dnstwister.report", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "docxtemplater.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dolorism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domain-ermittlung.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domodeco.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "donateway.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doubleup.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dr-www.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drach.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dragonkin.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drillion.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "driven2shine.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drms.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dsm5.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dtk-vom-chausseehaus.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dunmanelectric.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dxm.no-ip.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dynastic.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dynorphin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dynorphins.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dysthymia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eastarm.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebayinc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebooksgratuits.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eer.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "effective-altruist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eisaev.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ekonbenefits.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elektro-adam.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elektro-metz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elektrobusch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elements.guide", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elephants.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emi.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emirichardson.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "empathogen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "empathogens.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emperor-penguin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emperor-penguins.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emw3.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "energyelephant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enfantsdelarue.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "englishcast.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "entactogen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "entryboss.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eocservices.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "er.tl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erinaceinae.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ershiwo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esdiscuss.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esh.ink", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eskdale.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "etherpad.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "euchre.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.com.hr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.com.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.rs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.si", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eujuicers.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "europeanwineresource.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evasioncreole.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "everyday.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evosyn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exampleessays.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "expert-korovin.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "express-shina.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "expressmarket.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eyecandy.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "facciadastile.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fairviewmotel-simcoe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fantastichandymanmelbourne.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "faroes.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "faroes.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "farsil.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fdlibre.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "featherweightlabs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "femtomind.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fence-stlouis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ferticare.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fickweiler.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firebugmusic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "first-house.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fishtacos.blog", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flatbellyreview.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flatpackmates.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flirt-norden.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "floriankarmen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "floriswesterman.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fluoxetine.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "focusministries1.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fokan.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forrestheller.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forty8creates.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fosdem.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fragilesolar.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "franchini.email", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "franchini.engineer", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frandor.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "franksiler.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frasesytarjetas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freeasyshop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freedev.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freegutters.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "friedrich-foto-art.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "friedsamphotography.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frinkiac.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fungame.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "furkot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "furkot.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "furkot.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "furkot.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "furkot.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "furkot.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gaflooring.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gagnerplusdargent.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gajas18.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gameconservation.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "garanteasy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "garycarmell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gauche.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geborgen-wachsen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "general-anaesthetics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "general-anesthesia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "generationgoat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genetargetsolutions.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genetidyne.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genosse-einhorn.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geoffmyers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geoponika.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "george-orwell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "georgiaglassrepair.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getnib.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gfast.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ggdcpt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ggs.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "giant-panda.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "giant-tortoise.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gigantism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gigawattz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "giraffes.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "git.market", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gitstuff.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "given2.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gizmo.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gjengset.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "glueck-im-norden.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gocleanerslondon.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goedeke.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gofoiayourself.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goldendawnapersonalaffair.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gopher.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grapeintentions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greditsoft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gregorykelleher.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grevesgarten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grillteller42.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gruenprint.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gufen.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guge.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guillaumematheron.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gymhero.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gympap.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "h2u.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "h3z.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hacker.deals", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hadrons.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "halacs.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hallucinogens.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hangtenseo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hardforum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "harrymclaren.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hashcat.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hashish.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hauntedhouserecords.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "health.graphics", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hedonism.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hedonistic.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hedonium.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hedweb.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hefengautoparts.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heidisheroes.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hessen-liebe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hideallip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "highwaytohoell.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hikagestudios.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hippomovers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hippopotamuses.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hodgephotography.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "holebedeljek.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "holywhite.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "house-sparrow.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "httpsecured.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "human-clone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "humanenrich.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "humanzee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "humblebee.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "humblebee.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "humblebee.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "humblebeeshop.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hummy.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hundter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "huntingdonlifesciences.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hyperalgesia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hyperthymia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "idealwhite.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ignatovich.by", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ignatovich.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ikkoku.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ilazycat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "illuminationis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "im66.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "immortal.run", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "incowrimo.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "indian-elephant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inficom.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "infrapirtis.lt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "innerfence.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "innsalzachsingles.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "integralkk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intelligence-explosion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "internationalfashionjobs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "interseller.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inventionsteps.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "irf2.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isaacphysics.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ishiharaken.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isil.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "islam.si", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isliada.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "istsi.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itactiq.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itamservices.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iteecafe.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itshka.rv.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iz8mbw.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jaakkohannikainen.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "james-bell.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamesaimonetti.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jammucake.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jann.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "javfree.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeannecalment.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeffri.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jefrydco.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jelewa.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeremybentham.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jesuisadmin.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jgke.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jgwb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jgwb.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jiogo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joerg-wellpott.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johannes-bauer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jonilar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joshschmelzle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jpshop.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jrtapsell.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "julianweigle.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "julie-and-stevens-wedding.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "justboom.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kack.website", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kaigojj.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kalastus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kangaroos.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karanjthakkar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karlbowden.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karloskontana.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kazumi.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kbb-ev.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kellygrenard.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kemptown.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kemptown.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kemptown.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kernelpanics.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ketamine.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kevinhill.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kevinlocke.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kickasscanadians.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kikbb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirainmoe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kisallatorvos.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kleaning.by", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koalas.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koifish.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "konyalian.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kovaldo.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kraft.blog", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ksero.center", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kuhn-elektrotechnik.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kurona.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kutinsoft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kvn.tf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kyunyuki.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lachlan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lamakat.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lanzamientovirtual.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lauchundei.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laufpix.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laurasplacefamilysupport.org.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lawnuk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "le-palantir.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lebourgeo.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leebiblestudycentre.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "legit.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leipzig.photo", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lenspirations.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lesancheslibres.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "libremail.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liemen.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lignoma.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lindo.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lindon.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lindskogen.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linuxforum.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liqd.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "littlewatcher.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liyin.date", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ljason.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lkp111138.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lobivia.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loli.world", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "louisvillecarguys.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loverepublic.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lowcostwire.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lsquo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ltls.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lucasgymnastics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lumi.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lutoma.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lyricfm.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "m-22.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maartenderaedemaeker.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "macaws.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maff.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magasinsalledebains.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magasinsalledebains.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magiclen.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magicspaceninjapirates.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magneticattraction.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mahjong.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maiebanatulfruncea.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "malenyflorist.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mallach.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mammals.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "manatees.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "manutd.org.np", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marcelinofranchini.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marcusstafford.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markitzeroday.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markusabraham.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markusueberallconsulting.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marrai.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mastodon.top", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matatabimix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maternum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mathspace.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matrixmedia.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mattferderer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mattonline.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mauldincookfence.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maxchan.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maxwaellenergie.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mbr-net.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meadowfen.farm", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "measureyourpenis.today", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meat-education.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meat.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mediweed.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meme.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mephedrone.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mercedes-ig.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mescaline.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "metacode.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "methamphetamine.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "methylone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mflodin.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mgknet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mi-beratung.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michu.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "midnightmechanism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miffy.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miguelmenendez.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miketheuer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miki.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikropixel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "milesapart.dating", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minakov.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minaprine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minecraft-server.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minigolf-reisinger.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minikidz.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mintosherbs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minube.co.cr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "modafo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "modalogi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moderatoren.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mon-a-lisa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "morbotron.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mosin.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "movingtohttps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mstdn.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mulheres18.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "muses-success.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "musickhouseleveling.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mycrypnet.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mydaywebapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mydevolo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mydevolo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mygeotrip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mygymer.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mymed.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mymed.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myrig.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nah.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nanotechnologist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nanubo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nanubo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "naroska.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nataliedawnhanson.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nazevfirmy.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neecist.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neeerd.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nemez.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neobits.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neosdesignstudio.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nerdmind.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netamia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netfabb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neurotransmitter.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "never.pet", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newknd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ngxpkg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nicholasquigley.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nomifensine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "norman-preusser-gmbh.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "normanbauer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noscript.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noswap.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nota.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "novilaw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nuacht.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nuriacamaras.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nussadoclub.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "obyvateleceska.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ohai.su", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "okburrito.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ometepeislandinfo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "omf.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "omniatv.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "omorashi.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oncf.asso.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opcenter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "open-desk.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openrainbow.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opiates.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opin.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opioids.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opioids.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "optimist.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orang-utans.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orgasmium.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oswaldsmillaudio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ozonitron.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ozonitron.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ozonitron.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ozonytron.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ozonytron.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ozonytron.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "p3ter.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "palletflow.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paneldewelopera.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "panpsychist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paradise-engineer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parisfranceparking.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parisfranceparking.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parisfranceparking.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parisfranceparking.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parthkolekar.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulbramhall.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paulus-foto.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pcmr.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peep.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peippo.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "personal-genome.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peyote.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pharmapolitics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phillipgoldfarb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "photomodelcasting.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phpliteadmin.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pidjipi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinemountbaptistchurch.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinimg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plan-immobilier.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "planeteroliste.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "planeteroliste.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "play.cash", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "playsnake.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "playtictactoe.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pldx.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pleasure-science.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pluta.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pokemondb.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ponychan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ponyfoo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "poopjournal.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "popmagz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "population-ethics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pork.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "porn77.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "portugalsko.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "post-darwinian.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "post-darwinism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "postdarwinian.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "postdarwinism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "potatiz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "power-flowengineer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prefix.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "preludes.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "printmet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "priv.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "privatfrei.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pro-mile.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "procode.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "profile.tf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "propagationtools.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "propertyone.mk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pschierl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pseta.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "psm.org.ph", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "publiq.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "purevapeofficial.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "putney.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "puxlit.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pyopenssl.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qixi.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quantum-mechanics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qubes-os.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "r-rwebdesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "radiom.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "radiomontebianco.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "radis-adopt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rally-base.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rally-base.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rally-results.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rally-vysledky.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rallybase.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rallybase.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ranking-deli.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rapidstone.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ravis.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raxion.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raymcbride.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "razeencheng.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reachrss.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reades.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "realhorsegirls.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "really-simple-ssl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reboxetine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rechtschreibpruefung24.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redneragenturen.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "refood-cascaiscpr.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reichel-steinmetz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reinierjonker.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rejahrehim.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "relvan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rens.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rentex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "repaper.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reproductiverevolution.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reprogramming-predators.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reprogrammingpredators.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "repugnantconclusion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rhein-liebe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rhetthenckel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rhinoceroses.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ricaud.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "richardjgreen.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "riddims.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rj-onderneemt.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rm-it.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rnag.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robertlysik.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robin.co.kr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robu.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rocketnet.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rodichi.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rodomonte.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rogagym.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rogerhub.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "root.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rootcamp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rosenheimsingles.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rozalynne-dawn.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rteone.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rubyquincunx.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruk.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rulu.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rushpoppershop.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rusi-ns.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rutiger.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "s4db.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "s95.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saengsook.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saengsuk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saifoundation.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saigonflowers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saikouji.tokushima.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sainetworks.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saipariwar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sallydowns.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "salmonella.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "salutethepig.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sanasport.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sanmuding.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saorsat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sapien-ci.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scalesbiolab.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schier.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schwarzwald-flirt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scintillating.stream", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "screen64.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sctrainingllc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scubadiving-phuket.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seaholmwines.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "secnet.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "secomo.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "security.gives", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "selfishness.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seosof.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sex-education.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shadowlurker.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sharanyamunsi.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shareselecttools.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shh-listen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shijing.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shintoism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shoestringeventing.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sigmalux.sarl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silv.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.co.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.cr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.gd", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.gl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.gt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.lt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.ma", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.mk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.si", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.uy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.uz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simon.lc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "singel.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "singles-aus-hamburg.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sinterama.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sirtuins.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skazka.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sklotechnik.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sktan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sleepmap.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sloths.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slovenskycestovatel.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slowgames.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sneak.berlin", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snowalerts.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sociobiology.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sociopathy.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sockscap64.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "something-else.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "songsthatsavedyourlife.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soukodou.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "southwestrda.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "speciesism.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spellcheck24.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spidermail.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spiders.org.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ss64.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ss64.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssh-vault.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stalkr.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "starfeeling.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stastka.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steef389.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stift-kremsmuenster.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stockpile.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studioriehl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studiotheatrestains.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suchmaschinen-werkstatt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sumguy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "supa.sexy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "supportericking.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "svetlilo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swarlys-server.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swipetv.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "syllogi.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "szyndler.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taishon.nagoya", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tangyue.date", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tarasevich.by", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tardis.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "targimieszkaniowe.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tatsidou.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techendeavors.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techinet.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tedsdivingsystem.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tefek.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teixobactin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "telefonni-ustredna.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "telly.site", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tenthousandcoffees.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "terraluna.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "testgeomed.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teysens.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tgui.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theblackknightsings.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thecarolingconnection.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thefnafarchive.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theinternationalgeekconspiracy.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theyearinpictures.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thomas-suchon.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thomsonscleaning.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "threv.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thuviensoft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tiagonunes.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "till.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timtelfer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tinfoleak.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tinyhousefinance.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tkacz.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tokkee.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomkunze.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomschlick.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomwassenberg.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonyarcieri.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tortoises-turtles.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tourtransferitaly.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "touslesdrivers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tractorpumps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trailerparty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trainiac.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tran.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transhumanism.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transhumanist.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transhumanist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transhumanist.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transhumanist.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "travelarmenia.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trbanka.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trek-planet.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trigardon-rg.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "truestor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tsicons.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tubejack.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuincentersnaet.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuner.cloud", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "turncircles.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuto-craft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tutoragency.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tutorio.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twit-guide.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tylerdavies.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "u.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uchargeapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ufplanets.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ukrnet.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unite-ka.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unitedpsychological.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unx.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "upbeatrobot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urcentral.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urist1011.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "usaestaonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "usajobs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utilitarian.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utilitarismo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utilitronium-shockwave.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utilitronium.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "utopian-surgery.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vaew.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vasyharan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "veganism.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vendigital.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vendorconnect.nyc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "verliebt-in-bw.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "verliebt-in-niedersachsen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vertebrates.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vierpluseins.wtf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vintagejeeps.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "virtubox.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vm-0.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vorkbaard.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vpsboard.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vsesrazu-raiffeisen.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vuakhuyenmai.vn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vwittich.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vyzner.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "w-p-k.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "w4eg.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wahhoi.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wallabies.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "walruses.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weare1inspirit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "websiteservice.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webspotter.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weerstationgiethoorn.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weller.pm", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whitehathackers.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whiterabbit.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wificafehosting.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wifree.lv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "williamjohngauthier.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "windowcleaningexperts.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "windowsnerd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wolfgang-ziegler.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wolfy1339.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wombats.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "woodlandwindows.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "woof.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wort-suchen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wptotal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wrc-results.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wug.news", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wygodnie.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xenosphere.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xfd3.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--jp8hx8f.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--rt-cja.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xnaas.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xxffo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yatsuenpoon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ybti.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ych.art", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yoshibaworks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yude.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zakladam.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zdorovayasimya.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zetamode.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zooish.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "5gb.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "3james.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "4x4.lk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "41199.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "987987.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "100-downloads.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "a7m2.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "123midterm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aceinstituteonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "advancedoneroofing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adamfontenot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "advancedwriters.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aeradesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acg.mn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.sg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abn-consultants.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "affordablepapers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "africantourer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aikenpromotions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adminforge.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adzuna.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "admino.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aimgroup.co.tz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ak-varazdin.hr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abox-kb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agreor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abi-2017.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anime1.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alleskomtgoed.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anypeer.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apadrinaunolivo.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "appscloudplus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "animefluxxx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alpinepubliclibrary.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "antimine.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "argovpay.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amb.tf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arg.zone", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "appartementmarsum.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annaenemma.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ajnasz.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "antama.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apm.com.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alphie.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asialeonding.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aussieservicedown.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asra.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atease-salon.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "armarinhovirtual.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrea-m.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "audiolibri.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "b-boom.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bad.pet", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "badrequest.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "austromorph.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bakongcondo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "babai.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ax25.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "b4z.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barlotta.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "audiorental.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "azso.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baumannfabrice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bearingworks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barta.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "autocmall.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "belfastlocks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aqua-fotowelt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bc-diffusion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bfam.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beulen.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bearded.sexy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bedandbreakfast.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bedandbreakfasteuropa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bghost.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "berlin-flirt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beraru.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "birdbrowser.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "binaryappdev.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blenderrecipereviews.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biblioblog.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blizhost.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bijoux.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitsum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackhillsinfosec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bakersafari.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bilalkilic.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitsync.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "baugemeinschaftbernstein.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bradypatterson.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bornfiber.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bouw.live", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "briansmith.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blakecoin.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bondarenko.dn.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brianfoshee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "braeunlich-gmbh.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bsidesf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boutiquedecanetas.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bs.to", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burnerfitness.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burlapsac.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buydissertations.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bug.blue", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buypapercheap.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buyessay.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buyessays.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "byatte.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ca5.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "caliderumba.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "capekeen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cashati.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buronwater.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cashmaxtexas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carre-lutz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carson-aviation-adventures.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cevo.com.hr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chad.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chaurocks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "charmingsaul.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cheapwritinghelp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cheapwritingservice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cheapessay.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chinwag.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chesspoint.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cityoftitans.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chmurakotori.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "christiangehring.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chrstn.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cipri.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cianmawhinney.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cip.md", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cinafilm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "claimnote.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cocalc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codes.pk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "citcuit.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codeux.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clubfamily.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "collegepaperworld.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comparesoft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "collard.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coastline.net.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "copycrafter.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coorpacademy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corksoncolumbus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudtropia.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "compubench.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "couponcodesme.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "controleer-maar-een-ander.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chaifeng.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corlinde.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comunidadmontepinar.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cpcheats.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cometonovascotia.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crisp.chat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cross-led-sign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "creeks-coworking.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crunchy.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "customwritingservice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptofan.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ctnguyen.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "damaged.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "data.world", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cssai.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cubile.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davetempleton.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cspeti.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darkfire.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darylcumbo.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyumus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dalb.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "contraspin.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deflumeri.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davie3.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "delahrzolder.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danotage.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "davewardle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dawnbringer.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dermot.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dennisvandenbos.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devalps.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deliandiver.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dicionariopopular.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitaldeli.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dissertationhelp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dieselanimals.lt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doc8643.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domynetwork.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domycasestudy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domyassignments.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domyessays.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domycoursework.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domypapers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domycreativewritings.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domainsilk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domydissertations.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domyessay.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domyhomeworks.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domscripting.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domyreview.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dotneko.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domyspeech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domyresearchpaper.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domytermpaper.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domythesis.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dewapress.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dm4productions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drdipilla.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "disinisharing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "doop.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dfmn.berlin", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dogoo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domyzitrka.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "driver.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e-tech-solution.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dont.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drakenson.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ea2drocks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eat-sleep-code.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "donabeneko.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "droidhere.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "echofoxtrot.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drabim.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "effectivepapers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "duh.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitalcraftmarketing.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elhamadimi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elifesciences.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "efaas.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "encouragemarketing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "electragirl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dtx.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eladgames.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devlatron.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "envescent.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dovenzorgmalawi.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elektro-roth.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "efflam.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eickhof.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "envoyglobal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eickhof.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elternverein-utzenstorf.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erikheemskerk.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "essaypro.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esagente.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "essaylib.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emeliefalk.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "erwinschmaeh.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enet-navigator.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "essayhave.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "estafallando.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "estafallando.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "essayforsale.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eltern-verein.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dynts.pro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ersa-shop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evanfiddes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "embassycargo.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "example.wf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "etienne.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evertonarentwe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esteticanorte.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "famousbirthdays.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "example.sc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exmoe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "facilitiessurvey.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evidencebased.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ezwritingservice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "efag.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exceed.global", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fantasticcleaners.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fernandomiguel.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "euroalter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "felixbarta.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fireboxfood.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feilen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fcforum.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fishermailbox.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fliino.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flapoverspeed.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fefelovalex.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firmament.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flumble.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fornoreason.net.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fiodental.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frankyan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fourdesignstudio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foscamcanada.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foto-roma.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "formula-ot.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foto-robitsch.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freegame-mugen.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flokinet.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "funniestclip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gabriel.to", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frino.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fukakukeiba.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freedomflotilla.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fokan.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fwest98.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "espigol.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gebn.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fussball-xxl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamenerd.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genesismachina.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gginin.today", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geekzone.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gethow.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "georgebrighton.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "george-brighton.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gallun-shop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gero.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gleanview.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gerald-zojer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmc.uy", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gnucashtoqif.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goemail.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genealorand.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmx.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geektopia.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmx.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmx.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grande.coffee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grayhatter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gfxbench.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "givastar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gpalabs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grayson.sh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gronau-it-cloud-computing.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freesourcestl.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gioielleriamolena.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gregoryrealestategroup.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmx.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmx.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gmx.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grasmark.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gst.priv.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hackerone-ext-content.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gwrtech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gruwa.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frontline.cloud", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gst.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gruebebraeu.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greggsfoundation.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "harveyauzorst.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hammer-schnaps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gynaecology.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "globalnewsdaily.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hdguru.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haschrebellen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "harmfarm.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hen.ne.ke", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hadaly.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hellomouse.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hexapt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helenaknowledge.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heartbeat24.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "henneke.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "healththoroughfare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "herzig.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hansmund.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heimatverein-eitensheim.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hermanbrouwer.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hitrek.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "holytransaction.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hatarisecurity.co.ke", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "houraiteahouse.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "happyagain.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ibin.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "huahinpropertylisting.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "humpen.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "i-red.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hte.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hottheme.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "helvella.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imagebin.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imperdin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hik-cloud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imkerverein-moenchswald.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inmateintake.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "immersion-pictures.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ievgenialehner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "insidethefirewall.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "henrikwelk.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "internetbugbounty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inlink.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "istheservicedown.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "istheservicedowncanada.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "istheservicedown.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itsdcdn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ichasco.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iris-design.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "isdn.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jabergrutschi.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jaberg-rutschi.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "innwan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jhaveri.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jakobkrigovsky.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jenprace.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnrockefeller.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeremy.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joelmunch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jobsuchmaschine.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jelena-adeli.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joelleandpeter.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joelle.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jrxpress.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joblife.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jixun.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jongcs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jornalalerta.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnfulgenzi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keb.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keb.net.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kerebro.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kai-ratzeburg.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "issasfrissa.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kaltenbrunner.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kaamoscreations.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "justgalak.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kazuhirohigashi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karlic.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keishiando.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jwschuepfheim.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "keepiteasy.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kingofshooting.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kolin.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kleinsys.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kissgyms.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kevyn.lu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kogak.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karlzotter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kplasticsurgery.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "johnnybsecure.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koptev.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kiteadventure.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kuruppa.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kolizaskrap.bg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kovspace.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kpop.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ksukelife.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirrie.pe.kr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laflash.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kolja-engelmann.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lancelafontaine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lafayette-rushford.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lanceyip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lasarmas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "learningis1.st", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lat.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leetcode.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lanroamer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lazyboston.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koscielniak-nieruchomosci.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lawn-seeds.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lenyip.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lenyip.works", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lensual.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "josepbel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liquidinternet.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lidl-shop.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livepaperhelp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livekort.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kominki-sauny.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linuxdays.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loli.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "locapos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "longhaircareforum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linuxiuvat.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "local360.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lolibrary.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livingforreal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kidsinwoods-interfacesouth.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "little-cake.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lachainedesentrepreneurs.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luffyhair.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "logbook.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loritaboegl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livekort.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lookatmysco.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lesmontagne.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lukatz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "loanmatch.sg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mail.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "malikussa.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maomihz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "madae.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ludwigpro.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maedchenflohmarkt.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maedchenflohmarkt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maliar.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mastersthesiswriting.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "massagecupping.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marshmallow.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "madbin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markus-ullmann.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markllego.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcgovernance.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mazda626.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "melnessgroup.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maxims-travel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mathers.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mapasmundi.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mazurlabs.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marjoleindens.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medyotan.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mgsisk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mhatlaw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mein-muehlhausen.bayern", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcdona1d.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mertak.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "midterm.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mestazitrka.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "microblading.pe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minebier.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mf-fischer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mmmarco.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lydudlejning.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mensch-peter.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "montychristie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "monloyer.quebec", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mattbsg.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "momstableonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mojoco.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moritztremmel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "motionless.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meganandmarc.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "movio.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mortis.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mountain-rock.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minamo.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "munkibuilds.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "motransportinfo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "munchcorp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mosscade.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myriadof.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "music-is-my-life.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myrent.quebec", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nailchiodo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mystorymonster.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "my-ebook.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mydarkstar.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mynext.events", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myssl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meadowfenfarm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nacin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nevolution.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nesolabs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neostralis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nickcraver.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nebulae.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michaeln.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nhimf.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nicul.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myspicer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nicesco.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nna774.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "niyawe.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nikavandenbos.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nordinfo.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noudjalink.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "niceguyit.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nofrillsdns.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nystudio107.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netbows.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onlinecollegeessay.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "omronwellness.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "okay.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "optimumwebdesigns.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "omertabeyond.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nitifilter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "offenekommune.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "omertabeyond.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netbows.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openstem.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "one-s.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "palabr.as", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "papersmart.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paperwritinghelp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "panascais.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "passwordscon.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oyosoft.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "panasca.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "papertracker.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pchelpforum.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pass.org.my", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "panda.tf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "passwd.one", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pdfconvert.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "party-kneipe-bar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paranoidpenguin.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peterjohnson.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pensador.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pensador.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "partyschnaps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pfft.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pelletsprice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "passions-art.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pcf92.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "passworks.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peterlew.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "petelew.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peraparker.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.engineering", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peterandjoelle.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "philipdb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pill.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pascalchristen.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "piraten-basel.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pedimoda.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "piekacz.tel", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plzdontpwn.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pollingplace.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pony.tf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pnsc.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paybro.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pneuhaus-lemp.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "proctorio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pornomens.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plutopia.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prac.to", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "post.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "practo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "popinga.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "praxis-familienglueck.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "postcode.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "profloorstl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "properticons.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "projectunity.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phcimages.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "project.supply", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "procharter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "profitablewebprojects.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "programsupport300procent.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "privacynow.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "promods.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "privacyscore.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "productpeo.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ptrl.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "protonvpn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pieterbos.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quay.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "packagingproject.management", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raryosu.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rationalcreation.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prestigesigns.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "puzzlepoint.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rcraigmurphy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rakugokai.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "r7h.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "public-projects.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "readysell.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "realworldholidays.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qrcontagion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rebelz.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reflexions.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "public-g.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "public-projects.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rathgeb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "public-vocals.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "resourceguruapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reverseaustralia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "recmon.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "richardson.engineering", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "revisionnotes.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qifu.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "petbooking.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rishikeshyoga.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "retro.rocks", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reco-studio.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rigabeerbike.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "richardson.systems", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qscloud.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rosehosting.reviews", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rootedlifemontessori.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rootcommand.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rognhaugen.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rukhaiyar.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robinevandenbos.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "runebet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roryneville.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rob006.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "routerclub.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rotol.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sadmansh.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rockenfuerlachenhelfen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruurdboomsma.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "richardson.software", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "s4tips.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sakostacloud.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sayura.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sanatorii-sverdlovskoy-oblasti.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sanitairwinkel.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schraugerrun.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sanitairwinkel.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schrolm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "security-brokers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securityfest.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scramsoft.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scrambox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seinfeldquote.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sentinelproject.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schwarzegar.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seaplayhomes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schuhbeck.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sekisonn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seekthe.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sens2lavie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "semacode.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "serviceboss.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shadigee.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schoknecht.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schoknecht.one", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shawnhogan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "selfassess.govt.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sec-wiki.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securitybrief.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seo-portal.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shichibukai.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silsha.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "siloportem.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shoptec.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shakespearevet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "siro.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "singles-berlin.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "single-in-stuttgart.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.mw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skylgenet.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smartwritingservice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skatingchina.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slip-gaming.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sma-gift.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.cm", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snerith.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.by", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sogola.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smartfit.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.hk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sorrowfulunfounded.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smit.com.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sodafilm.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sozialy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.rs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "speech-balloon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.sv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "starlim.co.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steamgifts.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steamtrades.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sprachfreudehoch3.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shahbeat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strategiclivingblog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spielezar.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snrub.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "substitutealert.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "surpreem.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stratmann-b.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strozik.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "syneart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sportovnidum.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sukrie.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stormi.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suzukimarinepress.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "survivebox.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stlukesbrandon.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "szybkiebieganie.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tapestries.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tbonejs.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tadtadya.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techhappy.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "technicallyeasy.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techdirt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "straatderzotten.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teamupturn.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techshift.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techshift.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techshift.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "taniku-succulent.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "the-zenti.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thebrightons.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tf2calculator.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thepathsofdiscovery.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thesishelp.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thecrazytravel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thepartner.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sundanceusa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thunderkeys.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ticketsource.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ticketsource.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tillberg.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tewarilab.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timbarlotta.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thor.edu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "therumfordcitizen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tlehseasyads.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timeglass.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teledivi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobyx.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tiroler-kupferschmiede.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toeightycountries.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timfiedler.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobischo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trangcongnghe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "top-obaly.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "torstensenf.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tokyomakino.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "troyhuntsucks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "topicit.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "top-opakowania.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tavolaquadrada.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theragran.co.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "truekey.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "titelseite.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "travel-dealz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "transcend.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "turnonsocial.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "troedelhannes.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "treehousebydesign.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tuts4you.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "traceroute.guru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "traceroute.network", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "traceroute.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trace.guru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "topprice.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ufanisi.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unikrn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tvsheerenhoek.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "touchscreentills.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theory.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unusualhatclub.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uedaviolin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urcentral.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "twilleys.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uvocorp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vccmurah.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ultratechlp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "towywebdesigns.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vcmi.download", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vicyu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vaygren.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "underlined.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vijay-international.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "verymelon.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "torbay.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vermuetje.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "veritafineviolins.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viktorprevaric.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "verzick.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "veverusak.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vitalyzhukphoto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vagabondgal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vancouvercosmeticsurgery.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viviennevandenbos.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viking-style.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webhostingpros.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webbiz.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whisperinghoperanch.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vitoye.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "web.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wibbe.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wellbeing360.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wjm2038.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "werehub.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webliberty.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "westendwifi.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "worldessays.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "windsock-app.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vocalviews.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "writemyessays.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "writemytermpapers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "writemypaperhub.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "writepro.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "write-right.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "writing-expert.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "victoreriksson.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "writingcities.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wpcharged.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "writingtoserve.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wug.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "worldstone777.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xjjeeps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webaholic.co.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wordher.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vpnservice.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wrapitup.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "www.re", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--baron-bonzenbru-elb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "woheni.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xgame.com.tr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--tigreray-i1a.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xuming.studio", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.com.hk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xt.om", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.com.tr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.com.hk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.cl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.com.sg", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.com.ph", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.com.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--uist1idrju3i.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yoshitsugu.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yachigoya.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.com.mx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yiyuanzhong.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yubico.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.pt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.my", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yelp.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yourticketbooking.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zerofox.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yotta-zetta.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zoola.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zekinteractive.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zeilenmethans.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zlima12.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zrniecka-pre-sny.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zfree.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zevelev.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zhuji.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zhuji.com.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zusjesvandenbos.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zonemaster.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zilsen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xnet-x.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "10ppm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aaomidi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acat.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "accelaway.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acsc.gov.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1844329061.rsc.cdn77.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "advantagemechanicalinc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "accessacab.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "1ll.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adventuregamers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "addcrazy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aelurus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "5francs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aabanet.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alextaffe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allis.studio", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amyyeung.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "airfax.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alignrs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annonasoftware.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alastairs-place.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "airvpn.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anowicki.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arenlor.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aphelionentertainment.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arkadiyt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aessencia.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alessandroonline.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "4garage.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aquaselect.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "asmdz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arenlor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "astral.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acendealuz.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "autostodulky.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "attwood.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atplonline.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "assertion.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "balslev.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bedrocklinux.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bbka.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atorcidabrasileira.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "belfasttechservices.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bernhardluginbuehl.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bagspecialist.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "beyondthecode.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bernhardluginbuehl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bandeira1.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bett1.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bambumania.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "billy.pictures", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "astutikhonda.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blued.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bl4ckb0x.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ben-stock.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "booquiz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "boweryandvine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonami.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonami.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonami.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonami.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonaccorso.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biomodra.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "campcambodia.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "capimlimaoflores.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brazillens.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cacaumidade.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cbr-xml-daily.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cbw.sh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cameraviva.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "care4all.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "casadoarbitro.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carolcestas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "casapalla.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ch-laborit.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cheeseemergency.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chat.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cinefilia.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ckostecki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ciphersuite.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coda.world", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coda.today", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comicspornos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "columbuswines.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coda.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "contractormountain.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "conradkostecki.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cybersmartdefence.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cw.center", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corpio.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cryptorival.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "csharpmarc.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cultofperf.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crowdbox.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ctliu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "controlautocom.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "condecom.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daubehosting.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danselibre.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deepcreampie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dariosirangelo.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dcc.cat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dcc.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dbapress.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "democracyineurope.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digibull.link", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "debuemon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deep.club", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dao.spb.su", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "decorestilo.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dataspace.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "designgraphic.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diveplan.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dualascent.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dosomeworks.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "donutcompany.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eaimty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "devkid.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dzsula.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ecoheatcool.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drturner.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e30.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edibarcode.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dlfsymposium.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ecoshare.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edgeservices.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebrnd.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "des-hommes-et-des-clous.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edeca.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elhossari.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edisonchee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "electr0sheep.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edsm.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eggblast.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "engvid.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ekd.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edusanjal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elliot.cat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eoonglobalresources.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eventosenmendoza.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "etalent.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drew.beer", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ebolsas.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ewsfeed.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eonhive.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ezdog.press", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fashionunited.lu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fam-kreibich.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emergentvisiontec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "expecting.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "facanabota.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ergovita.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "farfallapets.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "finalx.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "facanabota.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fotohome.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "faixaazul.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fontawesome.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flyingdoggy.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fortytwo.cloud", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frozen-solid.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fermabel.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forum-kinozal-tv.appspot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exporta.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ford-shop.by", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forexee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "finnclass.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ftng.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gemquery.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "footballforum.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fxislamic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "giuseppemacario.men", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genfaerd.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fullautomotivo.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frebi.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "givesunlight.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gtopala.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greensquare.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "graumeier.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gnilebein.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gov.tc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gruene-im-rvr.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hamking.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flyspace.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gruenderlehrstuhl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hexr.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hangcapnach.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hexxagon.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "golser.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hitmanstat.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "handyticket.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hirotaka.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hiteco.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "horkel.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hematoonkologia.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "icyapril.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hinterposemuckel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "idealtruss.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "idealtruss.com.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geoffreyrichard.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "homegardenresort.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "illuxat.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "img.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ilamparas.com.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoshimaquinas.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ictl.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoshimaq.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iaco.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "indilens.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instant-hack.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ip.sb", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itruss.com.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ivor.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inter-culinarium.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ivor.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ivanmeade.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ivorvanhese.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ivorvanhese.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "insside.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intermezzo-emmerich.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jackdawphoto.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jazzy.id.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "highlandparkcog.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inmobillium.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jinliming.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "intertime.services", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joaosampaio.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "italyinspires.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jpmelos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jpmelos.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "janaundgeorgsagenja.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jmpb.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jross.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "josephsniderman.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "josephsniderman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jell.ie", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "juanxt.ddns.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "josoansi.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "josephsniderman.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kenyons.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kd.net.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "judosaintdenis.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jsd-cog.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kenterlis.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kalifornien-tourismus.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kiku.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kremalicious.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kostecki.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kogi.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kostecki.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kostecki.tel", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kruk.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "krismurray.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koryfi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jacobsenarquitetura.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kthnxbai.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leafinote.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "letsgowhilewereyoung.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "k3nny.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lifemstyle.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jembatankarir.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "larepublicacultural.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lazytux.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lakonia.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lemonrockbiketours.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kyusyu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "linkmauve.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "legavenue.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "littlefairy.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leclaire.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luenwarneke.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lonniec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luginbuehl.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lpt-nebreziny.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luginbuehl.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lommyfleet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lohanaflores.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lojadewhisky.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lojavirtualfct.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "la-petite-entreprise.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livrariacoad.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lojavisamed.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lojadoarcomprimido.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lojaprojetoagua.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lojaprimemed.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "masterofallscience.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "makaleci.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "marioabela.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lunasqu.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magnatronic.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mdsave.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "metasquare.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "masterstuff.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mentalhealthmn.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mallonline.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "masterofbytes.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matjaz.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "materiaischiquinho.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikehamburg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "megapixel.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "milcahsmusings.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miss.com.tw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "minnit.chat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "metacoda.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miguia.tv", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moondrop.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "medcir.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "misseguf.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mlundberg.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mne.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "movieguys.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mmstick.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "merojob.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mojnet.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mojnet.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "msgallery.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mww.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mycircleworks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mylifeabundant.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mschuessler.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "milhoazul.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mystudycart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myseatime.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mehhh.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "microbiote-insectes-vecteurs.group", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nbafile.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myproblog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "motojato.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "murof.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netbears.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nba2k.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neojo.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nerdhouse.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "niklasbabel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ninetaillabs.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ninetaillabs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nagaragem.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mitrax.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myrekber.co.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ns-frontier.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "newmed.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neoz.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "numwave.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neurocny.cloud", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ojdip.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "owl.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nephelion.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "papadopoulos.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pdfmint.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peaksloth.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perpetualemotion.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "penetrationstest.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pattyliao.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pbrumby.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pinterest.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pictr.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "philippbirkholz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "poiru.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perfectcloud.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plr4wp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "phialo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pharmaabsoluta.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "powersergdatasystems.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pressureradio.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plongee-phuket.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "polymake.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "productbarcodes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "promopony.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "platformadmin.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "progress.photos", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "premiumweb.co.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "postdeck.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "planetasuboficial.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pc-tweak.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "psdsfn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pssgcsim.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quantum2.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "psb1.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qitarabutrans.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qto.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rbltracker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qwerty.work", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "provision-isr.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "realestateonehowell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rbnet.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ravhaaglanden.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redgatesoftware.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "raykitchenware.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "richardson.pictures", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rocka.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "propseller.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rise-technologies.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rteplayer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rootlair.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rosi-royal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "safegold.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roulons-autrement.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "romanticschemermovie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "runschrauger.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saimoe.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saveora.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reidasbombas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sa-mp.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sammyservers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rosabellas.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "priorite-education.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sb0.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "secretum.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "searchdatalogy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seattlemesh.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "secgui.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schubertgmbh-ingelheim.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shadowsocks.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shadowsocks.la", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shiftleft.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shopifycloud.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "safetycloud.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "serverd.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sereema.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sera.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sfg-nordholz.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sientemendoza.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skwile-cafe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.tt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slotlist.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sim4seed.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skysuite.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "socal-babes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "solarplan-berlin.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slo-net.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "speedracer.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "snakafya.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sstaging.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sparkasse.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "statecollegemortgages.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spek.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sql-und-xml.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soprabalao.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stavros.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stephensol.is", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stephsolis.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sqroot.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stephensolis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stuffi.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "strate.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stephenperreira.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studentforums.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "straka.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "summercampthailand.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spur.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "talkwithyourbaby.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tcf.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tbrindus.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teachwithouttears.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spdepartamentos.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stayme.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "testpornsite.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tgui.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shopcoupons.co.id", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "telefonseelsorge-paderborn.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "the-pcca.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tecyt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tetedelacourse.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shopcoupons.my", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tgexport.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tecnobrasilloja.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tartanhamedshop.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ticketsource.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sorakumo.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thediscovine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tkgpm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tipsacademicos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmin.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timmyrs.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomticket.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timbishopartist.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomwassenberg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toptec.net.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tomatis-nantes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "triage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theodorahome.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trumanlibrary.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toplist.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "timing.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theodorahome.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tucsonfcu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trackeye.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tmcreationweb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theruleslawyer.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trockendock.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tonytron.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tortugan.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unixtime.date", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toschool.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urology.wiki", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "upbeatrobot.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ukmeetandgreet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "valleyautofair.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "u4mh-dev-accesscontroller.azurewebsites.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "visaya.com.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "upundit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ur2.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "visudira.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "valentinesongs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "voloevents.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vyvygen.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "walk.onl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wastrel.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viscoelastico.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vialibido.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "websitesdallas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "watch-wiki.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vssnederland.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vivid-academy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "webukhost.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "villasfinistere.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wickrath.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "windowsforum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wideinfo.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "why-brexit.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "web-design.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whitewinterwolf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weplaynaked.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "widmer.bz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wildwildtravel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wmaccess.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vapesense.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "x-lan.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xlan.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xiangblog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "worldcigars.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yaharu.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--7ca.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youruseragent.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--0kq33cz5c8wmwrqqw1d.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yoga-in-aying.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yu.vc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zerobounce.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zlatakus.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zyul.ddns.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zfast.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zonesec.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zoki.art", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yandere.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--6x6a.life", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xiaoyu.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "westcentenaryscouts.org.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digitalrights.center", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dalaran.city", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "changecopyright.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "albertathome.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dheart.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "consuwijzer.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eternalabyss.int.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corningcu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agrarking.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "codingfromhell.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "futurezone.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forro.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "exe-boss.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gwhois.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "injust.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "injust.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "injust.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "injust.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flyingpackets.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "balancenaturalhealthclinic.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "groklearning.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jaccblog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cronometer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bibliomarkt.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "einsteinathome.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frebib.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "latecnosfera.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "liberapay.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meetmygoods.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cyberduck.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pivotaltracker.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mindleaking.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "distribuidorveterinario.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miticobikes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redivis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jailbreakingisnotacrime.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mkhsoft.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dingcc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikakalevi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noodweer.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leuenhagen.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sujoydhar.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "photo-paysage.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prototypefund.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mrs-labo.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dnplegal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "privatebin.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steampress.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kanzlei-sixt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "insinuator.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nfls.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "publicintelligence.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saintaardvarkthecarpeted.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "s2member.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seavancouver.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qelectrotech.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "provitec.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "injust.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nova.live", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soli.cafe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agrarking.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aldien.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aliantsoft.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allpointsblog.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alternador.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "antenasmundosat.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apk.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apn-dz.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aquarium-supplement.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arcenergy.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "atwonline.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barsashop.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bati-alu.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonnieradvocaten.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bt123.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cestasedelicias.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chentianyi.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cirurgicalucena.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comflores.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "conformax.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corporatecomputingsolutions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "d.nr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "denisewakeman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dimeponline.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "do.gd", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "e-cottage.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emporiodosperfumes.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esite.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feld.design", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flyspace.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frugalfamilyhome.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "globalprojetores.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hotcandlestick.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hulpbijmarketing.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instafind.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iosnoops.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ishamf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jamaat.hk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jerseylvi2013.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karlsmithmn.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leipziger-triathlon.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "librazy.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lifesafety.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lojaterrazul.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maury-moteurs.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mediafocus.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "memiux.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mexicom.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mundokinderland.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netlentes.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "netmagicas.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nycoyote.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "placasonline.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "radicalsub.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "servicevie.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sinuelovirtual.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slpower.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "solicafe.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spaziobenedetti.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ssenberg.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tdrcartuchos.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobias.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tsedryk.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tyroremotes.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tyroremotes.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tyroremotes.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tyroremotes.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tyroremotes.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tyroremotes.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "umsapi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vcti.cloud", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vitra-vcare.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vwsoft.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wireless-emergency-stop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wowaffixes.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xehost.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "247medplan.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "7delights.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adelightfulglow.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agrekov.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ajdiaz.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amandasage.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrewpeng.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "antirepressionbayarea.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "apponic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arenns.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bass-pro.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ben2.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bilimoe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bingobank.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bititrain.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bkhpilates.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bobstronomie.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonamihome.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bonesserver.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bretcarmichael.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bs.sb", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cenatorium.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clairegold.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coonelnel.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "creativelaw.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crosspeakoms.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danyabanya.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutzgrundverordnung.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ddel.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dismail.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dustyspokesbnb.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dwgf.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "electricgatemotorgermiston.co.za", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elixir.bzh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enamae.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "equinox.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "evelienzorgt.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "everlong.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ezakazivanje.rs", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "f-hd.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fallofthecitadel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fameng.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "felistirnavia.sk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firetotheprisons.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forgotten-legends.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "funoverip.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geertdegraaf.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gitep.org.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grailians.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grapee.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gregorkofler.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "grothoff.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gustaff.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoflerlawfirm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "houtinee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ibrainmedicine.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ifort.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "independencerecovery.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ingo-schlueter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ingoschlueter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "inter-corporate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jeremy-chen.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joespaintingpgh.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jons.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jvanerp.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jxir.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kinetiq.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "klustermedia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "komintek.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kotori.love", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kplnet.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kram.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kwedo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "l7world.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lars.cloud", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "laurenlobue.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "leevealdc.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "listen.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "livekortti.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "logiciel-entreprise-seurann.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lukasschauer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lunight.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "magnoliastrong.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matthewtester.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mcuexchange.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meruri.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mikevesch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mir.pe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "molti.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mosaic-design.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "my-host.ovh", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mybb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nerot.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nico.st", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nijikata.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "officium.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ohchouette.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "olmsted.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onebigcow.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onix.eu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "padzilla.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "passionatehorsemanship.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "peoplelikemeapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pixelurbia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pomocniczy.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "promolover.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qhse-professionals.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quality-life.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "random-samplings.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robinflikkema.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roussos.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruby-auf-schienen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruitershoponline.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seraph.tokyo", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sheepfriends.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "silashes.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simon-mueller.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simpbx.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stefan-schlueter.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stumeta.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "swvaux.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "systea.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tavsys.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "technicabv.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tfx.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tibipg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ticketslover.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trollingeffects.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uniteasia.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "upsiteseo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vidiproject.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viltsu.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "voxfilmeonline.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "warschild.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "washingtonregisteredagent.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "watchfreeonline.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wintermeyer-consulting.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wintermeyer.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wrenwrites.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--f9jh4f4b4993b66s.tokyo", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ziemlich-zackig.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ziemlichzackig.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zurgl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zyzardx.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0wx.cat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0wx.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0wx.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0wx.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alphabetsigns.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "capital-match.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "complexsystems.fail", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cranforddental.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dado.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dado.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dado.virtual.museum", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dlde.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eagleindustriesltd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elwave.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emeraldcoastrideshare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "esolcourses.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "f1fever.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "f1fever.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fauvettes.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firma-cerny.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "highlevelwoodlands.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hips.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hulldevs.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hypotheekbond.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jorisdalderup.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "logostock.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ma-eir.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "masterhelenaroma.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nabaleka.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "psw-consulting.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sbanken.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "squidparty.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "suelyonjones.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "telos-analytics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "test.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tsurezurematome.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vers.one", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whatarepatentsfor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "123pay.ir", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "69butterfly.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "7links.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "a1scuba.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abaapplianceservice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adamh.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adm-sarov.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "admin-serv.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adriancitu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "adriancostin.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aehe.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "afterhate.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agent-grow.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agouraelectrical.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agourahillselectrical.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ahughes03.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alaboard.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alexeykopytko.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "algoentremanos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allproptonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "allurescarves.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alpertron.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "alphera.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "amorgos-aegialis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anime1.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "annettewindlin.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "araxis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arethsu.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "astarmathsandphysics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "astrosnail.pt.eu.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "auszeit-lanzarote.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ava-software.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "axxial.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "b72.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "backschues.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "barbarafeldman.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "batiburrillo.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bazaarcompass.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bebes.uno", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "behamzdarma.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "berrus.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betecnet.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bin95.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "binhex.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bismarck-tb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bitenose.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blacklightparty.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blindaryproduction.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blogging-life.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bounceapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brck.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brecknell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brecknell.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brecknell.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brecknell.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brecknell.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "brunner.ninja", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "btth.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buddie5.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "budeanu.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "builtvisible.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "burghardt.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bustadice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calabasaselectrical.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "calotte-academy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "camaras.uno", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "capuchinox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "carol-lambert.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "catbull.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cheapestgamecards.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cheapiesystems.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "childrenandmedia.org.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "christian-liebel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "chupadelfrasco.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cine.to", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "clarity-c2ced.appspot.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cloudimprovedtest.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "club-adulti.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coingate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "colorblindprogramming.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "comicwiki.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "conciliumnotaire.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cool110.xyz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coptkm.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corpulant.coffee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corpulantcoffee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corpulent.coffee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "corpulentcoffee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crackcat.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "criena.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "crisisactual.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "daciamodellen.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darc-mak.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dark-infection.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "darkx.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "data.govt.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deanbank.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dechat.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "deephill.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "defont.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "delicioustable.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "delogo.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "demijn.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "denous.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "detype.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dezet-ev.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "diario-egipto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "documaniatv.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "domian.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dora.moe", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dpwsweeps.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dr-schuessler.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dragoncave.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dragonheartsrpg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "driverscollection.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "droso.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dtg-fonds.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dtg-fonds.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dtg-fonds.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dtnx.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dufrei.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dutch.desi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dvdland.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dzet.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "easycoding.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eldrid.ge", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elexprimidor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "elijahgrey.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emolafarm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "emresaglam.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enflow.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enotecastore.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "enrollapp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "epilis.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eposkent.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eposleeds.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "etincelle.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "excentos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eyps.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "failover.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "failover.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fantasyescortsbirmingham.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fastcommerce.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fastonline.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fatidique.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feastr-dev.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fedux.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "feeltennis.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fernandob.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fernandobarillas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "festaprylar.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "festival-tipps.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fiftynorth.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "filecopa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flets-ms.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fliacuello.com.ar", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "flightzero.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fondy.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fonte-trading.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "foot.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "forman.store", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frantorregrosa.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freeexampapers.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "frozen-geek.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fs-maistadt.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fscott.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fsky.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fsps.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fujianshipbuilding.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fulgenzis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "functional.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fundacionfranciscofiasco.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "g-rom.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamekeepers.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "games4theworld.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gamesplanet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gauthier.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gehrke.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geniusteacher.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "germanssky.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "getyourlifestraight.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ggs-marschallstrasse.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "giftedconsortium.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gilangcp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "glofox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gluecksgriff-taschen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gouforit.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "green-light.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "green-light.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "green-light.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "green-light.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "greenwithdecor.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guid2steamid.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "guidedselling.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haarlemsesaxofoonschool.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "haha-raku.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "harald-d.dyndns.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "head.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "health-plan-news.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heartwoodart.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hetene.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hideouswebsite.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "homeodynamics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hoplongtech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "horror-forum.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hotplate.co.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hpeditor.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hulet.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hyckenberg.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ibiz.mk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ideashop.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ieeesb.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ieeesbe.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ifelse.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "igorw.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ihc.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ilhan.name", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "iligang.cn", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "instelikes.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "insult.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "integratedmedicalonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "introvertedtravel.space", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "itzap.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ivanbenito.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jdc.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jlponsetto.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jmsolodesigns.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "joe262.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jokedalderup.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "juergenspecht.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "juergenspecht.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "juniperroots.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "k8r.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "karina.gd", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kdw.cloud", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kimisia.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kirill.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kjellner.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "koetjesenkanker.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "konzertheld.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kopteva.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kpfanworld.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kupid.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kwcolville.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kwyxz.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lafema.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lanetix.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "libmpq.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lifeinhex.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lifematenutrition.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "logement.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lolcow.farm", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "longhorn-imports.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lubar.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luso-livros.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "luvare.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "m4g.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mabankonline.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "majkyto.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maldives.cx", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mamanecesitaungintonic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mamospienas.lt", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "manneguiden.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "manualscollection.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "manuel-schefczyk.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markridgwell.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "markup-ua.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matheo-schefczyk.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maxisito.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "meierhofer.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "melaniebernhardt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "melina-schefczyk.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "menole.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "menole.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "menole.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mercadopago.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "merlet.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michael-schefczyk.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michaelasawyer.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michaelpfrommer.pub", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "michaeltaboada.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mitrostudios.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moorparkelectrical.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mortgagecalculator.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moveltix.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moy.cat", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "msch.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "multi-vpn.biz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "musclecarresearch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mustasj.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myaggic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mybloggedlife.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myclinicalstudybuddy.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myrandomtips.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myrotvorets.center", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mz-mz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "n-m.lu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ncea.net.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "neko-nyan-nuko.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nexxus-sistemas.net.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "niadd.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nordmoregatebilklubb.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nvq.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "odoo.co.th", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "okakuro.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oliveoiltimes.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ontdekhetzelf.nu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openfitapi-falke.azurewebsites.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openspa.webhop.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "opryshok.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "orcsnet.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oribia.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oskrba.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paazmaya.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parisescortgirls.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "parleamonluc.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "perfectbalance.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "photodeal.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pixlfox.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pizzagigant.hu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "planetau2.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "planitz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "planitz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plant-gift.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "planteforum.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "plextv.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pogoswine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ponga.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "popoway.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "portsdebalears.gob.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "postfalls-naturopathic.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "potworowski.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "praerien-racing.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prelved.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prelved.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prelved.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prelved.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prelved.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prelved.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prelved.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prelved.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "priorityelectric.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "prlved.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "probely.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "psb4ukr.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "psu.je", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ptal.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pv-paderborn-now.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quareal.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quasseldroid.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "question.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qwertee.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rainbowstore.com.ua", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rainpaper.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "realum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "realum.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "realum.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "realum.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "redshoeswalking.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "refreshliving.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "requestr.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "resolvefa.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "resolvefa.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "resourceconnect.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "restauranttester.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reversecanada.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reverseloansolutions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reversesouthafrica.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "review.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "risada.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "robpol86.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rockymountainspice.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roemhild.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ronanrbr.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "roninf.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rrwolfe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ruskod.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rwky.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ryzhov.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sacred-knights.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sameworks.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saoneth.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sarpsb.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scangeo.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schefczyk.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schefczyk.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schefczyk.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schefczyk.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "scheuchenstuel.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schwarzes-muenchen.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "schwinnbike.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sebastiaperis.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "secure-gw.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seitai-taiyou.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sellguard.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sewoo.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sicilianbalm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "significados.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simpleinout.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "skei.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smartmomsmartideas.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smeso.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smimea.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smuncensored.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sncdn.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sniderman.us", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "soomee1.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sozai-good.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "speechmate.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "st-steuern.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stadterneuerung-hwb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stb-schefczyk.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steamerrors.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "steckel.cc", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stembureauledenindenhaag.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stlu.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stodieck.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stonehammerhead.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "studio-fotografico.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stuudium.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "subastasdecarros.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "supercinebattle.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sw33tp34.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "synecek11.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tacotown.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tanz.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tb-itf.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tbs-certificates.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tc.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "teatrarium.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "telefoncek.si", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tennismindgame.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theboxofcarlos.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thefrk.pw", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thriftdiving.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tik.edu.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tlca.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tntmobi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobias-kluge.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tobis-rundfluege.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "toom.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "trhastane.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tutanota.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "typist.tech", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ucppe.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ullah.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ultimatemafia.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "unieducar.org.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ursae.co", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "urukproject.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uuit.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "v-d-p.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "v2bv.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "venturum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "venturum.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "venturum.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "venturum.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vernonsecureselfstorage.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "verteilergetriebe.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "victoriaartist.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "victoriastudio.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vozami.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "vuzi.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "week.report", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weerda.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weimz.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weinbergerlawgroup.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wellcom.co.il", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wellnesscheck.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wesreportportal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "whereismyorigin.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "who-calledme.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wien52.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wifi-names.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wiki-play.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wild-turtles.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wili.li", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "willowdalechurch.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "winfieldchen.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wjg.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wjg.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wollongongbaptist.hopto.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wumbo.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wumbo.ga", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wumbo.gq", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wumbo.ml", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wumbo.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xblau.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--grnderlehrstuhl-0vb.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xn--zettlmeil-n1a.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yaru.one", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "youhua.ru", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yuxuan.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zebbra.ro", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zettlmeissl.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zhitanska.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zodiacohouses.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "arvutiladu.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "freifunk-burgaltendorf.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "huislaw.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kry.no", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kry.se", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "maeplasticsurgery.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moonchart.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "openmirrors.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "upd.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viepixel.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wochennummern.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "0iz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "9iwan.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abidinginhesed.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "abinyah.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "acul.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "advara.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "agilob.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "akijo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "americafamilylawcenter.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andrew.fi", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "andyt.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "anextraordinaryday.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "angrysnarl.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "animaltesting.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "antennista.milano.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "aotearoaleaks.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "australien-tipps.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "averageinspired.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bedamedia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bennierobinson.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "betterna.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "biobuttons.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blackseals.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bleaching-tipps.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "block65.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blogdieconomia.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blogdimoda.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blogdimotori.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "blogtroterzy.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bouzouks.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "bsc-rietz.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "buttonline.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "childrenfirstalways.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cj-espace-vert.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "coinloan.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "compliancerisksoftware.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cristau.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "cylindricity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "danamica.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dashlane.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "datacool.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dellipaoli.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "depotsquarekerrville.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "dice.tokyo", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "digilicious.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "drei01.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eco-derattizzazione.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eco-work.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "edgetalk.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "egov4.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ehaccp.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eposbirmingham.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eposbrighton.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eposcardiff.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eposleicester.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eposliverpool.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eposlondon.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "epossheffield.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eposswansea.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eposyork.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "errietta.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "eshop-prices.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "fengyi.tel", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "filhin.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "firemudfm.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "geek.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "genehightower.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "globalisierung-fakten.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "gooday.life", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "goshin-group.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hacker101.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "healthy-map.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "heiliger-gral.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hevertonfreitas.com.br", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hiltonarubabeachservices.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hiv-symptome.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "hokioisecurity.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "homesteadfarm.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "horaceli.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "igmus.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ile-sapporo.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imbianchino.roma.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imex-dtp.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "imjustcreative.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "infinityepos.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ingenius.ws", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ipv4.cf", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "issio.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jetflex.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jimdorf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "jts3servermod.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "justbookexcursions.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kesslerwine.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "kredit-abzocke.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "krypt.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lang-php.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lareclame.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lazyframe.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lenr-forum.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "lernenamsee.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matel.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "materialyinzynierskie.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "matsu-semi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mediablaster.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mediagrand.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mediajurnal.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "miggy.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mnguyen.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "moetrack.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "mscc.mu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myapexcard.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "myoueb.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nacktwanderfreunde.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "naga-semi.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nbriresearch.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nevntech.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "nfl.dedyn.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "noslite.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "onpay.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "ope.ee", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "oxborrow.ca", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "paipuman.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "patdorf.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pbz.im", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pdox.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "posbank.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pozemedicale.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "present-m.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "princovi.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "printler.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "pro-wiert.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "producertools.io", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "qualtrics.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "quasarelectronics.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "radicaloptimism.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "real-digital.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rebane2001.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reddingo.at", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reddingo.be", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reddingo.ch", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reddingo.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reddingo.com.au", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reddingo.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reddingo.es", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reddingo.eu", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reddingo.fr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reddingo.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reddingo.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reddingo.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "reddingo.nz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rein.kr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "restaurant-oregano.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rizospastis.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "rootsandrain.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "saitrance.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sec-research.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securelect-inspection.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "securitypluspro.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seltendoof.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "seo-analyse.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "shift-record.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simonbondo.dk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "simonfischer.info", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "slaughter.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimento.napoli.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "smsprivacy.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sofiavanmoorsel.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "spasicilia.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sportnesia.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stephenj.co.uk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "stolkpotplanten.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "storycollective.film", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sustainabilityknowledgegroup.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "sweetgood.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "symptome-erklaert.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "techcracky.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thebigbitch.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thekev.in", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "theserver201.tk", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "thesisgeek.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "travel365.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tru.ltd", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "tworaz.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "txcap.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "uddi.ng", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "undecidable.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "veterinario.roma.it", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "viciousflora.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "virtualmt2.pl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "w5gfe.org", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wasfestes.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "watchparts-and-tools-okayama.co.jp", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "weacceptbitcoin.gr", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wieneck-bauelemente.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wivoc.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wolszon.me", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wordcounter.net", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "work-in-progress.website", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "wuerfelmail.de", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "x13.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xmenrevolution.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "xpletus.nl", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "yosbeda.com", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, { "name": "zskomenskeho.cz", "policy": "bulk-18-weeks", "mode": "force-https", "include_subdomains": true }, // END OF 18-WEEK BULK HSTS ENTRIES // START OF 1-YEAR BULK HSTS ENTRIES { "name": "1-2-3bounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1st-bounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1stclassbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1stforfun.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1stpeninsulabouncers.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "20denier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2heartsbookings.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3countiescastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a-classinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a1bouncycastlehire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a1jumpandbounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaapl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aandkevents.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abacusbouncycastle.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abbadabbabouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abbottscastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abcbouncyfactory.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abcpartyhire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abibruce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboces.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abouncycastleman.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abuse.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aceinflatables.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "achterblog.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acorncastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "activehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "activeleisure.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adsbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adtgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adventureforest.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aergia.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aid-web.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airborne-inflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airmaxinflatables.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airplay-inflatable-hire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajeventhire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albbounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allaboutfunuk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allactioneventhire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allbouncesurrey.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alphabouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alphainflatablehire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amateurvoicetalent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amh-entertainments.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amministratore.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angryteeth.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ansichtssache.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antennista.pavia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appveyor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arieswdd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arniescastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arterienundvenen.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artionet.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astarbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atelierbw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atigerseye.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atomicbounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aucklandcastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auto-plus.tn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "av01.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "availablecastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aycomba.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aylesburycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayrshirebouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b4bouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bag.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bagsofbounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baildonbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bannermarquees.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "batterystaple.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbcastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bcmhire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bee-line.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beethoveninlove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beeutifulparties.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beezkneezcastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belfastbounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belvoirbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bennettsbouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bennettshire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bensbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bensinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestoliveoils.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestpartyhire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bexleycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beyondbounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigbouncebouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigbouncetheory.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigbounceuk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bilbayt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bio-disinfestazione.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bjsbouncycastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bkositspartytime.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "black-mail.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blastentertainment.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blivawesome.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloggytalky.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnbsinflatablehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnjscastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bobnbouncedublin.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boosinflatablegames.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "born2bounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounce-a-roo.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounce-n-go.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounce-on.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounce-r-us.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounce-xtreme.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounce4fun.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounce4kidz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounce4less.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncea-bout.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounceaboutnewark.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounceaboutsussex.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncealotnorthwest.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncearoundevents.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncearoundsheffield.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounceawaycastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncebackcastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncebookings.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncecrazy.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncemaniaevents.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncemaniainflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncenortheast.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncenpaint.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounceroosevents.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncers-bouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncesquad.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncetasticuk.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncetheparty.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounceunlimited.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncincastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncinghigher.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncingscotland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncy-castles-surrey.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncybaileys.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncybouncyboocastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastle.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlehire-norwich.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlehirebexley.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlehirechelmsford.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlehirehull.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlehirelouth.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlehiremalvern.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlehireoldham.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlehiresurrey.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlehirewinchester.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastleman.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastleparade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlesgalway.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastleshire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlesin.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlesinderby.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlesisleofwight.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlesmonaghan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlessheerness.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncydays.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncykingdom.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncykings.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncykingsnortheast.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncymacs.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncyrainbows.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncytime.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bound2bounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bournefun.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bradfordhottubhire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bradfordmascots.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bramhallsamusements.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandstead.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brau-ingenieur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "braudoktor.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brighouse-leisure.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brightonbouncycastles.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brilliantbouncyfun.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bristolandwestonsuperbounce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buttermilk.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candykidsentertainment.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canterburybouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartooncastles.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casasuara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castlecapers.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castlekingdomstockport.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castles-in-the-sky.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castleswa.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbc-hire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centio.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cfsh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "champdogs.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "champdogs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "championcastles.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chapelfordbouncers.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checos.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheekycharliessoftplay.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chehalemgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheltenhambouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "childrensentertainmentleicester.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chloescastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christian-gredig.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christmaspartyhire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chronology.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cipartyhire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clairescastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clanebouncycastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloud9bouncycastlehire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cobracastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cocoscastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codific.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coloristcafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colourfulcastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cometbot.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conejovalleyelectrical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connectmath.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cookescastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cookiestudies.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cool-parties.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coolattractions.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coole-fete.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coolkidsbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "covbounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crazycastles.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creamcastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creators.direct", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crowncastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crownmarqueehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "croydonbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cskentertainment.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "currentlystreaming.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daisidaniels.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dancingcubs.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danmarksbedstefredagsbar.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbentertainment.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dblcastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dcbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ddracepro.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deano-s.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deegeeinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derbybouncycastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derdewereldrommelmarkt.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detroitzoo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dgbouncycastlehire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalsurge.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discarica.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestatori.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazione.venezia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazione24.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni-umbria.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disroot.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dizzythewizard.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djwaynepryke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dorsetentertainments.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dosvientoselectrical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamlux.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamlux.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtuaarsfest.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duncanfamilytrust.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dvhosting.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eastlothianbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eft.boutique", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electronicafacil.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ellisamusements.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ellisleisure.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elternbeiratswahl.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epicinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eposbristol.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erkaelderbarenaaben.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethika.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "event4fun.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evolutioninflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exclusivebouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabian-fingerle.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facebylouise.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fachschaftslisten.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fairplay.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familyparties.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fantasycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fantasypartyhire.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastpresence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fb.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fbcdn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fbsbx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdevs.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstchoicebouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstclasscastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstclassleisure.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flyp.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "francesca-and-lucas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freedomonline.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fun-bounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fun-tasia.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fun4ubouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fundayltd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funfactorleeds.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funhouse-inflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funtime-inflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funtimesbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuzoku.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaio-automobiles.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gameshowchallenge.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gardengameshireuk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geerdsen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geometra.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getsetbounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getupandbounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gfcleisure.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giggletotz.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gladwellentertainments.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glcastlekings.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glendarraghbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gobouncy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gobouncy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gowildrodeo.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gumi.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h24.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happybounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happykidscastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haveabounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haydenjames.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hazeover.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heldundsexgott.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hendrinortier.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hengstumone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "henleybouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hertsbouncycastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiddenhillselectrical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hireabouncycastle.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horrell.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huglen.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idraulico.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ijunohana.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ikinokori-marketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ildomani.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impas.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imprendo.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impresa-pulizie.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infinitybas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inflatablehire-scotland.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inflatablesny.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inflatadays.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inflatamania.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infovision-france.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inhouseents.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interimages.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investarholding.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itraveille.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsabouncything.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsecblog.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsmyparty.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itspartytimeonline.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jagbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamieweb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jammysplodgers.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jbsinternational.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jdpleisure.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jdscastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeankygourmet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jerseybikehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jerseyjumpingbeans.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jessesjumpingcastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jimmycn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jjspartyhire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jkinteriorspa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmalarcon.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmentertainment.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joellimberg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jollykidswobbleworld.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpsinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jump4funinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jumpandbounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jumpandjivechildrensparties.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jumparoundbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jumparty.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jumpeasy.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jumpingcastlesonline.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jumpingjacksbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jumpinmonkeys.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jumpnplay.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "junglejackscastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jvbouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jvphotoboothhire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kanecastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kangaroo-bouncycastle.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kangaroojacks.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karasik.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katieskandy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katieskastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katscastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kbbouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kbleventhire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kellyskastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kensbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khas.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kids-castles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kidsplay-plymouth.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kidsplaybouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kidzpartiesllp.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kidzsmile.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiki-voice.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "killymoonbouncycastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "king-of-the-castles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingiescastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingofthecastlecoventry.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingofthecastlesentertainments.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingofthecastlesouthwales.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingofthecastlesrhyl.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kogudesi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konst.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koodimasin.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kotorimusic.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koushinjo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krazykastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krazykoolkastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krazyphotobooths.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuronekogaro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kutsankaplan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laindonleisure.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakesherwoodelectrical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lce-events.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leapandjump.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learn-smart.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leetcode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leisure-supplies-show.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lenidh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leon-tech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letsbounceuk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letspartyrugby.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lidel.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lilysbouncycastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "limberg.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lipartydepot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lisburnhottubnbounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littlescallywagsplay.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lizzythepooch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "localbouncycastle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loma.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luckycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukesbouncycastlehire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maaya.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mandcbouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manicbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuscript.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marshallscastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mayomarquees.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mayopartyhire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mbainflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mclinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcsinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meg-a-bounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megabounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megabouncingcastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megainflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mehalick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melodiouscode.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "memorycards.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mendipbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midlandsfundays.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midlandsphotobooths.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikerichards.photography", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minigolfandgames.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minimayhemsoftplay.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mintclass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mishkovskyi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mjasm.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkbouncyhire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mojilitygroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mondo-it.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monstermashentertainments.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moorfunevents.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morgansleisure.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrbounce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrbouncescrazycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrbouncycastle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrcoolevents.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msi-zlin.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msnr.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mucmail.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myjumparoo.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n26.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "narazaka.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newburybouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newburyparkelectrical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newmarketbouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninaforever.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noon-entertainments.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nopaynocure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "normandgascon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northdevonbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novecity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oakparkelectrical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "officefundays.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ohsohairy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldbrookinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldbrookmarqueehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oliode.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omgbouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onceuponarainbow.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ond-inc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onestopcastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oodlessoftplay.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orangejetpack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oswbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p22.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paprikas.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkviewmotorcompany.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parquettista.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "party-time-inflatables-durham.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partyhireliverpool.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partyrocksbounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partytime-uk.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partytimeltd.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partyzone.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pathagoras.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pedrosaurus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pelican.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfectsnap.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philippebonnard.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pjentertainments.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pjleisure.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playdaysparties.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plymouthbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pointum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poshcastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premierbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premierevents.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prestigebouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "primalinea.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptmarquees.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qaconstrucciones.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quevisiongrafica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qvggroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raccoltarifiuti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raeu.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raidensnakesden.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raidensnakesden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raidensnakesden.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainbowinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rascals-castles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rascalscastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rcdocuments.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realitycrazy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "registerforevent.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regraph.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rgbinnovation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rickscastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rmsupply.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robocop.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rockinronniescastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rockitinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rodeobull.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rodeohire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rodeosales.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roguefortgame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roma-servizi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rondouin.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roxiesbouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rsl.gd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubberlegscastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russellupevents.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s404.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandmanintel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scallywagsbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scamblockplus.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scatsbouncingcastles.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "security-24-7.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seo.london", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfile.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfleisure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sft-framework.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shad.waw.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sillysnapz.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simpleinvoices.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simply.scot", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sj-leisure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sjleisure.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skhire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skuldwyrm.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skylineservers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skys-entertainment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyzimba.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slavasveta.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smilessoftplay.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sndbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snote.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softplay4hire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solentbubblesandbounce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solihullinflatables.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonixonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sos-idraulico.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sosoftplay.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "southambouncycastle.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spahireleeds.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startaninflatablebusiness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stivesbouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stm-net.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoffelnet.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stordbatlag.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "striptizer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studio-architetto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sub-net.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superbouncebouncycastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supercastlesbrisbane.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supercastlessunshinecoast.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supersteosbouncycastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sushi.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svantner.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swfmax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t47.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taylors-castles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tbtech.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecne.ws", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texasvolunteerattorneys.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tfg-bouncycastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebcm.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebestfun.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebouncedepartment.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefunfirm.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegeekdiary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehaxbys.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thepartydoctors.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thepieslicer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thinkingplanet.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thxandbye.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiggeriffic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tilleysbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timberkel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinytownsoftplay.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tmc.com.mt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokyo-onkyo.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topclassfun.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topdogsinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toptheto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totalparts.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toushi-return.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transnexus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traslocare.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "treehouseresort.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trianglecastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tubs4fun.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuppenceworth.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turtles.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvs-virtual.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "txlrs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unobrindes.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unworthy.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usbevents.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "v-tek.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vividinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waonui.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warebouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warringtonkidsbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wdmg.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websiteout.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websiteout.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wecleanbins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weddingsbynoon.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wefitboilers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werkgroepderdewereld.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westcoastcastles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westmidlandsbouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westmidlandsinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wexfordbouncycastles.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whizzzbang.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikivisually.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wizardbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wobblywotnotz.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worcesterbouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worcesterbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldofparties.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldofwobble.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wowbouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wp-master.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--erklderbarenben-slbh.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--t-oha.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xntrik.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtremebouncepartyhire.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yabuisha.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ybresson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yorkshiredalesinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yorkshireinflatables.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youftp.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zakspartiesandevents.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zk9.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zooom2.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a-oben.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bkentertainments.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cir.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbrgn.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "draftguru.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hacksoc.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justinstandring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kato-yane.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kollega.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lacaveducinquantenaire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovg.ren", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelizquierdo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monolithindustries.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photo-livesearch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhodes.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securi-tay.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stedb.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefanimatrix.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiihosen.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsumegumi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubermail.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vlovgr.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wootware.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5chat.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaltocapital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ait.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alice.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpinestarmassage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andybrett.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archined.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlas-staging.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlasone.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bakibal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bergfex.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bizstarter.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bolovegna.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boulzicourt.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bourhis.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buildplease.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "byeskille.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centurionunderground.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cles-asso.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codetripping.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comparatif-moto.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "concursos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consommateuraverti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creativedigital.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creativewolf.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptonom.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cytech.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "czaw.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daisy-peanut.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daisypeanut.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dasinternetluegt.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desec.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digibull.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfesta.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.verona.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dll4free.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dominicself.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreyfussplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-id.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electrostatics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emailconfiguration.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emex.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "equipandoloja.net.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "equippers.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eternit.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familytreehq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finch.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fiscoeconti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flowcom.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frasesdodia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gate2home.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giardinaggio.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gobarrelroll.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gvobgyn.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handbrake.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harapecorita.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haus-henne.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haushenne.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hawkofgeorgia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herberichfamily.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hlucas.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoahau.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holisticacupuncture.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostinglogin.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-verbi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indiaflowermall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inetserver.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipfs.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isaackhor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamesmarsh.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jas-team.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaytx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeancardeno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jec-dekrone.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jewishboyscouts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "journeyfriday.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juanhub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juszkiewicz.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klm-huisjes.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klmhouses.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knarcraft.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krokedil.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kvilt.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larsklint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laspequenassemillas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lhost.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lidogr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logophiliapress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lugui.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luizkowalski.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luvbridal.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lyon-interactive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mafiapenguin.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maiaimobiliare.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manawill.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdiv.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michmexguides.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mksac.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monkeytek.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mycreditcardcenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myjumpsuit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nadine-chaudier.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nah.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nasbi.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neba.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orchidlive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panda-community.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parsonsfamilyhomes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pascal-bourhis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "payboy.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pbourhis.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planetromeofoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pony-cl.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protempore.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quic.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "risparmiare.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rmrig.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rockagogo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosevillefacialplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rsap.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rueg.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rumlager.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryu22e.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "satimagingcorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "save-me-koeln.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "semaflex.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shaicoleman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shehata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.hn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simivalleyelectrical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplifylivelove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sipc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sparanoid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spidernet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "splendorservizi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sport-socken.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sprucecreekclubs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sprucecreekgcc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spufpowered.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sr33.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taabe.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecuriousdev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thotpublicidad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thousandoakselectrical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tribac.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valueng.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "victorhawk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villa-gockel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villagockel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visor.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vjeff.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vosgym.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vreeman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waf.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wallpaperup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webdesignplayground.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webmotelli.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westlakevillageelectrical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wogo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wormbytes.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wtw.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yallamotor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zachaysan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "233blog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4vector.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5y.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advento.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aerisnetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anconaswine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andoms.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrewensley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antivirusprotection.reviews", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avcd.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avocode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bella.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bgfashion.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bioetco.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluepearl.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bookreport.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caroes.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castible.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clarkwinkelmann.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cliniquevethuy.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudcloudcloud.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coco-line.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collinel-hossari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collinelhossari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csfd.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datatruckers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datatruckers.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "degracetechnologie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denaehula.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dieecpd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dienchaninstitute.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitaldem.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "docs.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolci-delizie.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dont.watch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonsunited.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonsunited.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonsunited.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonsunited.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonsunited.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonsunited.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonsunited.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtnx.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtnx.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-lambre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-surveillant.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eaucube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "el-hossari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ensley.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ergobyte.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eternalsymbols.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expertsverts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyelashconcept.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "felixcrux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fetlife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitness-challenge.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fluteandpianoteaching.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freizeitplaza.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galinos.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gandalfservice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gedlingcastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gehopft.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geleenbeekdal.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gmpark.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gommista.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guozeyu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gymagine.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackergateway.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hatul.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heikorichter.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helios4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hexhu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiccupsandjuice.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hlsmandarincentre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holvonix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hroling.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "https4all.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huto.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i879.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iaeste.or.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iczc.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "illsley.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inkvisual.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-jobbank.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itswincer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jababu.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jannisfink.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jltctech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobindex.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johndball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonpavelich.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "julianxhokaxhiu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ken.fm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kenneths.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "l7plumbing.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lanternalauth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larondinedisinfestazione.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laviedalex.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "librebox.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "librisulibri.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lin.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littlefamilyadventure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lobsangstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loew.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magasinsalledebain.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magasinsalledebain.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malachiteauth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maniosglass.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketingvirtuales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masterplc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthieuschlosser.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "max-went.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediatorzy.waw.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megaflix.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micr.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moteksystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myalliancechurch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namethatporn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netmeister.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neurabyte.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickserve.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nipax.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nove.city", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novecity.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novecity.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ns2servers.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "numarasorgulama.tel", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okib.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omegahosting.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opencircuit.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pabloarteaga.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pabloarteaga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pabloarteaga.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pabloarteaga.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pabloarteaga.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pabloarteaga.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pabloarteaga.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passwordsecurity.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patrickbrosi.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pawel-international.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peanutbase.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peanutproductionsnyc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinhadigital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "port67.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potolok.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "procinorte.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raspberryultradrops.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raven.dog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redir.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robots-ju.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanitairwinkel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "semaphore-studios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sergefonville.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shellshock.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "significantbanter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skigebied.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimentoamianto.latina.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimentorifiuti.veneto.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soybase.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spamdrain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sreeharis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stepstone.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamindir.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcnapplications.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teemulintula.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tem.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tescoludia.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testovaci.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texaspaintingandgutters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thezillersathenshotel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tilesbay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tls-proxy.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ur.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urcentral.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vaindil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vmoe.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volta.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waterleeftinbeek.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waterschaplimburg.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webstu.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wegotcookies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wellist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wsspalluto.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--mgbmmp7eub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--pe-bka.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yutakato.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "123termpapers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3queens.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3queens.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "6lo.zgora.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ac.milan.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acemypaper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acordes.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agoravox.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agoravox.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amato.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amministratorecondominio.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apio.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arteaga.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aulaschrank.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auskunftsbegehren.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avova.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balconnr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bennygommers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bgr34.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bngs.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bologna-disinfestazioni.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsdunix.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chapiteauxduleman.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheapestgamecards.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "code-judge.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cy.technology", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daravk.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dcards.in.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dealapp.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "degoulet.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derattizzazione.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derattizzazioni.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derattizzazioni.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detekenmuze.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detuinmuze.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dierabenmutti.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestando.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazione.brescia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "distribuidoracristal.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dorth.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dpisecuretests.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonprogrammer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egarden.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricalagoura.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epiteugma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faidanoi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fburl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fioulmarket.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gastoudererenda.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gcbit.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekshirts.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekz.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gensenwedding.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getticker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giardinaggio.napoli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "global-village.koeln", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grinnellplans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grootinadvies.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guhei.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guillaume-briand.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haccp.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hightimes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hub385.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humblebee.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humblebee.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humblebee.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humblebee.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humblebee.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humblebee.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humblebee.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humblebeeshop.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypothyroidmom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imgup.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isaackabel.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isaackabel.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isaackabel.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isaackabel.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isaackabel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joliettech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joshlovephotography.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juliedecubber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keldan.fo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koreaboo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krautomat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kruisselbrink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labcoat.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landinfo.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ledeguisement.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lenguajedeprogramacion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lib64.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linostassi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livecards.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livecards.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livecards.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livekarten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lon-so.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lv5.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnificentdata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medcrowd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meiqia.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minerstat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minor.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mojeco2.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moskeedieren.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motezazer.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "movie-infos.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mymommyworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n-design.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natchmatch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natlec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturalkitchen.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncc-qualityandsafety.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninfora.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noovell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northern-lakes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nunnun.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "offbyinfinity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omoteura.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "one-resource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "organisatieteam.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overstemmen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulward.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcmkrembangan.or.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcrypt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pedicurean.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petlife.vet", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pianetatatuaggi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixelution.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prakhar.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progeon.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proggersession.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rcmlinx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rentacaramerica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rittau.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robotattack.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubenkruisselbrink.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sana-store.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sana-store.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sana-store.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandyrobsonhypnotherapy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sci-internet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scp500.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shutter-shower.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siciliadisinfestazioni.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soohealthy.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soopure.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportparks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportparks.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssuiteoffice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssuitesoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stevenz.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stucydee.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studionowystyl.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuudium.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tabledusud.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taichi-jade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techview.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebit.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "todoscomciro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomravinmd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tracinsurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trunk-show.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vagaerg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vagaerg.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varcare.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vik.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vvdbronckhorst.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xdty.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xjpvictor.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--dragni-g1a.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yamashita-clinic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "young-sheldon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2333blog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "233boy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2li.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "439050.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abckam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aceanswering.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adhd-inattentive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agoravm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agouraelectrician.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alljamin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altaplana.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ameriikanpoijat.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antennisti.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antyblokada.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apache-portal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apination.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archivero.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arimarie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arlingtonwine.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aromacos.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arteaga.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arteaga.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arteaga.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artecat.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artmarketingnews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atelierdeloulou.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atheist-refugees.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "austinuniversityhouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "australianimmigrationadvisors.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autocrypt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autres-talents.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avexon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awxg.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bachata.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barabrume.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bealpha.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beerview.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benjii.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benzi.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestbatteriesonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bicecontracting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biletyplus.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biletyplus.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biletyplus.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biocheminee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bistrotdelagare.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinwalletscript.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blazing.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blobfolio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bludnykoren.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bodypainting.waw.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bopiweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bordes.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bovenwebdesign.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsa157.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsd-box.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bulario.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bytema.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bytema.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caarecord.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calcedge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campingskyhooks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canker.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "captainark.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartadeviajes.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartadeviajes.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartadeviajes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartadeviajes.com.ve", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartadeviajes.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartadeviajes.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartadeviajes.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartadeviajes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartadeviajes.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartadeviajes.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartadeviajes.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cashsector.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certifiednurses.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cfpa-formation.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkspf.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cherie-belle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chiboard.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christopherkennelly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ckenelley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ckenelly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ckenely.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ckenneley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ckennelley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ckennely.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearbreezesecuritydoors.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinicminds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clnc.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clorophilla.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coldstreamcreekfarm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collectorknives.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "commco.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "convergencela.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corporateclash.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creatieven.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cribcore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cronologie.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cueca.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cumplegenial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberseguranca.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "czfa.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidbranco.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decs.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dedg3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deparis.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devagency.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dicio.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dildoexperten.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "direct-sel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directspa.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.venezia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doesburg-comp.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dotshule.ug", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dp.cx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillingsupplystore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drmtransit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drugs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsmjs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duoquadragintien.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "durfteparticiperen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-tech-solution.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-techsolution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-techsolutions.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eastsidecottages.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebizarts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eddokloosterman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edxn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electric-vault.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricalagourahills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricalcalabasas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricalcamarillo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricalconejovalley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elviraszabo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elwix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elysiria.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emvoiceapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epa.com.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ephesusbreeze.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epreskripce.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etech-solution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etech-solution.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etech-solutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etechsolution.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurolocarno.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euroskano.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurousa.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "event64.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evilsite.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exchaser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extreme.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyona.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f2h.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faerb.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastvistorias.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "federatedbank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feuerwehr-mehring.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filanthropystar.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fliino.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fliino.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fliino.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fliino.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flowinvoice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fmussatmd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotonjan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frederikvig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fwest98.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ganasoku.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gayukai.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generalinsuranceservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getpagespeed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goozp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goquiq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorgias.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gotrail.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grifomarchetti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gutschein-spezialist.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "habbixed.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "habitat-domotique.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haccp.bergamo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hansbijster.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haptemic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hashimoto-jimusho.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdnastudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heijdel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hf51.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hibari.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hitokoto-mania.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hnyp.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoaas.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "honeycreeper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoorr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howgoodwasmysex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humboldtmfg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hunstoncanoeclub.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i5y.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iainsimms.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iainsimms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iane-ccs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ich-hab-die-schnauze-voll-von-der-suche-nach-ner-kurzen-domain.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idered.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imponet.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inetsoftware.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interiery-waters.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isaaczais.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "istheinternetonfire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-maker.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j0bs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jastrow.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jedayoshi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeepeg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jlot.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joel.coffee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joeyhoer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johego.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonlu.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jose-alexand.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jselby.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "judge2020.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaeru-seitai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalamos-psychiatrie.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalwestelectric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamppailusali.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kanag.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kargl.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kfirba.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirwandigital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kivitelezesbiztositas.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kocherev.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kochereva.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koka-shop.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konventa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "korben.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kotly-marten.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koval.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kraftzeiten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kwench.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "la-compagnie-des-elfes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laboutiquedejuliette.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lanternhealth.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laut.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "law.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "le-drive-de-just-vet.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leadquest.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesaffre.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leviaan.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "librarytools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libre-service.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lincnaarzorg.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livelifewithintent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lojavirtualfc.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "losangelestown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucaslarson.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luedeke-bremen.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mamuko.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manageathome.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcelinofranchini.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcelinofranchini.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcelinofranchini.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcelinofranchini.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketingco.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "math.hamburg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattari-app.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattmcshane.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mauricedb.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxpl0it.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mchan.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcpaoffice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "md-clinica.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdlayher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medschat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medvet.com.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melopie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "memo.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metro-web.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mfen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midkam.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikhirev.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minehattan.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minerva2015.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirrorsedgearchive.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirrorsedgearchive.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mjscustomcreations.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mlpvector.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mms.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mockerel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modelclub-draveil.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "momy-genealogie.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moolah.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moreal.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motowilliams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrknee.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mushman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myessaygeek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygreatlakes.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypaperdone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myref.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysexydate24.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namskra.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nbad.al", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nc-beautypro.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nc-formation.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "necio.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neilfarrington.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neoeliteconsulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neonataleducationalresources.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neonatalgoldenhours.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nepremicnine.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nettamente.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nhsuites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickscomputers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikkasystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninepints.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nirjonmela.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noelblog.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordlichter-brv.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "norichanmama.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northokanaganbookkeeping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nsa.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oclausen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oisd.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oliverclausen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oliviervaillancourt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-calculator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-stopwatch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onspring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opalesurfcasting.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orum.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pablo.scot", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pablo.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pabloarteaga.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pabloarteaga.science", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "padron.com.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pasearch.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patentados.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcdocjim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peaceispossible.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peddy.dyndns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pedro.com.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penguinprotocols.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permajackofstlouis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petit-archer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pflan.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pimpmypaper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinklittlenotebook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixiv.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixloc.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planer.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plannedlink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planujemywesele.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plasticsurgerynola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playreal.city", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pocitacezababku.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "policereferencecheck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powersergholdings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praktijkdevecht.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prodware.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "promotioncentre.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proteogenix-products.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prylarprylar.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psdsuc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pulpproject.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "punchunique.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvda.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvpctutorials.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pzsearch.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qruiser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quartix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qwq.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r1ch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rammstein-portugal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raystark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recipex.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "red-trigger.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "red2fred2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redactieco.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regisearch.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resfriatech.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ristrutturazioneappartamento.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rollingbarge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rook-playz.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roopakv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roseparkhouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruobr.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rwx.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s-n-unso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s-s-paint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salon1.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandiegotown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarahplusdrei.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schwerkraftlabor.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "screenmachine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "season.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sec455.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sec530.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sergiozygmunt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "setenforce.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexdocka.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shico.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiga1.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shihadwiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shouttag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shura.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sim-minaoshi.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplyregister.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sinclairinat0r.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sjaakgilsingfashion.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skedda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skiddle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sknclinics.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skolagatt.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyderby.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slonep.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smalle-voet.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartcpa.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socialtrends.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "societe-chablaisienne-de-revetements.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "societe-chablaisienne-de-revetements.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sodadigital.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sokouchousa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sommefeldt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonicdoe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soruly.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spaconnection.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "specialtyalloys.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speechdrop.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speedof.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "splintermail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spoluck.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sr-33.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "staktrace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stouter.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuudium.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suroil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swap.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sweets-mimatsu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sym01.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "systemd.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tanie-uslugi-ksiegowe.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tariff.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamninjaapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techformator.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tematicas.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tenzer.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terra.fitness", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theadultswiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thewoolroom.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiglitub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinlc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiny.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobias-kleinmann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobyx.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "todacarreira.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toekomstperspectief.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokinoha.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokky.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomaspatera.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toothdoc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torngalaxy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torte.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "touchweb.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tourtrektrip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toyota-kinenkan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travellovers.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tribly.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "troomcafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trustednetworks.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuwaner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuza.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tv-programme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uhlhosting.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultimate-uk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultrasite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uno.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utcast-mate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vantagepointpreneed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vats.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vaughanrisher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ventilateurs-plafond.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verbier-lechable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vernonfigureskatingclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vintagebandfestival.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waltzmanplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wannaridecostarica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wezl.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wisak.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workshopszwolle.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workshopzwolle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpformation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "writemyessay.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wrmea.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xnu.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xsec.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourfriendlytech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yusu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zacharyschneider.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zachschneider.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zargescases.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zitseng.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zrnieckapresny.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7graus.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abcstudio.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adminlinux.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aipbarcelona.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akdusekbudil.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alanhua.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allaboutswing.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allaboutswing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allcleanservices.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amaresq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amchainitiative.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amesgen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amnesty.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amobileway.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ampproject.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ampproject.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "analogist.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andreoliveira.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annawagner.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apartment-in-rijeka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apdx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "api.biz.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "area4pro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asiba.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atacadodesandalias.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aztraslochi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bangorfederal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barbarafabbri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bayilelakiku.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bcansw.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bedandbreakfasthoekvanholland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bequiia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestattungen-kammerer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binarycreations.scot", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bleche-onlineshop.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bobkidbob.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bocloud.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bodypainter.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boost.ink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bremerfriedensforum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britanniapandi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britishpearl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsatroop794.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catfooddispensersreviews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccprwebsite.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celectro-pro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charlestonsecuritysystems.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chilio.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrislane.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chromcraft-revington.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinicalrehabilitation.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clweb.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cmillrehab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cookwithmanali.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "copdfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corbi.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cozo.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crispinusphotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crossoverit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dafricapress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danhalliday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "david-reess.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delorenzi.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dev-tek.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discarica.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.bergamo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.firenze.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.genova.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecocreativity.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecotur.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecpannualmeeting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "efmcredentialing.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elainerock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricaldosvientos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricalhiddenhills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricallakesherwood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elementshop.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethicalpolitics.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurofrank.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evenementenhoekvanholland.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extensia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fairssl.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fireshellsecurity.team", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frankierfachmann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frankierstar.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frebib.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frebib.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frostprotection.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaitandmobility.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaitrehabilitation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaitresearch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaysexpositions.guide", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geecrat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geek1.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geocompass.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gepe.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giac.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giebel.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glenshere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graecum.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gruble.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gw2efficiency.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gymnasium-hittfeld.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haccp.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "halliday.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heatershop.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holmq.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotels-insolites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houstonauthorizedrepair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hquest.pro.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-office.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idenamaislami.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "img.mg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "incoherent.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infobae.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innohb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ip-tanz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itaiferber.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobsisbrown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joefixit.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jrabasco.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jtp.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juanfrancisco.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keylaserinstitute.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kimis.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirillaristov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kitabnamabayi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klinkenberg.ws", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knitfarious.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koecollege.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kr0n.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kralovskapradelna.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kvadratnimeter.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "l9.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labortogether.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lain.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lanostrasalute.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ledscontato.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkthis.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logexplorer.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logze.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ltib.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lumitop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marvelmoviemarathon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masrur.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meh.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meklon.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "membershipservices.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miegl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milania.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitchelmore.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mmarnitz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modding-welt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morethancode.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motekforcelink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moutiezhaller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrhc.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muzikantine.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydentalplan.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrewardspoints.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nabytek-valmo.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namaanakperempuan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncc-efm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncc-efm.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nccemail.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nebelhauch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neoedresources.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neurozentrum-zentralschweiz.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newborncryptocoin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niles.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nirjonmela.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordicirc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nytrafficticket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ochrepoint.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ochsenfeld.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "office-furniture-direct.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oita-homes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oksafe-t.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orangekey.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osepideasthatwork.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "padberx-marketing-consultants.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paintball-shop.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paketo.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panaxis.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panaxis.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkeren.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkinginparis.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parquettista.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parteaga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partusedtyres.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pasticcerialorenzetti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pendriveapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permiscoderoute.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permistheorique.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permistheoriqueenligne.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfcafeen.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phileas-psychiatrie.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planetromeo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plural.cafe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pn.id.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polytekniskforening.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potature.rimini.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potature.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premioambiente.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pressertech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proteogenix.science", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prpferrara.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pubreview.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qadmium.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quietus.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qx.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raffaellaosti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdfproject.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realvnc.help", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recuperodatiraidfastec.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remedi.tokyo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remi-saurel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rexdf.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rivus.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rogoff.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roka9.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "room-composite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruyatabirleri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s-huset.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s-pegasus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s10y.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sabrinajoias.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saunatime.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scallywagskids.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scarafaggio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schutz-vor-schmutz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scsd.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scul.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seirei.ne.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sensoft-int.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sentry.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shan.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shark5060.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shaunc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shuset.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.dj", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimento.caserta.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sosteam.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spazzacamino.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spottedpenguin.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sslbrain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stinsky.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strongpassword.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studiolegalepaternostro.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studipro-formation.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studipro-marketing.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suisui.stream", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supernaut.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tabarnak.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tanyanama.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tasogarenoinori.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technicalbrothers.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecnicoelettrodomestici.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terabyte.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thismatter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thummer.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tindallriley.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "titandirect.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tndentalwellness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokugai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tontonnews.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tourgest.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traceheatinguk.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traficmusik.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trybooking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tryti.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tweakers.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ugx-mods.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "underfloorheating-uk.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unterhaltungsbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vx.hn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walkingrehabilitation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watoo.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weedupdate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werkgroeppaleisparkhetloo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werpo.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpthaiuser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xbertschy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xcler8.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--dtursfest-72a.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--frankierknig-djb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--imker-in-nrnberg-szb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "you.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yousei.ne.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zouyaoji.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zwk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "28-industries.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a4sound.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acrylbilder-acrylmalerei.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acsbbs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affissioni.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aireaseleaks.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexanderneng.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andycraftz.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anleitung-deutsch-lernen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anleitung-zum-flechten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anleitung-zum-haekeln.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anleitung-zum-schreiben.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anleitung-zum-schweissen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anleitung-zum-toepfern.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antennista.catania.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arrowheadaddict.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artroscopiaperlosport.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artworxbathrooms.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asexualitat.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asian-industry.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attinderdhillon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b0rk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baer.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bannsecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bassresource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benshoof.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berichtsheft-vorlage.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-essay-service.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binans.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binans.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blupig.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boat-engines.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bremen-restaurants.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "briefvorlagen-papierformat.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "businessfactors.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buytermpaper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartongesso.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cgal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkmyessay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkmyessays.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cipy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coathangastrangla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coathangastrangler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coathangerstrangla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coathangerstrangler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codedelarouteenligne.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codific.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colorhexa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comohacerpara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contractwriters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craftsmandruggets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cretica.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "customdissertation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "custompapers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "customwritten.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cybercrime-forschung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dailyxenang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielstiner.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daubecity.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deutsche-tageszeitungen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deutscher-bericht.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "die-seide.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dominikaner-vechta.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dps.srl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillingsupply.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drmcdaniel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drsajjadian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ec-current.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edfinancial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edilservizivco.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egrojsoft.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eklitzke.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elguillatun.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essayads.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essaychecker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essayforum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essaynews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essayscam.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essaytalk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essaywebsite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estetista.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eternal-warriors.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eu-darlehen-finanzierung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eu-datenbank.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eu-stellenangebot.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evamathil.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everythingaccess.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fackovec.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fansided.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faxvorlagen-druckvorlagen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feuerwehr-vechta.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filidorwiese.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firmenwerbung-vermarktung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flyer.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fokep.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framboise314.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeenglishhelp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freelanceessaywriters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fukikaeru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "g3d.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gallifreypermaculture.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gcoded.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genocidediary.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gesundheitswelt24.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gravilink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gvwgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h1ctf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "henningkerstan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hexcode.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hilfe-bei-krebs-vechta.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hochzeitsplanerin-hamburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holzschutz-holzbearbeitung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holzundgarten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-sports.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immobilien-in-istanbul.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impelup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impresaedile.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inlabo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insureon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inventum.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investoren-beteiligung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inzelabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ismywebsitepenalized.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isreedyinthe.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isreedyinthe.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it1b.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itchybrainscentral.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsaw.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaszbereny-vechta.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joeskup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jugendfeuerwehr-vechta.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knuckles.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koenleemans.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kolpingsfamilie-vechta-maria-frieden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koozal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krankenpflege-haushaltshilfe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kselenia.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kunstdrucke-textildruck.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leochedibracchio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loddeke.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lonniemason.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovelovenavi.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magi-cake.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magonote-nk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "majkassab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manach.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masaze-hanka.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maslin.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mietwohnungen-vermietung.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitarbeitermotivation-anleitungen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mixtafrica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moas.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneycredit.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "montanasky.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motiweb.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moviesetc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mthrbrd.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mustat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muster-folien.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muster-schablonen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mustertexte-musterbewerbung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-nextcloud.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mymedz.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myting.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namu.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nds-helicopter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neildaniels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nekusoul.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerdwallet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nkapliev.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noahsaso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nogerondier.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oelbilder-oelmalerei.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okukan.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-lernprogramme.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oprueba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p5r.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "padpilot.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parteaga.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pbr.so", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phenixairsoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phpunit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piskenfuerwehr.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plasticsurgeryservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plegro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pma-iss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polanda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polish-dictionary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polish-flag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polish-translations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polish-translator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polish-translator.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polish-translators.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polishforums.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polishmarriage.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polishtranslation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polleverywhere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polskiemalzenstwo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potatron.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "priorityessays.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projektarbeit-projektplanung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proprietairesmaisons.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pycrc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantolytic.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "racheldiensthuette.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recipeyak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redhandedsecurity.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retireyourpassword.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rickvanderzwet.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roughcopy.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rpmdrivingschool.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruediger-voigt.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scoop6.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sealoffantasy.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serviziourgente.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shakerwebdesign.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shankangke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "signalmaps.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skin-cosmetic.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skizzen-zeichnungen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sobersys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soulmating.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spazturtle.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speak-polish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speeltoneel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steuertipps-sonderausgaben.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stevenbolgartersnakes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangelane.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangemusicinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stratuscloud.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuudium.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunchasercats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunwolf.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sydneyhelicopters.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sylvaloir.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "systematic-momo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "systematic-momo.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamusec.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tenno.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thermalbad-therme.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thomaseyck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tit-cdn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tit-dns.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tit-mail.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "titanwaterproofing.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tlumaczenie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toetsplatform.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tournamentmgr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trace.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transglobaltravel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "translate-polish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tree0.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trialandsuccess.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsurai.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turunculevye.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubezpieczeniepsa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unicorntooling.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urlaub-busreisen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urltodomain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usa-greencard.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valtlai.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verifyyourip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vertrieb-strategie.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verzekeringsacties.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinnie.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visualizing.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitalware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vorlage-musterbriefe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vorlage-mustervertrag.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vorlagen-geburtstagsgruesse.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vosn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vosser.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vpsport.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vuilelakens.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-dl.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatclinic.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatclinic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatclinic.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatclinic.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatclinic.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatclinic.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whoisamitsingh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolfgang-kloke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xluxes.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zanellidesigns.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zarabiaj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zatsepin.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zielonakarta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zimmer-voss.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adf-safetytools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advanceworx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affordablehealthquotesforyou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agechecker.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agenziaimmobiliarezeta.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airikai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altphotos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amello.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arno-klein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arno-klein.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arschkrebs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aspirateur-anti-pollution.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autospurgo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b72.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bart-f.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baseconvert.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bck-koethen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benc.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestautoinsurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "birdslabel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcalt.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blueskycoverage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bowlcake.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "br7.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brainsik.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carbontv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlobiagi.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catalogobiblioteca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chargify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chasetrails.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkyourreps.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cio-cisointerchange.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clicandfioul.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudfiles.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cmftech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comodosslstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpd-education.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberatlantis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danwolff.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dataregister.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dedge.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dko-steiermark.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmmultionderhoud.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dorfzittig.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drachenleder.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dzsibi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edlinger.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektronische-post.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elisabethrene.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enbecom.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "encrypt.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euwid.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ex-deli.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exoscale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facucosta.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fairssl.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "final-expense-quotes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foundchurch.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freitasul.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funtime.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garyrh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getthefriendsyouwant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goflo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grafmag.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greatlifeinsurancegroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "higgsboson.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horizonlawncare.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hsn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ianmooreis.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icloudlogin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imask.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imppac-schmuck.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insolved.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internationaltalento.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipresent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janvari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janvaribalint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamui.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kenbillionsyuan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kennynet.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevinmoreland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kimdumaine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kisma.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kleim.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knightsbridgewine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koolitee.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuttler.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laranjada.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larbertbaptist.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifeinsurancepro.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lincolnfinewines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littlebestfriend.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loposchokk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maddistonevangelical.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manoro.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marechal-company.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martasibaja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcfx.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicare-providers.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicarecoveragefinder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicareinfo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medigap-quote.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michiganstateuniversityonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monakasatmasr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneypark.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morepablo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mormonleaks.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "movie1000.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtgsuomi.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myadpost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myphotoshopbrushes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mytfg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nationalhomequotes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neil-barrett.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neil-barrett.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nejenpneu.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netfog.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nettegeschenke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nlleisure.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "octarineparrot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ohne-name.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-health-insurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ourworldindata.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "owl-square.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pamsorel.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partypearl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peterbruceharvey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pioneer-car.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pioneer-rus.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pircher.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "play-charades.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "policesromandesrecrutement.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pomockypredeti.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portofala.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "producepromotions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "programmaticmagic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psdreams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pst.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psytrance-pro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiet-waters.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "re-engines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rideyourdamn.bike", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rightnetworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rpus.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salexy.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottishcu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sdg-tracker.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segaretro.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seriouss.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sgutranscripts.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shorehamfort.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "short-term-plans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shyuka.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skid.church", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "somaliaonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportvereine.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "star-clean.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sterlinx.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sternadel.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sternenbund.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stilecop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strajnar.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stroomacties.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuartmorris.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supermercadosdia.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tagabrand.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxi-puck.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teltru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "think-positive-watches.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "time2choose.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tjampoer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tleng.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truentumvet.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trustserv.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tss.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tty1.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unatco.noip.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unstamps.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usage.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verry.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vestingbar.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vulns.sexy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wallacehigh.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wella-download-center.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wijnbesteld.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wjr.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wonghome.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpmu-tutorials.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wristreview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wyo.cam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "x-one.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yuanjiazhao.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yukari.cafe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zfg.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zorig.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "026122.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "083905.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "083907.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "083962.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "124133.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "124633.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "143633.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "143733.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "145433.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "146433.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "146533.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "146733.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "149733.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "156433.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1montre.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "302422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "304122.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "304322.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "304622.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "309422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "310422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "313422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "314022.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "314622.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "314633.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "316433.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "324133.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "340622.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "341422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "341533.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "341733.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "341922.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "342022.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "342922.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "343022.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "343622.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "343722.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "354622.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "354633.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "354933.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "370422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "371422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "374933.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "375422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "392422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "393422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "394122.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "396422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "504122.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "504322.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "504922.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "514122.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "514522.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "515422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "516422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "519422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "524022.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "534622.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "541722.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "592422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5930593.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "594022.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "594622.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "595422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "596422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "604122.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "606422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "614022.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "614922.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "621422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "624022.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "624122.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "624322.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "624522.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "624922.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "630422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "631422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "634022.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "634322.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "634922.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "635422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "636422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "641322.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "641522.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "641722.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "641822.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "641922.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "642322.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "642422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "642722.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "643122.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "643722.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "645322.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "646322.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "649822.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "652422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "659422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "673422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "680422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "692422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "694922.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "704233.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "713433.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "715433.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "718433.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "724233.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "729433.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "731433.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "732433.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "735433.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "736433.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "738433.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "739433.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "740833.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7proxies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "804322.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "809422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "814022.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "8maerz.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "903422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "905422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "913422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "914122.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "919422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "924322.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "924622.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "926422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "931422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "932422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "934122.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "946022.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "946422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "949722.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "972422.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9788876.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9918883.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aavienna.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acheter-ethylotest.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adftrasporti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aesthetx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agnesk.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahtuxpk.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allontanamentovolatili.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allstakesupply.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alphaetomega3d.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apparelfashionwiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ask1.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audirsq3.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badblock.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benceskorka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "booksinthefridge.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "city-walks.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clien.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codetheworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corona-renderer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crunchrapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csfcloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csrichter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dingelbob-schuhcreme.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.rimini.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dokipy.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drivya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-traceur-france.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elfe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elixi.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elnoorandelmohanad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expiscor.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "falegname-roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fassaden-selleng.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastcash.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fishgen.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "francetraceur.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freesoftlab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funds.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "griechische-pfoetchen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gubagoo.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "honey.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "illicitdigital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imprimante-3d-store.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ironpeak.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacobamunch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johannesen.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jvega.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightbox.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "listekdo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logtalk.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maintenance-traceur-hp.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "majkassab.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcelwiedemeier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marshmallow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medi.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medienweite.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijndiad.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobiletry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "montredeal.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "navienna.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netspeedia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "np-edv.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ouglor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pasportaservo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pilotgrowth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pix-geeks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purplebricks.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scpslgame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securitysense.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sergeemond.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shlmail.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "showroom.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "showroom.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simark.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smsk.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smsk.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smskmail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuartmorris.id.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuartmorris.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuartmorris.tel", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taddiestales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcspartner.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebannerstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tir-mauperthuis.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torontostarts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "touhouwiki.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utazas-nyaralas.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vdzwan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "versicherungen-werner-hahn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "welovecatsandkittens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wentu.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wgplatform.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolfarth.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80aejljbfwxn.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaagbaak.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenti.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zikinf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zooplankton.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3s-datasolution.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3s-datasolutions.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3s-ddns.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3s-dns.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3s-mail.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3sdatasolution.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3sdatasolutions.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3sddns.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3shosting.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9farm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acerentalandsales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahmetozer.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akiym.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allontanamentovolatili.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aloesoluciones.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrei-nakov.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antennista.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apercloud.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apobot.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appgeek.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arteinstudio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asenno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "az-moga.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backtest.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbkanews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beadare.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benjaminvasel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bildkomponist.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billhartzer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biogeist.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blindpigandtheacorn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluntandsnakes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bookingworldspeakers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brendanbatliner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buildmorebuslanes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdom.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceskepivnisety.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrisbryant.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claus-bahr.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "combron.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "combron.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comicspornoxxx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cur.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cursosingles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cygnan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dataharvest.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deuchnord.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dictzone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dieterglas.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discoverthreejs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.torino.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dispatchitsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dispatchitsolutions.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dockerup.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dramyalderman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsteiner.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duonganhtuan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dybuster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dynamicdesignuk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eatmebudapest.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esgr.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exoten-spezialist.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expo-larionov.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fahrwerk.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "falaeapp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filezilla-project.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finalrewind.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findapinball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flagfox.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ftptest.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fulltxt.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gisac.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glotechrepairs.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gluedtomusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gmccar.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "godruoyi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hacc.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hartzer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthplansamerica.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helpscoutdocs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herkam.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hestia-systeme.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hestia-systeme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hestia-systeme.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hestia-systeme.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "highlightsfootball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holstphoto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "https-rulesets.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i00.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inesfinc.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infermiere.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infra.land", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infranium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innersafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intasky.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intasky.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipo-times.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ismena.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jan-hill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jerret.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jhill.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katemihalikova.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kc3.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kcliner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kcshipping.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiddieschristian.academy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konpyuta.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kredigram.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladadate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legaillart.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lequerceagriturismo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukas-gorr.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.info.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariereichl.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marshallwilson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattatoio.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mclmotors.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediafly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melodiouscode.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melodiouscode.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "memrise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mes-bouquins.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "movimento-terra.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtltransport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysockfactory.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysockfactory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextcloud.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nte.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onvousment.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openbeecloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkrunstats.servehttp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permeance108.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ph3r3tz.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pharmica.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pharmica.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plob.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porte.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progenda.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pulser.stream", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qianqiao.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qis.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quickinfosystem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainel.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reckontalk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "restaurantguru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richie.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rleeden.servehttp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roams.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ronnylindner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruckzuck-privatpatient.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santoshpandit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "satellites.hopto.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottseditaacting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scrumplex.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searx.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sentidosdelatierra.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servx.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharkie.org.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirencallofficial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sisseastumine.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skybloom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "songtianyi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sos-falegname.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spacestation13.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steigerlegal.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stratuscloudconsulting.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studytactics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suffix.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tebodental.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techinsurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecon.co.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecompany.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thewagesroom.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thor.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "time.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transporta.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traslochi-trasporti-facchinaggio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trattamento-cotto.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tributh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "un-framed.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vasel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vasel.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtit.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivaldi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vulndetect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vvoip.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w2n.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webdl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weddingalbumsdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wexilapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "what-wood.servehttp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whychoosebob.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wichitafoundationpros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xbrl.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xqk7.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ybzhao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yuki-nagato.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yukimochi.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhcexo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zonewatcher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "230beats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2948.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acem.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adept.org.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aignermunich.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aignermunich.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajsb85.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alp.od.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altes-sportamt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altoa.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antani.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antennisti.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atherosense.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avalon-rpg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avptp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axonholdingse.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b4ckbone.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bankvanbreda.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banquevanbreda.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basicattentiontoken.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "be-up-developpement.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bedels.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "besole.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bevelpix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blockedyourcar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blockedyourcar.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blockedyourcar.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluewavewebdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bug.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cafeimsueden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calltothepen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camping-seilershof.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candaceplayforth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carepassport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudflare-dns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubnoetig-ink2g.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comoimportar.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comoseduzir.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crazy-coders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dafont.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danstillman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "das-forum24.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davewut.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derattizzazioni.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dinheirolucrar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazione.torino.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.udine.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmd.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogpawstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domus-global.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domus-global.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecobin.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elonaspitze.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emiliendevos.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epos.az", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eulenschmiede.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evolvetechnologies.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fibretv.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fibretv.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flatmail.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floersheimer-openair.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fluxi.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foutrelis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "francoise-paviot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gfestival.fo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gomasy.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "govype.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gpm.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graniteind.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gurucomi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackerone.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "halfhosting.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haustechnik-breu.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haverstack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heartlandbiomed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heimdallr.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heleendebruyne.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herpes-no.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holzstueckwerk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeoesp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hooplessinseattle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houseofhouston.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humblebee.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iahemobile.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icoh.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iiit.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ijsblokjesvormen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imjo.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inflate-a-bubbles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inkurz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inmatefinancial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intelly.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipemcomodoro.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "israelbiblicalstudies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-academy.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaleo.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jasminefields.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jelleraaijmakers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jianshu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jugendhackt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "just-vet-and-drive.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kastemperaturen.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevinhq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kine-duthil.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koi-lexikon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koodimasin.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lahipotesisgaia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakelandbank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakeshowlife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lineageos.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macros.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magicvodi.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariapietropola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markdain.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mathsource.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthiasbeck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megztosidejos.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melodiouscode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midgawash.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirepublic.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "more-terrain.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multitec.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "murashun.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.com.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublicau.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublicaus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublicbroadband.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublicfibre.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublicnz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nasme.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncsc.gov.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netflixlife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netrewrite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nodecraft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noelclaremont.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noleggio-bagni-chimici.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noriel.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noteskeeper.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nrsweb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nve-qatar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "offenes-deutschland.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onionplay.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opengovpartnership.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openruhr.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oyosoft.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paardenhulp.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palmen-apotheke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panlex.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "papierniczy.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paxerahealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peterborgapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pieland.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plesse.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "po.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privy-staging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prosperontheweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabbitfinance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rollatorweb.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romanmichel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "root-space.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rummage4property.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salrosadohimalaia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scaffalature.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secyourity.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seniorem.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silverartcollector.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimentorifiuti.firenze.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smokinghunks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soakgames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soaringtoglory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sobreporcentagem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonic.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starcoachservices.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steamstat.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stirblaut.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "synccentre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teplofom.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebusinessofgoodfilm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thisishugo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thomas-sammut.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thycotic.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "titansized.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "todokete.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toreni.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tosostav.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trad-n-vo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tratamentoparacelulite.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tributh.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tributh.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tributh.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tributh.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usagexchange.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usninosnikrcni.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usnti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uvenuse.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venturebanners.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vikapaula.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villehardouin.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visitcambridgeshirefens.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vlndc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wanderzoom.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-art.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webline.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webmixseo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weekendinitaly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatismycountry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xerownia.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xif.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--myrepubic-wub.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--myrepublc-x5a.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xserownia.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtrainsights.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youc.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zahnarzt-duempten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acrosstheblvd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adlerosn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airconsfourways.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allarmi.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allcarecorrectionalpharmacy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arteaga.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artedellavetrina.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audioschoolonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbalposticino.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandrocket.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catalystapp.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certfa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaussenot.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clemenscompanies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consulenza.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coursables.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creared.edu.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crossedwires.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptoguidemap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datumstudio.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derkuki.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dinocarrozzeria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.treviso.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazionivespe.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecos.srl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecostruxureit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etrecosmeticderm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fahrschule-laux.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhba.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fysiotherapieapeldoornzuid.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guegan.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herramientasbazarot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homecheck.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howtoinstall.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hydro17.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hydrographicsocietybenelux.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "illegalpornography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impresa-di-pulizie.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internalkmc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackson-quon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knowledgeforce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lanodan.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavinya.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightning.community", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightning.engineering", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkthisstatus.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littleskin.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livebythesun.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lookup-dns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lyrical-nonsense.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maneggio.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marc-hammer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maryeileen90.party", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "media-library.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "messengerwebbrands.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muratore-roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygignation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.com.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextevolution.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nocks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notofilia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinekmc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pascualinmuebles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pf.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "play-casino-japan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pmartin.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regenerapoint.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "renthelper.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "republictelecom.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "research-panel.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retrocdn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romaservicegroup.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seohackers.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sglibellen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopalike.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siw64.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sparta-en.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talentcast.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thenowheremen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "undeductive.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utwente.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uzsvm.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vapensiero.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vda.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wateroutlook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webministeriet.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirsberg-studios.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yalecleaners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zakojifarm.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zy.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "20at.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "233vps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "90r.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acoustics.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agic-geneve.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akuislam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antik-trodelmarkt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apogeephoto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asuclassfinder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beimchristoph.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berhampore-gateway.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsg.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsgamanet.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bytepen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calcinacci.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cascavelle.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cascavelle.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celine-patisserie.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chl.la", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chlth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dasug.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidlamprea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elettricista-roma.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esthesoleil.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evilmartians.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exexcarriers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freebcard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gao.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaojianli.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackreone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hin10.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horn.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilmiogiardiniere.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "improved-madness.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inchenaim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaikei7.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kobejet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kooliveeb.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkthis.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxundlara.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my4thtelco.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepubic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturheilpraxis-oida.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neftis.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikonschool.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novilidery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orbu.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petschnighof.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poudlard.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pulizieuffici.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qponverzum.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reuna.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schil.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimentoamianto.frosinone.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stako.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tax-guard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tempa.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-nash-education-program.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toymagazine.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsatestprep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unece-deta.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viris.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vistec-support.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walshbanks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warofelements.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wisal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yui.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaloghaz.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenvite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhuji5.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "00dani.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "123writings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "12thmanrising.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ableprop.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accessoirescheveuxchic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acoustics.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acrepairgeorgetown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acrepairhutto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acrepairroundrocktx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adsl2meg.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aginion.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akasha.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alasdelalma.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alikulov.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alloverthehill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allstarquilts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anime-tip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anthonyloop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arrowfastener.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlasdev.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aucielrose.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audiophix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayanomimi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bahnhelden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bamahammer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barpodsosnami.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basementfinishingohio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bijouxcherie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluestardiabetes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "briefassistant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buileo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cachetur.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cajio.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capacityproject.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carbon-project.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certevia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charlotteswimmingpoolbuilder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chartkick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ci-suite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cognitip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "concertsto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "concreterepairatlanta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crawlspaceandbasementsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crystalgrid.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d-macindustries.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dak.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "damonline.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielhinterlechner.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datalife.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dearktiel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deelmijnreis.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defcongroups.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derbuntering.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dermscc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deyute.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digital-liberal.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digital.govt.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discoveryaima.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioneblatte.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.bari.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dougley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamrae.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drei01.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dunkle-seite.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecofac-bs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eliasojala.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ellencorddry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emeraldcityswagger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "empherino.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ensurtec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "envoie.moi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "envoyez.moi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escuelabiblica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eutotal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fackovcova.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fackovcova.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fackovcova.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fackovec.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fackovec.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferienhausprovence.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleetcor.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleetcor.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleetcor.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleetcor.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleetcor.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleetcor.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleetcorcards.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fur.red", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamesaviour.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamesided.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ganggalbichler.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garrowmediallc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gcfadvisors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geba-online.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "get.how", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "golf18staging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "govisitcostarica.co.cr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "govisitcostarica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gpgscoins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graf-igor.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hanfverband-erfurt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hang333.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homegreenmark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hryniewski.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hstspreload.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hybula.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iam.soy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "illerzell.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infranium.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infranium.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infranium.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infranium.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insecure.org.je", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interaktiva.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ionovia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isabelaflores.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ishet.al", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivre.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jabbers.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeda.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koerperkult.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kolcsey.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladenzeile.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladenzeile.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lambertshealthcare.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "langzijn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laplacesicherheit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lars.moi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letsdebug.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liz.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lobstr.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "localethereum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logicne-hise.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logoglo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lotro-wiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ludogue.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luyckx.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "majkl.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marco-hegenberg.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marseillekiteclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mbaasy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelschmidt.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "missyou.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkchandler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobila-chisinau.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtlconcerts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my4g.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydroneservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myetherwallet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepubiic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.com.kh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublicinternet.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nami.trade", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturesbest.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nflmocks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.goog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.how", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.soy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.xn--q9jyb4c", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nosecrets.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nur.berlin", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nvl-game.tokyo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nyan.stream", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oakesfam.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odpikedoslike.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ollieowlsblog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ongea.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openreview.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orionfinancialservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palariviera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pashminacachemire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penslabyrinth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perthtrains.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pjo.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "princessefoulard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prismacloud.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protege.moi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qoml.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qx.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rawdutch.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reiki-france.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robertbln.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robertopazeller.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sacprincesse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samdev.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scripter.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shivamber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopalike.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopalike.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopalike.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopalike.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopalike.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopalike.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopalike.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopalike.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopalike.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silent-clean.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sircon.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spar-ni.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spitfiredialers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sppin.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standard.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stefan-rothe.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stellarguard.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stolin.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studioproapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superaficionados.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "symlnk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talking12.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tekniskakustik.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teusink.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebakery2go.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tildes.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topekafoundationpros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toushi-shakkin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trillian.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tunnelventilation.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twitchplaysleaderboard.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unityconsciousnessbooks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usuluddin.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "v-spin.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vancityconcerts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verasani.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viyf.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walkera-fans.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walltime.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walpu.ski", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walpuski.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whosyourdaddy.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whta.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wm-access.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wm-access.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wmaccess.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolfermann.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolkoopjes.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worksitevr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpexplorer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wsl.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xentox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yvonnethomet.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zebulon.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zephyrbk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zephyrbookkeeping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zobworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zozzle.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "123apps.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accord-application.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ace.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acroyoga-nuernberg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advenapay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agatajanik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aifriccampbell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajaxed.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajiboye.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alienslab.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alonetone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "analisilaica.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ananas.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antonin.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aotearoa.maori.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asws.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autobelle.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avv.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awaresec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awaresec.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axelname.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "behoreal.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bentongroup.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bentonweatherstone.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best66.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bh-oberland.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitlo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitlo.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitlo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blabber.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blanket.technology", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bmhglobal.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boop.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsp-southpool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "btsapem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bttorj45.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bullshitmail.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bytesign.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cad-noerdlingen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casio-caisses-enregistreuses.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centralmissourifoundationrepair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheela.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christiehawkes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clive.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cockybot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "condominioweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connictro.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consultation.biz.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consultimator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creteangle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crys.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cscdn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cvc.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dagensannonser.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danbaldwinart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datatruckers.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datatruckers.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defeestboek.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "degressif.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deltaservers.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "developerdan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnscrypt.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnsinfo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dowhatmakegood.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drhathazi.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drusillas.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dumbfunded.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dybuster.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dybuster.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dylanspcrepairs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edwellbrook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eemcevn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emby.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etch.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fairydust.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fegame.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fegame.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferrousmoon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filmsite-studio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fimsquad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flight.school", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forcelink.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forcelinkamerica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forcelinkamerica.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "franz.beer", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "franziska-pascal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friendshipismagicsquad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fthat.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genderidentiteit.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gowithflo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenpanda.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guanzhong.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "half.host", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hannoluteijn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heaaart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heiraten-gardasee.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heiraten-venedig.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellomouse.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heywood.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hitomecha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humpchies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iankmusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iftarsaati.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "illumed.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "import-shopping.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isvsecwatch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j15h.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j2h.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jasper.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jasperpatterson.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jdm.elk.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jelleluteijn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jelleluteijn.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jelleluteijn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jelleluteijn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeremynally.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jimfranke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jucca-nautica.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "julian-uphoff.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juliazeengardendesign.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "junglememories.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kersvers.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kommaer.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kooli.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krise-chance.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krsvrs.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labms.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavanderia.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loginsentinel.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketing-2.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketingconverts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marksm.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markus-musiker.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "massive.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "memememememememe.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "memind.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelwermeester.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaonline.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mine-craftlife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miproximopaso.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moeking.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monkeybusiness.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motekforce.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motekforcelink.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motekforcelink.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motekmedical.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motekmedical.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrazek.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mymixtapez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mynextmove.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nexwebsites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ng-musique.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nil.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noahmodas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ntags.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okinawa-mag.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ondrejhoralek.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onetcenter.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onetcodeconnector.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onetonline.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orgsyn.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacatlantic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "packair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parry.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paste.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peerweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petfa.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pluimveeplanner.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pomelo-paradigm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powelljones.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prestonapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "publicrea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qtn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readingrats.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recipea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "registryplus.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rejects.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reklamjog.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reticon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retmig.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rolleyes.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "run-it-direct.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rvender.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sadbox.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safebaseflorida.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scoutingtungelroy.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seasidestudios.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sentic.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplecoding.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sitischu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartphonechecker.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solarstrom.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spartaermelo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssready.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steelmounta.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stigviewer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studyin.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sustainoss.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techsolvency.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telephonedirectories.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teufelswerk.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecurvyfashionista.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theonethaimassage.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thereaper.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thiagohersan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thiepxinh.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threexxx.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toolroomrecords.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transgendergedenkdag.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transgenderinfo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transgendernetwerk.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tricefy4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unicolabo.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unixapp.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unsourirealecole.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urcentral.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varztupasaulis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varztupasaulis.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varztupasaulis.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varztupasaulis.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vawlt.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veronic.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtuality4d.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivoitaliankitchen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vtaxi.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watfordjc.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webfixers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webkef.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wegrzynek.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weiling.clinic", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weinundsein.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werbezentrum-stiebler.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "west-contemporary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiehenkrug.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "williamtm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "willstocks.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winkelcentrumputten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "with-environment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wsb.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wtfnope.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xenon.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xenoncloud.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xhmikosr.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xviimusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yannikbloscheck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zabbix.tips", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zum-baur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3prn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "609avenue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acgtalktw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actc.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "addisoncrump.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adventureforest.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adventurenow.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affittacamere.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahosi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airi-tabei.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airwolfthemes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aizxxs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aizxxs.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akplates.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alab.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexschroeder.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amministratore.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antroposofica.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aponkral.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "app2get.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arbejdsdag.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ariadermspa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arnonerba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arzinfo.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "askvg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asystent-dzierzawy.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "austin-pearce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autospurgo.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avlhostel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baeder-luboss.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barcamp.koeln", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bendyworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berglust-pur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "besser-beissen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bfpg.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bioresonanz-ibiza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "birkenstab.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitmidi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blakekhan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloggermumofthreeboys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boattrader.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonami.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bordadoenpedreria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buchwegweiser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buurtpreventiefraneker.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bytes.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camastowncar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campaignwiki.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "careerpower.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carinthia.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceskepivnesety.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chiropraktik-riemann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cio-ciso-interchange.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cipri.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cipri.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cipri.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cipria.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "circle-people.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cities.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citroner.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudtocloud.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cluster.biz.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cmadeangelis.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coda.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coin-quest.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compasslos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "correctiv.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crisp.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crisp.help", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cronberg.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cropdiagnosis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crys.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danselibre.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutz-consult.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dawnofeden.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbmiller.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decoratore.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deliacreates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazionecimici.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.catania.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.padova.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divari.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dowellconsulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dozecloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dr-nystroem.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dshield.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dylmye.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e6e.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easypay.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echidna-rocktools.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "economic-sanctions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edu-kingdom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edvgarbe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehne.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektrotechnik-heisel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "englishphonopass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enitso.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essaybrand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everyfad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facility-service-muenchen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "factuur.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fancy.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "felinepc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "femastudios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fergtm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fireportal.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firmware.science", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleuryfleury.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flooringsourcetx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foresthillhomes.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fosaudit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frprn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "g8energysolutions.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghini.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giardiniere.bologna.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giardiniere.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giraffenland.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gisher.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gleich-aluminium-shop.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "god-clan.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "godclan.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gomelchat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gplans.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gunworld.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackereyes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hansonian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hapsana.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heartsintrueharmony.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellsh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heroiclove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiromuogawa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hlavi.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hofapp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "https.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huisjeboompje-baby.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hurtigtinternet.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hvrint.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idraulico-roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imgbb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inference.biz.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrarank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innovate-indonesia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insurethebox.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isabellavandijk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ithinc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izxxs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izxxs.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izxzw.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joeyfelix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johnbpodcast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jose-lesson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juergenklieber.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "junodownload.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jura-reiseschutz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jwmmarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kado-ya.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kandianshang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kedv.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinautas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kleine-strolche-lich.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kost-magazin.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuhne-electronic.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kvnsport.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lagout.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lehti-tarjous.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locomotionds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ludovic-muller.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lyuly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maguire.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maijia800.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "majkassab.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marianelaisashi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mathys.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattcorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mego.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "messagevortex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "messagevortex.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meta-word.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metaword.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metaword.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metaword.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikeguy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobius.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneni.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "more-hikkoshi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motekmedical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mpa-pro.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtasa.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musicompare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-stuff-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygigabitnation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.com.lk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.eu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myvalleymarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "navient.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nekomimirouter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextbranders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nti.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuffield.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nullonerror.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oddmuse.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldtimerreifen-moeller.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onhistory.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinexl.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "open-banking-access.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otsfreestyle.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ovirt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pack-haus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parmels.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parnassys.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paste.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulwendelboe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pew.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pg-mana.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pgp.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "physiotherapie-seiwald.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pildat.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plissee-experte.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ponydesignclub.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornloupe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pors-sw.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pp3345.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pressup.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "priceremoval.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "principalstest.review", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prismacloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privatpatient-krankenhaus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prodware.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostoporno.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostoporno.sexy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pure-gmbh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quimatic.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rachelmoorelaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raltha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rangercollege.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redstarsurf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redweek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhd-instruments.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhd-instruments.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ricobaldegger.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripaton.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romanticsexshopguatemala.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royceandsteph.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roycewilliams.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruedigervoigt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruin.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rvoigt.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samhuri.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samwrigley.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "satoshinumbers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "se-theories.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securitypuppy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serverexpose.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siciliapulizie.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sidema.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simonastallone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skwitko.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smileytechguy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socialstrata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soph.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sotthewes.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speechmore.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statebuildinggroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steel-roses.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stefan-schmid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steuern-recht-wirtschaft.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storytell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studentpop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sucretown.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supertutorial.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swetrust.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "synchronyse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tandzorg.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taprix.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tbfocus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "termografiranje.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "textundblog.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tgwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thalia.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theimagefile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ticketassist.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tierarztpraxis-illerwinkel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tollerunterricht.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tools.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traditions.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traditionskapperscollege.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transcontrol.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tufashionista.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvseries.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tycho.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "udvoukocek.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unboundmoney.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unternehmer-radio.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urbancreators.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verifalia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veritas-data.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vocustest.aero", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wangtanzhang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wbudd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wermeester.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wertpapiertreuhand.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatthingsweigh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whirlpool-luboss.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wijzijnwolf.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windowslatest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wingify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wonderfuleducation.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wonderfuleducation.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldtalk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wowi-ffo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wuifan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xuedianshang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yukimochi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zacharydubois.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "40acts.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adam-ant.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agouraexteriorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agourahillselectric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agourahillselectrician.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agourahillsexteriorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agourahillslandscapelighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agourahillslighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agourahillsoutdoorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agouralandscapelighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agouralighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agouraoutdoorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ai-soft.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexlouden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altmaestrat.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amani-kinderdorf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ariaartgallery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asianspa.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "askcaisse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrovandalistas.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autowerkstatt-puchheim.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badanteinfamiglia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin-casino-no-deposit-bonus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitlo.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackfire.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blyat.science", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borchers.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calabasaselectric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calabasaselectrician.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calabasasexteriorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calabasaslandscapelighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calabasaslighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calabasasoutdoorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calcularis.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camarilloexteriorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camarillolandscapelighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camarillolighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camarillooutdoorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cardcaptorsakura.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carpetcleaningtomball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centura.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charliegarrod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cojam.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compoundingrxusa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conejovalleyelectrician.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conejovalleyexteriorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conejovalleylandscapelighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conejovalleylighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conejovalleyoutdoorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpu.biz.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctf.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cwgaming.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detalika.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diekperaiwseis.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discord4j.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doomtech.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dosvientoselectric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dosvientoselectrician.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dosvientosexteriorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dosvientoslandscapelighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dosvientoslighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dosvientosoutdoorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dotsiam.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dropscloud.spdns.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dutchforkrunners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dybuster.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dybuster.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dybuster.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dybuster.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dyscalculia-blog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricagoura.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricagourahills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricalnewburypark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricaloakpark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricalsimivalley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricalthousandoaks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricalwestlakevillage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electriccalabasas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electriccamarillo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricconejovalley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricdosvientos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electrichiddenhills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricianagoura.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricianagourahills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electriciancalabasas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricianconejovalley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electriciandosvientos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricianhiddenhills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricianlakesherwood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricianmoorpark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electriciannewburypark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricianoakpark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electriciansimivalley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricianthousandoaks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricianwestlakevillage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electriclakesherwood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricmoorpark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricnewburypark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricoakpark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricsimivalley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricthousandoaks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricwestlakevillage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektrotechnik-kaetzel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "episkevh-plaketas.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ergodark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euanbarrett.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exclusivedesignz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "execution.biz.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extensibility.biz.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exteriorlightingagoura.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exteriorlightingagourahills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exteriorlightingcalabasas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exteriorlightingcamarillo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exteriorlightingconejovalley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exteriorlightingdosvientos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exteriorlightinghiddenhills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exteriorlightinglakesherwood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exteriorlightingmoorpark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exteriorlightingnewburypark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exteriorlightingoakpark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exteriorlightingsimivalley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exteriorlightingthousandoaks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exteriorlightingwestlakevillage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facilities.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastblit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fegame.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fonts4free.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "franz-vatter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fusiongaming.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabecook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabrielsteens.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gae123.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gensicke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gfahnen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gluit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gnaptracker.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "go2ubl.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "golfmeile.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hexstream.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hexstream.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hexstreamsoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiddenhillselectric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiddenhillselectrician.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiddenhillsexteriorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiddenhillslandscapelighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiddenhillslighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiddenhillsoutdoorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "highspeedinternetservices.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hj-mosaiques.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hks.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hosting-swiss.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huisartsenpraktijkzonnehoed.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iatfei.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infosec.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iranian.lgbt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janikrabe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "job.biz.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juno.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keutel.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klausen.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koyo.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lagodny.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakesherwoodelectric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakesherwoodelectrician.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakesherwoodexteriorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakesherwoodlandscapelighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakesherwoodlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakesherwoodoutdoorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lampposthomeschool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lan.biz.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landscapelightingagoura.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landscapelightingcalabasas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landscapelightingcamarillo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landscapelightingconejovalley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landscapelightingdosvientos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landscapelightinghiddenhills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landscapelightinglakesherwood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landscapelightingmoorpark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landscapelightingnewburypark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landscapelightingoakpark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landscapelightingsimivalley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landscapelightingthousandoaks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landscapelightingwestlakevillage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ldjb.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learningman.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lebendige-heilkunst.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liberdademg.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightingagoura.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightingagourahills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightingcalabasas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightingconejovalley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightingdosvientos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightinghiddenhills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightinglakesherwood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightingmoorpark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightingnewburypark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightingoakpark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightingsimivalley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightingthousandoaks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightingwestlakevillage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lindnerhof-taktik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lodewijkict.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lojadosomautomotivo.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luteijn.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macil.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mail.storage", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manfredschafer.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "margo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matt.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medikuma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "messdorferfeld.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michellavat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikkelscheike.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mnemonic.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monaco-automaten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monad.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monoworks.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moorparkelectrician.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moorparkexteriorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moorparklandscapelighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moorparklighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moorparkoutdoorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motstats.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mpkrachtig.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ms-ch.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtgeni.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtgenius.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygreenrecipes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.us.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nathaliedijkxhoorn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nathaliedijkxhoorn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nathanaeldawe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netsphere.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netvpn.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newburyparkelectric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newburyparkelectrician.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newburyparkexteriorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newburyparklandscapelighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newburyparkoutdoorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newreleases.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newvehicle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextstep-labs.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ntcoss.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oakparkexteriorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oakparklandscapelighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oakparklighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oakparkoutdoorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orikadabra.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orthograph.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osborn.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outdoorlightingagoura.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outdoorlightingagourahills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outdoorlightingcalabasas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outdoorlightingconejovalley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outdoorlightingdosvientos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outdoorlightinghiddenhills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outdoorlightinglakesherwood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outdoorlightingmoorpark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outdoorlightingnewburypark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outdoorlightingoakpark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outdoorlightingsimivalley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outdoorlightingthousandoaks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outdoorlightingwestlakevillage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ovelhaostra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "papelcraft.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "papiermakerijdehoop.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "papiermeteenverhaal.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pawelurbanek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peda.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perala.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perthhillsarmadale.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pictorista.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piscine.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plantes.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plzz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porchdaydreamer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portugal-a-programar.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pouwels-oss.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "priorityelectric.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "priorityelectric.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "priorityelectric.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pru.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redcoded.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reflectivity.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "repology.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retractableawningssydney.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "root.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sadev.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sap-inc.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sctiger.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sctiger.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendbox.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sentandsecure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shuffleradio.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silo.org.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simfdr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simivalleyexteriorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simivalleylandscapelighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simivalleylighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simivalleyoutdoorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sl-bildermacher.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spritsail.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stickandpoketattookit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "street-tek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suaudeau.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suaudeau.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techsys.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texasparkinglotstriping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelonious.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thenovaclinic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theserviceyouneed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thinkingliberty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thousandoaksexteriorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thousandoakslandscapelighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thousandoakslighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thousandoaksoutdoorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thpay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiim.technology", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tonnycat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topservercccam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topservercccam.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truqu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "try2admin.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tryndraze.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvlplus.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "typeof.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unkrn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unn-edu.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urbanhotbed.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vectortrack.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venev.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vierna.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waidfrau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waifu-technologies.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waterside-residents.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wdic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wearehackerone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westcode.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westlakevillageelectric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westlakevillageelectrician.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westlakevillageexteriorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westlakevillagelandscapelighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westlakevillagelighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westlakevillageoutdoorlighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--y-5ga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yawen.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yhe.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourfuturestrategy.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeal-interior.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zealworks.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0x0.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3sdns.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aati.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "academichealthscience.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aiki.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aiki.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aikido-kiel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albanesi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angelicare.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrology42.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attention.horse", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audiobookstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "austin-security-cameras.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b-f-s.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bankio.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bioexploratorium.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blasorchester-runkel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bookingslog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centum.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certifix.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrismorgan.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crimefreeliving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutzzentrum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datmancrm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "david-jeffery.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidsimner.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demmer.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diamantovaburza.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dokspot.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dokspot.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evolvingthoughts.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "felett.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fijnewoensdag.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finansa.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floridafabrication.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fojt.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forefrontcloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freedomfinance.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freedomrahoitus.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "full-stack.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gippert-klein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gogroopie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goto10.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hanschventures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hansen-kronshagen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hilde.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hjphoto.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "httpsiseasy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "incompliance.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intelly365.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetfonden.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetmuseum.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itmindscape.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiahao.codes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kkr-bridal.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kockanakocko.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "la-kaz-a-velo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landchecker.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lanforalla.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "line.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lmtls.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithspring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmiththewoodlands.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "louerunhacker.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m-chemical.com.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m-warrior.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mac.biz.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mansfeld.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marmista.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mesappros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikakalathil.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monarchcleanersnc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moosmann-moehrle.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msroot.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.lk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "needemand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netrogue.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netzfabrik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nginxconfig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickplotnek.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninth.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nshipster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "numerologist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openstreetmap.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "papaya.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pasarella.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passabook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "placedsupport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pru.com.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r-t-b.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rt22.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sakura-paris.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seadus.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serveradium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sesam-biotech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "st-shakyo.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stareplanymiast.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svenmuller.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sx8.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "szafkirtv.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamriel-rebuilt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telamon.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelegionshirley.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thirtyspot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transgendernetwerk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutu.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uldsh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vocus.aero", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vovladikavkaze.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vuotila.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "williamboulton.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windsorite.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yassine-ayari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zamalektoday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zmarta.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zmarta.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zmarta.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zmarta.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zmarta.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zmartagroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zmartagroup.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zmartagroup.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zmartagroup.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0des.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "114514ss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1m.duckdns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advance.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alaskajewelry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "am-dd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apgw.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arekatieandchrisgettingmarried.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arekatieandchrisgettingmarried.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arekatieandchrismarriedyet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artefeita.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auszeit-walsrode.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badgirlsbible.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basicapparel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basw.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baswetter.photography", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beaglesecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beuteugeu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bhosted.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billigerfinder.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackhat.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bowdens.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brianjohnson.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridgement.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brush.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "byronkg.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cardios.srv.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cargorestraintsystems.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlocksmithfallbrook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlosfelic.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbd.casa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbdmarket.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "childrens-room.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christec.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christerwaren.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colinsnaith.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collectorsystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comocurarlagastritis24.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compassfinance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conectumfinanse.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consensoprivacy.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consulvation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conti-profitlink.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cp-st-martin.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cwinfo.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielpeukert.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danmassarano.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decoratingadvice.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deflumeriker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dennismurphy.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devcf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devirc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dingsbums.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "direktvermarktung-schmitzberger.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discord.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doihavetoputonpants.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dumberger-bau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dyncdn.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecxforum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electionsbycounty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricimagination.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emanuel.photography", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epdeveloperchallenge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyesandearsrescue.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f-u-c-k.wien", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f0x.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashion-stoff.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fedoraproject.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feel-events.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fifr.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filiio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finefriends.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fit-mit-nina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fivethirtyeight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floatationlocations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fnkr.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "folio.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortnitemagic.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fsbn.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fsvoboda.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuselight.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garethkirk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garethkirkreviews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generador-electrico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georgecolgrove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giftcard.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gillfamily.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gkoenig-innenausbau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grabacabpa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grailify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenapproach.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenrushdaily.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gross.business", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helfordriversc.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "henley-computer-repairs.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herofil.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hesyifei.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoeren.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hof-mulin.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoop.la", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotjuice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hulpmiddelenshop.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huyvu.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hxp.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ichbinein.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "identity.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ikespta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iligang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iligang.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iligang.xin", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imagecurl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrafire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infraflip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infraflux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrafusion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ingatlanjogaszok.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innot.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inovatecsystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iramellor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jayrl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jesec.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonblankenship.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jsxc.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k-plant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaminbau-laub.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katagena.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kazakov.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keybored.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kibea.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kodify.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krishofer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kristiehill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kublis.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kylegutschow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "l33te.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lachlan-harris.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lauraenvoyage.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lexdigital.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leymaritima.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locker.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithbalchsprings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithgarland-tx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithgrapevinetx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukem.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maidoty.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcelwaldvogel.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcelwolf.coach", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markstickley.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinvillalba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinvillalba.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinvillalba.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinvillalba.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masumreza.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mat.tt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mayaimplant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "media-serwis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meitan.gz.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "members-arbourlake.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miemus.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mivzak.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mivzakim.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mivzakim.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mivzakim.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mivzakim.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mivzakim.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mo2021.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morgner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motifstudio.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mpgaming.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrv.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multitenantlaravel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myeml.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.icu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublicgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublicltd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublicmy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublicsg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublictelecom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepubllc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myseo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nansa.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerdbox.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nice.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninjaworld.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notsafefor.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oculus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oneiroi.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onice.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overzicht.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overzicht.ws", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pasalt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pflanzen-shop.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pharmasana.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pharmasana.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phillyinjurylawyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinkerton.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pirates-comic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pkirwan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poezja.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "popcat.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prontossl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rambo.codes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rapidoo.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rctalk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rectecforum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redcatrampageforum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "relojeriajoyeria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "researchstory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "responsivepaper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhaegal.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richardhicks.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riversidebaptistchurch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roguenation.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosalindturner.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roundrock-locksmith.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rustikalwallis.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryan-design.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sasioglu.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "se.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sealaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sekoya.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shuletime.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimento.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartwoodczech.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sms.storage", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spdillini.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spirit55555.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoinov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storageideas.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunjiutuo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supermercato24.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "switch-trader.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taizegroep.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tallyfy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tasks.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tearoomlints.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teensexgo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teknoforums.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecamels.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecoffeecamp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefurnitureco.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tigernode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tixeconsulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trasloco.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "troopaid.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truong.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uiterwijk.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umanityracing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "underwearoffer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valiant.finance", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "victory.radio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visionexpress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visionexpress.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visualmasters.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vixrapedia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vndb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wanda.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wandelreizen.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warenmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "welshccf.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wesleywarnell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westcoastmarineadvisor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatisthe.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whittome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "withextraveg.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wrn.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xants.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--5dbkjqb0d.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--5dbkjqb0d.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--gfrr-7qa.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--martnvillalba-zib.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ygobbs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zander.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenchain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a0print.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoschadeschreuder.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigbendguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blyth.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "breitband.bz.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bscc.support", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "busuttil.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bwfc.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c3wien.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catchhimandkeephim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catl.st", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cccwien.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ch47f.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clad.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consultimedia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "createme.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drchrislivingston.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-colle.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eduroam.uy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eihaikyo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elevatoraptitudetest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emperola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erperium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everpcpc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fjordboge.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freesoft-board.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "froehliche-hessen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "havetherelationshipyouwant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibericaderedes.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iliastsi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "importsagt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infranotes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iochen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iowaschoolofbeauty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iranjeunesse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-service24.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jadchaar.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jericamacmillan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jessicahrehor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jockbusuttil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jordhy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "josephbleroy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k7azx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kzar.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lai.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovelychalets-peisey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luan.ma", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malezan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuel7espejo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcgaccountancy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meeco.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "messenger.co.tz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneybird.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monzo.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muell-weg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninverse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openre.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protobetatest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rexskz.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riku.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romatrip.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ronniegane.kiwi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleduck.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleduck.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleduck.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleduck.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleduck.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleduck.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secretsdujeu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "semsec.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sgsp.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slate.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spacinov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spacivox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ss.lazio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strafensau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stroeerdigital.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superstropdas.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tehrankey.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theguitarcompany.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehairrepublic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timeless-photostudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tradik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travis.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trucchibellezza.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tunnelbear.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvipper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twinztech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vegetariantokyo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vir2.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werbeagentur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wood-crafted.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpsmackdown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wtpdive.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--gfrrli-yxa.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--hgbk4a00a.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1lord1faith.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1password.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1password.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "360rail.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "783lab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abaaustin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdelsater.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdulwahaab.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "absolutedouble.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ackermann.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acousticalsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adwokatkosterka.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adwokatzdunek.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affordableblindsexpress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aimax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airductcleaninggrandprairie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akr.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amifoundation.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anjoola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anshar.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anthonyvadala.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aofusa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armbrust.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arpamip.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arpnet.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atyourprice.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autodidactic.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avidmode-dev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avidmode-staging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avidmode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azurecrimson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badoo.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badoo.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bahnenimbild.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bahnenimbild.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bahnmagazine.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baiduo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baristador.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bartolomebellido.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baytalebaa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestpig.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betaprofiles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billionaire365.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binnenmeer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biztouch.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blogdelosjuguetes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluimedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bokkeriders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonito.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brnojebozi.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "browsemycity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cabineritten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carhunters.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlot-j.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carolina.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catalogosvirtualesonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charisma.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chibr.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chmielarz.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "choyri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianlis.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianlis.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrysanthos.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cisofy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comeals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conn.cx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conner.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connorhatch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corinastefan.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "couvreur-hinault.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crawler.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crowdsim3d.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crt.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "culturesouthwest.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cwrau.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cwrau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cwrau.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cwrau.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cwrau.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "czbtm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d3lab.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielmorell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielran.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davesharpe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dentistesdarveauetrioux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dereddingsklos.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "design-in-bad.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devsjournal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dexigner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digicy.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dirkdoering.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djleon.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drawxp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drinkcontrolapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drlandis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drusantia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dryerventcleaningarlington.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dryerventcleaningcarrollton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dso-izlake.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dym.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dym2012.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dym2013.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dym2014.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dym2017.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dymmovie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dzyszla.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-ptn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eastblue.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ec.mine.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecardoo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eentweevijf.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehub.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehub.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ejkmedia.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ejkmuseum.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ejknet.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ejkwebdesign.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ememsei.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enjoy-drive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enpasenerji.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epidauros.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epigrafes-led-farmakeia.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eposig.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erikkruithof.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evavolfova.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evromandie.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familie-kruithof.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flickcritter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fluids.ac.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fogway.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotokomorkomania.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foundationspecialistmi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fullerlife.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "g-p-design.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gachiyase.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galanight.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gameplaysforkids.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamivo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaurl.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gdngs.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gehirn.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gepgroup.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gerbyte.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gerbyte.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gf5fcalc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghowell.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gingersutton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gisher.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gisher.video", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glitzerstuecke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gm-net.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gmtplus.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gnk.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldcoastasian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldcoastphotographycourses.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldfmromania.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gradingcontractornc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grahamcarruthers.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greensborosecuritycameras.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grillen-darf-nicht-gesund-sein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grottenthaler.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guerard.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hacker.holiday", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hajekdavid.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hardwareschotte.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harion.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hausjugo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthyteame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "henzenhoning.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hohenleimbach.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hopesanddreams.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houseofyee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howellaccounts.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hsappstatic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hti.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hubapi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hubspot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huskyeye.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hydrosight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ianklug.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ieeedeis.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imwalking.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inflationstation.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infocoin.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrathink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inkeliz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innerlightcrystals.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innocenceseekers.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investor-academy.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacik.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacobjangles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janterpstra.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jantinaboelens.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jcbgolfandcountryclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jdjohnsonwaterproofing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jelmoli-shop.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jerryweb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jf-fotos.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmce.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jorcus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joshruppe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jsdelivr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k4law.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kashinavi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kidsclub.photos", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kotobox.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landlordy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landscape-photography.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lc-promiss.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legrandvtc.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leonbuitendam.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linux-audit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livebandphotos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liverider.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucasbergen.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luke6887.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lzwc.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maeln.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mahjong-navi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "majolka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maki-chan.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manski.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mapstack.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mark1998.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markridgwell.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matejgroma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matok.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthewgrow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthewj.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattlaks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcuuid.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcversions.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medja.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menuiserie-berard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mibuiin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelismold.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modulex-gmbh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneybird.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mosquitojoe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-best-wishes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myamihealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myhome-24.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mylittlechat.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mylotto.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mymun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.run", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysterydata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n8mgt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n8nvi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n8solutions.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nadsandgams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natura-sense.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neos.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "network-midlands.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "network-midlands.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "networkmidlands.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "networkmidlands.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicks-autos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicolemathew.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nitschinger.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noahjacobson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordwal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "norsewars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nulle-part.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nyadora.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nyansparkle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obs.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olbat.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oles-hundehaus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onionbot.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opportunity.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oppwa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osnova.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ottoversand.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pact2017.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paper.sc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parentelement.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passionatelife.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pauly-stahlhandel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pauly-stahlhandel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pdfsearches.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pie-express.xxx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pintosplumbing.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planetsoftware.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plazasummerlin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pow.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pplsoft.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pressakey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pressakey.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privacychick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "procarservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projectlinuseasttn.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pt-d.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptfiber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptfiber.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptfiber.spb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "putrock.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quelle.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r7.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rail-o-rama.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rail360.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "railbird.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "railorama.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "railpassie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "railvideo.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "railvideo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "railvideo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rawinfosec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reactpwa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recaptcha-demo.appspot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "relojes-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remedionaturales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riaki.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richadams.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rivoflor.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rkmns.edu.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robinwill.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rostclub.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal812.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal850.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal857.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal859.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal862.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal865.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal867.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal868.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rsanahuano.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s1ris.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s64.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sailormoonlibrary.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleduck.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleduck.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleduck.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleduck.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleduck.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salutethefish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salutethegrains.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schottenland.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scubaland.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seanrodda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searchcandy.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebald.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebald.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seibu-kikaku.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "semiread.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sethjust.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seventwentynine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sidemount-tauchen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sielsystems.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sight-sound.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simrail.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slim-slender.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socialmarketingday.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solden.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soldesduck.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soldesduck.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundprotectionllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spoorcam.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spslawoffice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stanron.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statistik-seminare.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stcplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stevecostar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuarteggerton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studiopirrate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suke3.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunfiregold.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svobodnyblog.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sweak.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sympmarc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "systemchile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tannerwj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tapsnapp.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxid-k.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tbejos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technic3000.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techtrader.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techtrader.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "termux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-woods.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebestpersonin.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebinarys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebulletin.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theworldexchange.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theworldexchange.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timbers.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tina.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobiaswiese.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomandmara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomspdblog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toplist.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trainmagazine.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trainmagazine.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trainmagazine.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trainplaza.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trainplaza.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trainplaza.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trajectfoto.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trajectvideo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "treinmagazine.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "treinmagazine.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "troyhunt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsai.com.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unicorn-systems.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universal.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upholsterydesign.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urlakite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uskaria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valleydalecottage.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vandyhacks.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vangoghcoaching.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verifiny.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "victora.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrjetpackgame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wandystan.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wangbangyu.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wangbangyu.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wangbangyu.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wangbangyu.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wangbangyu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wanybug.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wanybug.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wanybug.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wanybug.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wblinks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-odyssey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-siena.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-smart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webadiccion.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webadicta.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webadicto.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webdemaestrias.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webnexty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatusb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whoiscuter.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whoiscutest.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whynohttps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "womcom.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woudenbergsedrukkerij.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wxforums.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xdos.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xeiropraktiki.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yogahealsinc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yrjanheikki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zacharyseguin.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zalvus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zbut.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zephyretcoraline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zvejonys.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "200.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "24hour-locksmithsanantonio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "24hourlocksmithdallastx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5percentperweek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "addon.watch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adesa.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aerobasegroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aistrope.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alainfrancois.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aldiabcs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amati.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amend-friseur-schwabing.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animeinsights.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arose.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atelierfantazie.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "austintxacrepairtoday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badoo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banham.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beacham.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beeming.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blue-gmbh-erfahrungen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blue-gmbh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bramygrozy.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brigittebutt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britishsnoring.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brittanyferriesnewsroom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "captain-dandelion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlocksmith--dallas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlocksmithellicottcity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlocksmithmesquite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carterstad.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celebmasta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ching.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chiropractic.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christthekingparish.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cinemasetfree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudsign.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "club-creole.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "club-premiere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cnvt.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comeoishii.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comosefazisto.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "countermats.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cybersecurity.run", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dampedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datagrail.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dealerselectric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deltasigmachi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dotjesper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "durbanlocksmiths.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-borneoshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehub.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "europarts-sd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashiondays.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashiondays.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashiondays.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feildel.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "franzknoll.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "game4less.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gazete.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georadar-algerie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georgiaautoglass.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gesica.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getwemap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ginzaj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "git.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glamourdaze.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glosiko.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gmslparking.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gnfrazier.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gregmote.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guyeskens.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gyara.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hanpenblog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hitn.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horton-brasses.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotdoc.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotels3d.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huber-informatik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hyperstack.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibodyiq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idratherbequilting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imaple.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "improfestival.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infinitybc.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrapass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itruth.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jakubklimek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamesross.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jloh.codes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johncook.ltd.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jolle.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kecht.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keyhomechecker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krishnenduayur.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larryli.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ledshop.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "likebee.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkedpipes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithedmonds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithmissouricity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithsanantoniotexas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithservice-houston.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithspringtx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucz.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mail-de.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcelkooiman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martijnvanderzande.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mathiaswagner.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcon.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mds-paris.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medvedikorenka.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "merlinsoap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meurisse.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midnightmango.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midnightmango.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mvisioncorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygirlfriendshouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myweddingreceptionideas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myxnr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakalabo.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickhitch.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nigt.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikonlibrary.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nova-kultura.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oceanlord.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okmx.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opendata.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ops-com.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "owlandrabbitgallery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paketo.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passionebenessere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixe2019.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playerdb.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plutiedev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privacychick.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proadvanced.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progressnet.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prontointerventoimmediato.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "providencecmc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pwaresume.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pwnedpass.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pxl.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qr.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qrbird.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rail24.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reallytrusted.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resultsatretail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richardharpur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ricoydesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rimorrecherche.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rootonline.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rushter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryan-gehring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safebasementsofindiana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salonasymetria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scan.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seby.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securityheaders.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendaiouji.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serendeputy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shadowkingdomrecords.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shop-hellsheadbangers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silicon-north.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silicon-vision.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silkon.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skycmd.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyynet.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sletat.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sparkz.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srigc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stephencreilly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiltmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stma.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stmarthachurch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stromzivota.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunsong.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surefit-oms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suruifu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "susanvelez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tabi-runrun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teammateworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefairieswantmedead.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theflowershopdeddington.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thetvtraveler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ticketsource.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tierraprohibida.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tilosp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timsayedmd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tl.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trappednerve.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuffclassified.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uclf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniontestprep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uraimo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uxteam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vega-rumia.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viagusto.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinsation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtualcommodities.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walksfourpaws.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webexpertsdirect.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winch-center.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "world-lolo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wxdisco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wyrickstaxidermy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--klmek-0sa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xrg.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xyenon.bid", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yatstudios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ycnrg.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ytx588.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zacchaeus.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zcore.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zerotoone.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zionsvillelocksmiths.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amateurradionotes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amionvpn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankitpati.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aqdun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arti-group.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balancedbrawl.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bardes.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitaccelerate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bombe-lacrymogene.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandonlui.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridalshoes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calcoolator.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camshowstorage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlocksmithbaltimore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castle-engine.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catherinejf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathy.guru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathy.website", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathyfitzpatrick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathyjf.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathyjf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathyjf.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathyjf.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathyjfitzpatrick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christtheredeemer.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudcite.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "club-slow.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "concordsoftwareleasing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contents.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crgalvin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cursosforex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cursossena.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denwauranailab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dirkjonker.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dowell.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "druckerei-huesgen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dxgl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elfring.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epiphanyofourlordchurch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everything-everywhere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "figure.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finanstilsynet.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fzhyzamt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaymerx.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gensokyo.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hagiati.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hatpakha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthcultureexpo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hkr.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hues-in-lee.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imyjy.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "incert.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jcb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jointotem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k8n.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kellimacconnell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keygen.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuroha.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liamelliott.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifeartstudios.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightscale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithdearborn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithlivoniami.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithmadisonheights.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithsammamishwa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithscottsdaleaz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lumminary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magic-cards.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magiccards.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marylandbasementandcrawlspacewaterproofing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "millettable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mixx.com.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobilecontractcomparison.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moviltronix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mudbenesov.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neteraser.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nex.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notarkrauss.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odinseye.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pems.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piroleikki.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixelz.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pokemonlab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pokemonsimulator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premiumcredit.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "programsareproofs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protectedreport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resine.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rydermais.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandervanderstap.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottgalvin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shakingthehabitual.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiqisifu.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silent-yachts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skill.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skillmoe.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soulike.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stmichaellvt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stremio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supplynation.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techpoint.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teslamagician.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theadelaideshow.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "themigraineinstitute.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tixify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topciderska-crkva.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tresor.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vault81.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veloroute.hamburg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vintagemakeupguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vogelbus.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wb256.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youmiracle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "01011970.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "01110000011100110111001001100111.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "06091994.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "291167.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2h-nagoya.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2y.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "51tiaojiu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdel.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accoladescreens.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agencyinmotion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.co.cr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.co.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.co.ve", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.bo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.bz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.gt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.hn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.kh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.mt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.ni", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.pa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.py", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.sv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.gy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.la", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alabamadebtrelief.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alaskafishinglodges.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aliorange.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allamericanprotection.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allgaragefloors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allofthestops.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anneliesonline.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anthonyfontanez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aptitudetests.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asproni.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ataber.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atvirtual.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "austenplumbing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoprogconsortium.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avvocato.bologna.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bashing-battlecats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellamodeling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bethpage.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biddle.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biegal.ski", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bliker.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloglogistics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blood4pets.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bondlink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bot-manager.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncycastlehire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brickstreettrio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camdesign.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cardsolutionsbh.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlocksmithtucson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cd-shopware.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cg.al", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chovancova.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "civiltoday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleandetroit.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearbookscdn.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearvoice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinicasmedicas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compactchess.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consultoriosodontologicos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contemplativeeducation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cromosomax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubetech.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cumberlandrivertales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dabasstacija.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dasignsource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidtiffany.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deftig-und-fein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detectivedesk.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "develops.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diatrofi-ygeia.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dixibox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domob.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drewapianostudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drtimmarch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsgarms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsgholsters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dulcinela.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duncm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eelcapone.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eldevo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elizabethrominski.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enalean.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "encycarpedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esrhd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esrinfo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evanwang0.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exitooutdoor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faelix.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fantasticservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fattorino.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feross.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filestartest.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotografechristha.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freie-software.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frontiers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "g0man.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "general-insurance.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goodshepherdmv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gregbrimble.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gunauc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gv-salto.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h10l.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackerone.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handy-center.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hankr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hirevo.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "home-insurance-quotes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howtoteachviolin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huaqian.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huxcoconstruction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibuki.run", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idealsegurancaeletronica.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ideiasefinancas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "identigraf.center", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "industriafranchini.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infomir.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "instead.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "integrityokc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetbusiness-howto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "invitation-factory.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itikon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackhoodtransportation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaetech.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamesjboyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamesturnerstickley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jannekekaasjager.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jemefaisdesamis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joshgilson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katex.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ketotadka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "killdeer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kokona.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kristofba.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ledlight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lepidum.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lignite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "likesforinsta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liquipedia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loungecafe.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loungecafe.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovebigisland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukas-meixner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lupecode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luqsus.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnunbaterias.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mana.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mangahigh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marjeta-gurtner.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markandrosalind.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martin-loewer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediarithmics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medino.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mhadot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mhand.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mhatero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michadenheijer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "millersminibarns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mim.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mimemoriadepez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mixrepairs.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "momentum.photos", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moonbench.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mum.ceo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrevery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nannytax.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nativitynj.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newmusicjackson.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "norestfortheweekend.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "npsas.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "o-results.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ohol.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olfnewcastle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omarsuniagamusic.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ond-inc.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osomjournal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacificcashforcars.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partnermobil.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peacedivorce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peterjin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfrost.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pgh-art.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phattea.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phil-dirt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinkylam.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinnacleallergy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playviolinmusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plexmark.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polinet.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polis812.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerfortunes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praktijkpassepartout.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "precisiondigital-llc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-taucher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-taucher.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prynhawn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prynhawn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prynhawn.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pscp.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quovadisaustria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qvg.company", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ranfurlychambers.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rebelonline.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reesmichael1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remax.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reyna.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richardson.cam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rocketsandtutus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roundtablekzn.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal810.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal813.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal817.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal855.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal856.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal86.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal861.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal881.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal888888.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal889.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal896.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s4q.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safeguardhosting.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanantoniolocksmithtx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scbdh.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoolcafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scigov.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scrumpus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securetrustbank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfaparish.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shalyapin.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shawnow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiqi.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shortcut.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skutry-levne.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skutry.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sky-coach.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sky-coach.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snowy.land", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spinalo.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srife.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "staer.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stclementmatawan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stclementreligioused.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stjohnsottsville.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stjoseph-stcatherine.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stjscatholicchurch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stjustin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stlukenh.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strawberry-laser.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sujal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suttacentral.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syntheticgrassliving.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tellyourtale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teriyakisecret.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terminsrakning.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebeginningviolinist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theblueroofcottage.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theforkedspoon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theyakshack.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threatcon.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "threatnix.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelrefund.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trendus.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsgkc1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuasaude.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unimbalr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uprint.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uptechbrasil.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utahtravelcenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veganmasterrace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vestum.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veterinarian-hospital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vidracariaespelhosbh.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viewey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vignoblesdeletat.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visitmaine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vogue.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voidma.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vorte.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vpnpro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vvzero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wa.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "white-ibiza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "williamscomposer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldrecipes.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wtp.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ymoah.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zionnationalpark.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "360vrs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "69wasted.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abateroad66.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abitidalavoro.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "academkin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acklandstainless.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actioncleaningnd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "addictionresource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aerospace-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agriculture-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ailitonia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.com.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnbchina.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airwaystorage.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aktin.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "all-fashion-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allemoz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allemoz.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allius.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "american-school-search.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "americanindiannursing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankaraseo.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antennista.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arackiralama.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "architecture-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asegem.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auspicacious.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "author24.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ay-net.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backseatbandits.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bahaiprayers.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beaverdamautos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bejarano.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-accounting-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-art-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-business-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-community-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-education-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-engineering-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-graduate-programs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-hvac-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-lutheran-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-management-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-marketing-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-nursing-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-trucking-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestbefore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biology-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitsoffreedom.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonawehouse.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bongo.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "briffoud.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "browserleaks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bubblin.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caldoletto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camshowverse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caroffer.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cedarcitydining.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celeraindustries.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheap-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkras.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chemistry-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cololi.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computer-science-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "construction-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctcom-peru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubing.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cursos-trabajadores.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberogism.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dance-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dangr.zone", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danzac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dataguidance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidkennardphotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dcain.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dental-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dermato.floripa.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitreads.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dimiskovska.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazione.verona.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djboekingskantoor.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djvintagevinyl.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dorpshuis-dwarsgracht.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dschwarzachtaler.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsgnet.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dubious-website.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eastplan.co.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "economics-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edenming.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electrical-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "environmental-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esgen.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estherlew.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esuretynew.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evtasima.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exordiumconcepts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "experise.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdresearch.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "film-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finance-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fire-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fiziktedavi.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fizyoterapi.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "footloose.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foreign-language-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freemomhugs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friendowment.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friendsofgfwpc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamemodding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geography-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geology-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georgepancescu.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gifudodo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gondelvaartdwarsgracht.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graphic-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hakkasannightclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hashemian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hbcu-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hikerone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hinata-hidetoshi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hirtzfr.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "history-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holymartyrschurch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hospitality-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huininga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huininga.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huininga.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huniverse.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hysh.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iblackfriday.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icetiger.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idesoft.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idesoftinnovacion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idesoftinnovacion.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ijsclubwanneperveen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infinitescript.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infogram.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infraclass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infralist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inframetro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrazine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interior-design-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internationalschool.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipfire.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipplans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iskanderbroere.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iurisnow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivy-league-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaxfstk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "journalism-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpralves.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jxltom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kabulpress.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamranmirhazar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kerrnel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kissoft.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kochinke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kochinke.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koumakan.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladyofhopeparish.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "law-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawrencewhiteside.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lewiscollard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lgbt-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lidtkemotors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifeboxhealthcare.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lijstje.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lijstje.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "literature-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ljc.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "looseleafsecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "louisemisellinteriors.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madscientistwebdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mail180.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "majlovesreg.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makechanges.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mangnhuapvc.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markus-keppeler.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markuskeppeler.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "massage-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "materassi.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "math-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxb.fm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mechanics-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "med-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediarithmics.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medical-assistant-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mexico.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelschule-rheine.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitdip-mit-group-ch.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mormon-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msize48.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myhuthwaite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypnu.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakliyat.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ndpigskin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nmmlp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nogetime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noobow.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "npregion.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nshipster.co.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nshipster.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "occupational-therapy-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odhosc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ofertasadsl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olfsecane.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omeopatiadinamica.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ondevamosjantar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openmirrors.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orocojuco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otoblok.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otokiralama.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oysterworldwide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pandkonijn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patrocinio.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paul-barton.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "performing-art-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petroleum-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petrotranz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philosophy-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "physics-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pilot-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pitbullsecuritysolutions.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plan-it-events.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "police-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "political-science-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praha-9.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pratorotoli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "precisionmachineservice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "presbyterian-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prettygirlcheats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psicologo-especialista-barcelona.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psicologo-infantil-barcelona.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psycolleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pxl-mailtracker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qdabogados.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r1a.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radegundisfest.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raevinnd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rain.bz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdmc.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "respecttheflame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revivalprayerfellowship.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riverridgecc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robbiecrash.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rolandlips.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roshhashanahfun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rys.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saint-cyril.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintpatrick-norristown.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secretary-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securitygladiators.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seoankara.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sgitc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shaadithailand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiqi.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shivammathur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shop4d.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skk.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "social-work-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sociology-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sperandii.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sports-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stannri.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stanthony-hightstown.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stefanvd.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stgeorgegolfing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stisidores.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stjosephspringcity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stmariagoretti.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stmattsparish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stpatrickbayshore.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strosemausoleum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tanacio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terrorbilly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theatre-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theverybusyoffice.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thewayofthedojo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toontownrewritten.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toppercan.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torontoaccesscontrol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truyenfull.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuev-hessen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubuntu18.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varyrentacar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verwandlung.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veterinary-colleges.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veteriner.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weather-schools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werkslimreisslim.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikihow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikihow.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikihow.fitness", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikihow.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikihow.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikihow.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikihow.mom", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikihow.pet", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikihow.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikihow.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolke7.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wonderbits.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wunschzettel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xss.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yosida-dental.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zdymak.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeal-and.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zp25.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2chan.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2chan.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advancedsurgicalconsultantsllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aeronautix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akademie-frankfurt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albertcuyp-markt.amsterdam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alinbu.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almut-zielonka.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alstertouch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alstertouch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "am-executive-consulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amandadamsphotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antaresmedia.com.py", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anwalt.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlanticpediatricortho.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azsupport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beer9.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackjackballroomcasino.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borneodictionary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "breaky.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "builtory.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bytrain.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chauffage-budget.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christwaycounseling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cme-colleg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codevat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corvax.kiev.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpe-colleg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craftsmany.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cstrong.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darklaunch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dedicatedtowomenobgyn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desuchan.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desuchan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diamond-hairstyle.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dinerroboticurology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.gorizia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dive-japan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dojozendebourges.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dostalsecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonwolfpackaquaria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drakecommercial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drpetervoigt.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dvdinmotion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eco2u.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eletor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eletor.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurodentaire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expe.voyage", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expertvagabond.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabian-klose.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabian-klose.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabian-klose.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faidatefacile.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fantasticservicesgroup.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faultlines.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feuerwehr-gebirge.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flavinus.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "formulastudent.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fpsclasico.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frownonline.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fs-g.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "g-ds.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaengler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happybirthdaywisher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiparish.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holycrossphl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hpage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humass.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilovethiscampsite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "im-haus-sonnenschein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jack2celebrities.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jazminguaramato.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jazzy-feet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joanofarcmtcarmel.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joinus-outfits.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joompress.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jtconsultancy.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karewan.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klose.family", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koenzk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kunra.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kvalitetsaktiepodden.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "la-fenice-neheim.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamontre.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leekspin.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lemazol.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lenou.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leontiekoetter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifetree.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ligadosgames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livi.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "llemoz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovemanagementaccounts.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lsscreens.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "majorpaintingco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malik.holdings", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manti.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariskavankasbergen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marksmanhomes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marsikelektro.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mecaniquemondor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medpeer.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "microzubr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minutashop.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mta.org.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muz2u.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygedit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mzstatic.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nefro-cme.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neheim-huesten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northcreekresort.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ocni-ambulance-most.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okurapictures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldsticker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldstmary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ourladymountcarmel.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ourladyofcalvary.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ourladyoftheassumptionchurch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ourladyqueenofmartyrs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patrick21.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pension-am-alten-waschhaus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philipssupportforum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proeflokaalbakker.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progresswww.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regeneo.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reifr.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rokass.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rteguide.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sainthelenas.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintjohn-bocaraton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saorsat.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schlarb.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schwarz-gelbe-fuechse.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendtrix.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sewa.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfg-net.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfg-net.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfg-net.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfg-net.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shee.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shinsyo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soontm.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spartacuslife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steemyy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stfrancisnaugatuck.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stgabrielstowepa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sthenryrc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studiohomebase.amsterdam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sv-bachum-bergheim.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swiftcashforcars.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thevenueofhollywood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thrillernyc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiekoetter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topgshop.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ustugov.kiev.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ustugova.kiev.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valek.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valkova.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "variomedia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vauceri.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtualspeech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vlakem.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vos-systems.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whirlpool.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wyydsb.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wyydsb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--ehqw04eq6e.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youpickfarms.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zirka24.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a-ztransmission.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboveaverageplumbing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "absoluteautobody.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aefcleaning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aerotechcoatings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affittialmare.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affordableenvironmental.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agemfis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allpointsheating.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allstarcashforcars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allterrainfence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anothervps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apluswaterservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arlingtonelectric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artificialgrassandlandscaping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoproshouston.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beforeyoueatoc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belavis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blenderinsider.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bryggebladet.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "butteramotors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calculadoraconversor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casa-lunchbreak.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "case-vacanza-salento.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centennialseptic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chascrazycreations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "civicforum.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cognicom-gaming.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "communitymanagertorrejon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conradsautotransmissionrepair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consultoriadeseguranca.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coolcamping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptomaniaks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cuxpool.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davisdieselandautorepair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ddosolitary.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "depannage-traceur.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dicesites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "douzer.industries", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamdivers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eastsideroofingcontractor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easymun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eden.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emisia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurocars2000.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extradivers-worldwide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feuerwehr-coesfeld.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floogulinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortuna-apotheke-lahnstein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "francoisharvey.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fukuiedu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gessettirotti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glassexpertswa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gqmstore.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "havarijna-sluzba-bratislava.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdkandsons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "henrysautodetail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hnn.net.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horeco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humexe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ignitelocal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ikxkx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrabeep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infradrop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infranox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrapilot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infraping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infraspin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infratank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infravideo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interstateautomotiveinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jelenkovic.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jodyshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "js-web.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "julienschmidt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k-system.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kenscustomfloors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingsgateseptic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kohoutsautomotive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "komplet.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koplancpa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ktsofas.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kxway.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakewoodcityglass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lapicena.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liljohnsanitary.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luowu.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "machinetransport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maitheme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mandynamic.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manonandre-avocat.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maplehome.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martialarts-wels.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minecraftstal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morbius.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mosaicmarble.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "movacare.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mukilteoeuropeanautorepair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neighborhoodelectricwa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nenkin-kikin.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nunesgh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "octocaptcha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olastrafford.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-textil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-textil.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-textil.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palestra.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulsnar.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paysbuy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pepeelektro.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petermaar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plumbingandheatingspecialistnw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polygraphi.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poodleassassin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-ben.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "promedyczny.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pushoflove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "questoj.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainiv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rct.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reddyai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reinhardtsgermanautorepair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resourcesmanagementcorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ricksfamilycarpetcleaning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripcordsandbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roofingandconstructionllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rumartinez.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintmarkchurch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saludmas.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santiagogarza.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savaari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sb-sd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schnuckenhof-wesseloh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scohetal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seedisclaimers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shadowsocks.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simkova-reality.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sion.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snohomishsepticservice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sofortimplantate-muenchen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundtruckandautorepair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spokaneexteriors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studioavvocato24.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "subjektzentrisch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superdroni.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supra.tf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svorcikova.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swingular.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "themenzentrisch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theoc.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thevisasofoz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tibicinagarricola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tipulnagish.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tom-kurka.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tractorfan.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transmitit.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "treeworkbyjtec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urbizoroofing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vapingdaily.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venuedriver.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visasofoz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vos-systems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vos-systems.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vos-systems.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vos-systems.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vsd.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wapoolandspa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wetrepublic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whitebirdclinic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whiteknightsafelockinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolfvideoproductions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xsteam.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yeskx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourlanguages.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhaopage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zom.bi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1911trust.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "21stnc.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2718282.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a-invest.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ainutrition.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ainvest.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airbnb.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aktin.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alieke.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrejstefanovski.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angeljmadrid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annunciationbvmchurch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artfabrics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ask.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atelierhsn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlasbrown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audreyjudson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aurelieburn.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoto.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auxiliame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avvaterra.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basementwaterproofingdesmoines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betsharpangles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bguidinger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcork.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bjmgeek.science", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bkkposn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluekrypt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bodyshopnews.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bucek.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carson-matthews.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casa-lunch-break.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casalunchbreak.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caseycapitalpartners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cellebrite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cennelley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cennelly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charlottesvillehorsefarms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clayprints.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clippings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coltellisurvival.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "commeunamour.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corpuschristisouthriver.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coxcapitalmanagement.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpasperdu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cra-bank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cra-search.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craigleclaireteam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cratss.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crc-bank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crc-search.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crisp.watch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cronoscentral.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctkwwri.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubebuilders.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d6c5yfulmsbv6.cloudfront.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dannhanks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demiranda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dev-gutools.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devstroke.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devtty.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dijitaller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dirtyprettyartwear.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discarica.bologna.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divinemercyparishvld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divinemercyparishvlds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmparish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domakidis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dras.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drawtwo.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drcarolynquist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drlinkcheck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drsamuelkoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dvipadmin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebenezersbarnandgrill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echobridgepartners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eflorashop.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eflorashop.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eflorashop.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eflorashop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eflorashop.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eflorashop.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eflorashop.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eflorashop.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eflorashop.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eflorashop.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eflorashop.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehrenburg.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eichler.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eltlaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emarketingmatters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emdrupholm.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emil-dein-baecker.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emil-reimann.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emils-1910.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "encryptmy.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "encryptmysite.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epi-lichtblick.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epspolymer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eta.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euroflora.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euroflora.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdalawboston.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdaregs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferienwohnung-hafeninsel-stralsund.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fewo-hafeninsel-stralsund.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fikst.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fileservicios.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finwe.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fioristionline.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fliesen-waldschmidt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floraclick.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floraexpress.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floridasexhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frasesconemocion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaojianli.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gartenbaur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genbright.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ginabaum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glassrainbowtrust.org.je", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "golang.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grayiron.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greathairtransplants.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greeklish.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haberer.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haemka.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "havernbenefits.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holycrossverobeach.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holyfamilyrussell.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holyghost-church.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holyspiritpalmyra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holyspiritweb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotel-kontorhaus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iamanewme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idxforza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ifgcdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iimarckus.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "illusionunlimited.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilonewolfs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "im4h.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "im4h.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "im4h.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imap2imap.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immigrantdad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indianafoundationpros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inframint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inspiredrealtyinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivsign.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackassofalltrades.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jclynne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jgregory.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmorahan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joergschneider.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johanpeeters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joinhonor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonathanlara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jordandevelopment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juanmazzetti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kacgal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keylength.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khslaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingsfoot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klingenundmesser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kontorhaus-stralsund.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lachyoga-schwieberdingen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasavonnerieducroisic.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lektier.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "levineteamestates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libre.cr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lincolnpedsgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lindnerhof.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luca-steeb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lusitom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madisonent-facialplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailnara.co.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mangotwoke.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcoklomp.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mburaks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mc-ruempel-firmen-und-haushaltsaufloesungen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "me-soft.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metallosajding.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metricmutt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miavierra.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mmaps.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modemchild.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modern-family.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moreniche.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mt-bank.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtauburnassociates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mykumedir.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myprotime.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mzmtech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n-linear.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naahgluck.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nashvillebasements.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neotiv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neowin.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nhdsilentheroes.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northpointoutdoors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nutra-creations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ocalaflwomenshealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "of2m.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okaidi.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okaidi.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olcbrookhaven.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olhcparish.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olmc-nutley.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olqoa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opexterminating.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oppada.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "original-christstollen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "original-christstollen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palmaprop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panjiva.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pedimanie.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pekarstvivetvrzi.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philipdb.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pooltools.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poorclarepa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "preserveourhillcountry.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proyectafengshui.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psg-calw.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pyrenees.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qianmo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raku.bzh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regionalgrowth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remiafon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rgraph.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhumblineadvisers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ricardopq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richardlevinmd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripcorddesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roeljoyas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rupeevest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sadhana.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sainthelena-centersquare.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintisidorecyo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintjosephschurch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintmaryna.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintphilipneri.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintpius.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintpolycarp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samshouseofspaghetti.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sander.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarasotaroboticurology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarkisianbuilders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sbscyber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sceenfox.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "screefox.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "screen-fox.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "screenfax.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "screenfox.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "screenfox.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "screenfox.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sdgllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "se-booster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securityescrownews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sensound.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sgs.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shippercenter.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "showersnet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shtaketniki.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shtaketniki.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siberas.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siberkulupler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sisiengineers.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sjbwoodstock.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smithchung.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smvcm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snegozaderzhatel.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sniderman.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snperformance.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soft41.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "somethingsketchy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sos-elettricista.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sos-muratore.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sourcecode.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "southeastvalleyurology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "southernsurgicalga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "southlandurology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spediscifiori.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spikelands.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "splnk.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spnitalianfestival.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "springhillmaine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stbartholomewmanchester.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stbl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stceciliakearny.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stelfox.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sternsinus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stmarkseagirt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stockstuck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stonehurstcap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ststanstrans.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stthomasbrigantine.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studio-637.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supedio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supracube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supremestandards.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sussexheart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sz-lessgym-kamenz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technospeakco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techpilipinas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-big-bang-theory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the8rules.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theafleo.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebestofthesprings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theeffingyogablog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegerwingroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehamiltoncoblog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "themiddle.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theninenine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thetinylife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thevalueofarchitecture.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timi-matik.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toomy.pri.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trueduality.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truetraveller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "txurologist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unternehmerrat-hagen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vaneurology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vawomenshealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veincenterbrintonlake.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vidarity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viewing.nyc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viveport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vodicak.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voltahurt.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w1n73r.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wba.or.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webstart.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wegonnagetsued.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westside-pediatrics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whitehats.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whysoslow.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windforme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winterhavenobgyn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winwares.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "womensmedassoc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpccu-cdn.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wplistings.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--heilendehnde-ocb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoa.st", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youngauthentic.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zdravystul.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zinnowitzer-ferienwohnung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "42ch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "79ch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a2a.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a2os.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aapar.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accpl.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actheater.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adam.lgbt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adlignum.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aedollon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affittisalento.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aidanpr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aidi-ahmi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aiho.stream", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfred-figge.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allurebikerental.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alternativeinternet.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amardham.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anciens.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animes-portal.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankane.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antennista.bari.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aoeuaoeu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apasaja.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aplusdownload.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archaeoadventures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arroba.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artebel.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artofcode.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aryalaroca.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asafaweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashkan-rechtsanwalt-arbeitsrecht-paderborn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashleymadison.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asurbernardo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auntmia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "australianattractions.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autobarn.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autotransportquoteservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awarify.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awarify.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azarus.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badaparda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bangyu.wang", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bankpolicies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baravalle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bavartec.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "befreewifi.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellaklein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-tickets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestdownloadscenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betaal.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beyerautomation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bhxch.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bidman.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bidman.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bioleev.sklep.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biomed-hospital.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biomed.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biospw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bistroservice.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinfees.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitski.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bjolanta.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackbird-whitebird.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluesuncamping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "botoes-primor.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brian-gordon.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brk.st", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buayacorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bueny.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buissonchardin.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bunnydiamond.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cachedview.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "callanan.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlinmack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlocksmithkey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carshippingcarriers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccc-ch.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdvl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certaintelligence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certifiedfieldassociate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chat-house-adell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheatengine.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chocolat.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chocolytech.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chopperdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christian-folini.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christiancoleman.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cierreperimetral.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "civilbikes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claygregory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codehz.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coldcardwallet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comohacerblog.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conorboyd.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coworking-luzern.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpsq.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creer-une-boutique-en-ligne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crownaffairs.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cruisemoab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crystal-zone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cstanley.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cube.builders", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubecraftcdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberhipsters.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d2.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "damirsystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dangmai.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielgray.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dataprivacysolution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datorhjalp-stockholm.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datorhjalptaby.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dcmediahosting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defreitas.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denkubator.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derp.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diba.org.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalposition.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discarica.bari.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dist-it.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "distro.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmaglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "docplexus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolciterapie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doujinspot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downloadhindimovie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dpecuador.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreemurr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dronebl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-imzo.uz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echoit.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echoit.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echoit.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echternach-immobilien.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "educatek.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "educationmalaysia.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edwinmattiacci.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehcommerce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehseller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehsellert.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elettricista-roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emaging.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enjin.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enrich.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eqibank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erasmo.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ericspeidel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esote.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estada.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethanjones.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabbro.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fadeev.legal", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farmaciadejaime.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fast-pro.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferienwohnung-wiesengrund.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fibromuebles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "figliasons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finagosolo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findyourtrainer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flourishtogether.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fluggesellschaft.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flypenge.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fnpro.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forro.berlin", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fredriksslaktforskning.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "free-ss.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fsty.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabriele.tips", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galaxy.edu.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galeriarr.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garagedejan.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garnuchbau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gayauthors.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gearboxhero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gedlingtherapy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genevachauffeur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geocar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geomonkeys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghettonetflix.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ginza-viola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gloria.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldytechspecialists.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "golser-schuh.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gordeijnsbouw.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greywolf.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grove-archiv.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gtxmail.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gudrunfit.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gururi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gutools.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gymbunny.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hashxp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hcscrusaders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hebamme-cranio.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hemtest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hennies.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heromuster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hesslag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holofox.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hopemeet.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idrottsnaprapaten.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iesonline.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ihcprofile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ihmphila.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ijsbaanwitten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ikke-coach.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immersa.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infranoto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrapeer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innover.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "instantphotocamera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "institutogiuseppe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "institutogiuseppe.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "int64software.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interlijn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irkfap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isbaseballstillon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isolta.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-boss.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-stack.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-support-stockholm.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-tekniker.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ithjalpforetag.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsayardlife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivopetkov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iwascoding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jane.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jankamp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeemain.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeeranservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jewishquotations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jki.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpmguitarshop.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jundongwu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justinribeiro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k1024.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamisato-ent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karoverwaltung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ke.fo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevin-ta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kisel.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kitacoffee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klusweb-merenwijk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knihovnajablonne.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "komall.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kosuzu.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "l17r.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labanochjonas.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labanskoller.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamed.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larabergmann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learnlux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lendahandmissionteams.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "les-inoxydables.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesbrillantsdaristide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lialion.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "living.video", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livingafrugallife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lizzwood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ljusdalsnaprapatklinik.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lob-assets-staging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lob-assets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lunalove.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luukuton.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lvftw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lvguitars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lzcreation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makos.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manatees.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mapchange.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marabunta.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcusds.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maryhaze.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matt-royal.com.cy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediabogen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meisterlabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meistertask.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metron-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michelskovbo.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "microwesen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mindmeister.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minepack.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modav.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mohr-maschinenservice.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mollie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monsieurbureau.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "montgomeryfirm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mta.fail", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musicfromgod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musicstudio.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myboothang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myeasybooking.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myloan.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myonline.store", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypartnernews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n2diving.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n8solutions.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nabidkydnes.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nadiafourcade-photographie.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nai-job.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naji-astier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanotechnologysolutions.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natuerlichabnehmen.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturalezafengshui.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ndum.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nemplex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neodigital.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nepezzano13.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netnea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nfam.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicochinese.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nodecdn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northcreekresortblue.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notilus.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novacal.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nutrafitsuplementos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ofertino.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ofertolino.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "older-racer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oliverschmid.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinemarketingmuscle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oppositionsecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opteamax.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ordoro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oruggt.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "packagist.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paintball-ljubljana.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pakingas.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paracomer.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pay-online.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phpstan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinterjann.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pirateparty.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornagent.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praetzlich-hamburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "preferredreverse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projectxyz.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "promiflash.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prospecto.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prospecto.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prospecto.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prospecto.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostoporno.vip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puestifiestas.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "punchlinetheatre.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "putin.red", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qani.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qe-lab.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "queencomplex.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiq-api.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiq-cdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiq.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rcgoncalves.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reflets.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "respiranto.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "restaurant-de-notenkraker.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retornaz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retornaz.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retornaz.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rijschoolrichardschut.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robinfrancq.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rootpigeon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rs-maschinenverleih.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rte.radio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sailwiz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sardacompost.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottipc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "screenpublisher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "se-live.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seamoo.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searchfox.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "section77.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seedcoworking.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segnidisegni.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sensoft-int.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seodayo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "server92.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "settimanadellascienza.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shabiwangyou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiqi.lol", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiqi.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopific.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sinusitis-bronchitis.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skgzberichtenbox.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skolakrizik.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skorepova.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skpk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimentorifiuti.livorno.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartweb.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sn0int.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snortfroken.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sofiesteinfeld.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sos-fabbro.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "souked.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spenny.tf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqsd.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssl24.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stadtkapelle-oehringen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stang.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stephenreescarter.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stmatthewri.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stonechatjewellers.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stpaulcatholicchurcheastnorriton.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "streetlightdata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stroccounioncity.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studiogears.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunred.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superidropulitrice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sweet-spatula.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "system4travel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tascuro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxo.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tesseractinitiative.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thedroneely.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theender.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefreemail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thenerdic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thestreamable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theworld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thijmenmathijs.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thirdgenphoto.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tidy.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tittelbach.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top4shop.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torfbahn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tower.land", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toycu.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traininghamburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trenztec.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trianglelawngames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trueachievements.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trueweb.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuxpi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twdreview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ujvary.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umbertheprussianblue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unfc.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ungaeuropeer.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unstoppableunits.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usb-lock-rp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vegekoszyk.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vehicletransportservices.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verboom.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "victoryalliance.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videojuegos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vocescruzadasbcs.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vsl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vulyk-medu.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w8less.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wallsauce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wallumai.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wapazewrdamcdocmanui6001.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waynefranklin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weddingdays.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weebl.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wenta.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatdevotion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatisapassword.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiener.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wombatnet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wombere.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodenson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xceedgaming.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xiashali.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--mgbuq0c.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yosida95.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zagluszaczgps.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zehkae.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeidlertechnik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhaoeq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhenic.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zochowskiplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3dgep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afterdwi.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amazingraymond.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "australianairbrushedtattoos.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "australiantemporarytattoos.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avaeon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bfp-mail.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blakezone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloody.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluebahari.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bmk-kramsach.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bou.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cele.bi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cherrybread.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chipset.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrisvannooten.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dannicholas.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diaroma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discordservers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djlinux.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dontbeevil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "draadloze-noodstop.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dzar.nsupdate.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eikounoayumi.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emasex.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essayjob.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etha.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fatalerrorcoded.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gavin.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getbrowink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glont.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harukawa.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icecontrol.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imtikai.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inffin-portal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetmedia.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isiso.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeremybloomfield.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kap.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ktm-troxler.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kupaa.ink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kurniadwin.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakkt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lammersmarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lriese.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthewljiang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicm.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mensarena.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midcarolinaregionalairport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midcarolinaregionalairport.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrhookupsd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mteleport.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natureclaim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ntlabs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osirium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pagina394.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pavamtio.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfectfocuseyecare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pholder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pillowfort.pub", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poemlife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pokrowcecardo.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polomack.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "primalshop.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "procrastinatingengineer.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychotechnique.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychotechnique.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychotechniquetest.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qpcna.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readyrowan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readyrowan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regularizaeudora.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richeyweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rowancounty911.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rowancounty911.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rowancountyairport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rowanpubliclibrary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rowansheriff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rowansheriff.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rowantransit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rowantransit.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rozar.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sacredheart-cliftonheights.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintefoy-tarentaise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sainteugenechurch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sainteugeneschurch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintfrancescabrini.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintmaryscathedral-trenton.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samplefashion.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarabara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schmitt-etienne.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sesrdcem.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shimmy1996.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "showfom.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sicurezzalavoro24.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siemencaes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smokefreerowan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spero.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spotswoodvet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stjosephri.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stkevin-stbenedict.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stocp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stpatrickkennettsquare.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stpatrickri.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stpatricks-pelham.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "straphael-holyangels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ststanislaus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testoon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theideaskitchen.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timebutler.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tisvapo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toerschaatsenknsb.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torlock2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torrentfunk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torrentfunk2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tramclub-basel.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvlanguedoc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "u-he.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vampire142.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webwelearn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "welovemaira.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werbe-markt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--mntsamling-0cb.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourbittorrent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourbittorrent2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "162jonesrd.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3dcollective.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu168.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu178.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu666.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu8.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu88.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4lock.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aacs-design.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adativos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "administrator.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adnolesh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alphanodes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alternative.hosting", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alternativetomeds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altmann-systems.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amazingraymond.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ampleroads.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antiaz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apimon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "art-pix.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "art-pix.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "articu.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atc.cuneo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atheistfrontier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "australiantemporarytattoos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviationstrategies.aero", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bantaihost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bearlakelife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belezashopping.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belfor-probleme.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bensokol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betonmarkets.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bibica.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biznesonline.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bizzdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bomhard.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brachotelborak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brelahotelberulia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brioukraine.store", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brubankv1-staging.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brueser-gmbh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsapack564.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "butlerfm.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cafled.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cambreaconsulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canadianatheists.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canadianatheists.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canopycleaningmelbourne.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinorewards.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cgminc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatforskning.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chicagoemergencyclosings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cimbalino.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citfin.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citycreek.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coatsandcocktails.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comicspornow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comprarimpresoras-3d.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "correcthorse.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "country-creativ.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielparker.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "define-atheism.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "define-atheist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defineatheism.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defineatheist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desertmedaesthetics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devswag.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dia.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diccionarqui.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.napoli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnsaio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnskeep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnskeeper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doorswest.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dox-box.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragon.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "draintechnorthwest.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "driftingruby.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "droidandy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echorecovery.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eden-institut-carita-valdisere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edshogg.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eglisedenantes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emailmeform.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emilio.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emprechtinger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entwickler.land", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exmart.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faeservice.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fantasy-judo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ffrev.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finzy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firexfly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fisiobox.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flieger-funk-runde.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foodloader.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freelancejobs.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freewoodfactory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fullfilez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabiocs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gophoto.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gowancommunications.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grapevine.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenpaws.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gumeyamall.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guolaw.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hajekj.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hamburg40grad.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hansashop.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heldtech.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helgaschultz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hems.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heroco.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "himiku.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hnrk.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoge.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holzed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homunyan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelelaphusabrac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelkaj.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelmarinaadria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelneptundalmatien.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelsolinebrela.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howtomovetheneedle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hro.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hsts.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ht.mk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hubchain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hubchain.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hubchain.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hubchain.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hubchain.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hundhausen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-0v0.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibps-recruitment.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immobiliengutachter-holland.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infobrain.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intellitonic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intr0.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iwatchcops.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iwatchcops.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jan-reiss.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jasonsplecoscichlids.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jodbush.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpbe-network.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keepsight.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keponews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kidaptive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klemkow.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klemkow.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klinik-fuer-aesthetische-zahnheilkunde.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kos4all.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kosherjava.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kramer-edelstahl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "l-atelier-c.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lacaey.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lancelhoff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lancemanion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lehmitz-weinstuben.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lequest.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifefoto.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkopia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livehomecams.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loansharkpro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locklock.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locklockbrasil.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locknlock.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locknlockbrasil.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loker.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lumbercartel.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lupa.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailtelligent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "margays.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matrieux.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "merchcity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mesec.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mixmister.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monobunt.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moplx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muunnin.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypay.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nayr.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netd.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsgroups.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nexd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noahwitt.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northernpowertrain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nphrm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nwitt.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "offgridauto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "om.yoga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onetouchrevealplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openjur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opensourcesurvey.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orlandobalbas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxia.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxiame.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parcoursup.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkingparisnord.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pellet.pordenone.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfmatters.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pets4life.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "php.watch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phyley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinot.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pkeus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "preme.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "primananda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propertysales-almeria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pulsnitzer-lebkuchen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvamg.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pxgamer.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabbitinternet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radarbanyumas.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "randolf.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rbmland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reades.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reticket.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retroride.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "returnonerror.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richardson.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ritirocalcinacci.viterbo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rmi.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roomguide.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s2t.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safeitup.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salon-hinata.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saultdefencelaw.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scholieren.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebjacobs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seekfirstthekingdom.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seloc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharing-kyoto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shimi.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shimi.guru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiqi.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sincemydivorce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skulblaka.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyeeverest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slt24.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slunecnice.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimento.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimentorifiuti.prato.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartpti.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smtparish.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spieltexte.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stal-rulon.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "star.watch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startliste.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stmarysnutley.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoneedgeconcrete.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studentklinikk.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syakonavi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "symdevinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taishokudaiko.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tallinnsec.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tea.in.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teganlaw.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teganlaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tekniksnack.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telegram.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thietbithoathiem.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thomas.computer", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thomien.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tilde.institute", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tophat.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toplist.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tracking.best", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trafficmanager.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tucepihotelalga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ufocentre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unikrn.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upcambio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upengo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uriports.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utahblackplates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utahcanyons.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uwat.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uzayliyiz.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valuemyhome.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valuemyhome.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valuuttamuunnin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vapex.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verschurendegroot.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vincentiliano.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitalia.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viva2000.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrcprofile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wangriwu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wicharypawel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wildcatdiesel.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woblex.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wotsunduk.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xdtag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--2sxs9ol7o.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--b3c4f.xn--o3cw4h", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--z1tq4ldt4b.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ypse.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhangwendao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhouba.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zubr.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0xaf.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5stars.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a-care.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abitidasposa.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abogadosescobarysanchez.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aborla.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adcnvs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adtelligent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advenacs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aeonct.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aipi.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allsun.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpencams.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alternativehosting.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alternativehosting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aluminium-giesserei.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alxu.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "americasdirector.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amiciperlatesta.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anatoray.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antonok.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aod-tech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aori.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archeologicatoscana.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archit.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arunjoshua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "athekiu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlascoffeeclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atmalta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aucarresainteloi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoreinigung-noack.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoskolaplzen.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b767.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bananice.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baza-gai.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beavertales.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belos.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benbalter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bewegigsruum.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bfcgermania88.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bfob.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bgmn.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitrefill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bkt.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boreo.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brightside.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bukiskola.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bunny.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "butzies.ddnss.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bypetula.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camshowdir.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canberraoutletcentre.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casa-laguna.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casadopulpo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caseof.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catram.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centerperson.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkandreportlive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkblau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chromopho.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cihar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cinkciarz.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citas-adultas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cldinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudsecuritycongress.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloze.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cockfile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collab.ddnss.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collaborativehealthpsychology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comedyhuis.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "commissaris-vraagbaak.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computerwerk.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "concreterepairconcreteraising.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conotoxia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corpoepele.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpe-registry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpe-registry.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpe-registry.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cperegistry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cperegistry.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cperegistry.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creativeangles.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cronenberg.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csa-library.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csaapac.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csacongress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csacongress.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csadc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csasummit.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csasummit.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cvtemplatemaster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dafyddcrosby.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidkeane.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decor-live.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deep-labs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "depedtambayan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devils-point.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digital-sculpture.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalblood.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discus-communications.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divisuite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnalounge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnapizza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogodki.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dominik-bergmann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doxal.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drgn.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "droneland.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "du-alex.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duckcorp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dutchfoodie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-sushi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easypayments.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echarity.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ekranos.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elodrias.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emilstahl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "engl-server.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enotefile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "envide.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erlebnisarchaeologie-bayern.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exadime.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facarospauls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fantraxhq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fbrief.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feixiang.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findelahistoria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findingtheuniverse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finefriends.social", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finefriendsapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flamingogroup.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "followmystaff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frau-pusteblu.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeministryresources.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fsgeek.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furries-united.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gadget-tips.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gallmeyer-consulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaw.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gearbot.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gehrke.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "givingtools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "go2archive.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gosnipe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haancommunity.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackerone.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackingondemand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hajekj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hansashop.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hatter.ink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haustechnik-schulte-sanitaer-heizung-klima.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heitepriem.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hendrickx.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herbertjanvandinther.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hitchpin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoathienthao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoathienthao.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holidayacademy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homelabquotes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "honoka-seitai.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huangqifu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idyl.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imcsi.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "independenttravelcats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infosectekniques.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infraball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrabeta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrabold.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infraboom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infraclip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infracron.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infradart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infradisk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrafuse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infralira.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infraloon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inframake.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inframeet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inframenu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infraname.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infranest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infratask.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infratrip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infravibe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inspiratienodig.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipso.paris", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irismq.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isitef.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itcs.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "its420somewhere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itseeze.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iwascoding.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j-robertson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j5lx.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j5lx.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackyliao.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacobs-implantate.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaybrokers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jdm.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jennethaarfotografie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jianwei.wang", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joesniderman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "julm.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jwz.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamen-master.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kennedyinsurancesolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kieran.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinecle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiropraktorvard.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kizomba.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kizzycode.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kjnotes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kk.in.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kleine-viecherei.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koeeusa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "komodolabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kroell.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ksopp.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kt-events.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kunaldesai.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuunlamaailm.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laserhealthsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legnami24.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesummeira.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lexic.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linaklein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linuxbg.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lipighor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "list-gymnasium.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littleduck.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithlakewaytx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithmesquitetexas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithsbuda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lockwoodchristmastreefarm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lostsandal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lostsandal.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maduradas.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maduradas.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magicjudges.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martian.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "massagetherapyschoolsinformation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "math-coaching.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcconciergerie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mibh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelloveys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micsell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijntelefoonboek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milkypond.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minican.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mircarfinder.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mnienamel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moleskinestudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motor-forum.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrmad.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mudit.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muilties.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myclgnotes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myibidder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myloneworkers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mymonture.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myopd.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrepublic.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mzlive.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nabbar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakayama.industries", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakayamaresearch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nameproscdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naseehah.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerdpol.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nethack.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netzona.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicolaiteglskov.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nob.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noleggiolimousine.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noonan.family", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nourishandnestle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "npbeta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nrsmart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okqubit.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okviz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olivier-rochet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "open-ctp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "open-ctp.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "open-ctp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openctp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openctp.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openctp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ore.cool", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osolutionscorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outincanberra.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ownagepranks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pagerduty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palavalbasket.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palermopride.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pencil2d.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permaseal.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pickupenc.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixshop.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plantron.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ponio.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porncompanions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "productionscime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prove.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proxirealtime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "punchlinetheatre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puntcunts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purityclothing.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qrpatrol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qxzg.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiolla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiopleer.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raid-runners.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "random.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "razrsec.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reach-on.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readabilitychecker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recettecookeo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regensburg-repariert.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "respons.je", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "respons.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "respons.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "respons.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "respons.ws", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "responscode.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "responscode.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "responscode.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "responscode.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "responsecode.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "responsecode.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "responsecode.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romtex.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rootkit.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rtsak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rxguide.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samorazvitie.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sangyoui.health", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schmatloch.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schonstedt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sek.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shrt.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sigma957.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silvershadow.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sluhockey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sluo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartgridsecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartgridsecurity.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snh48live.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soblaznenie.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soblaznenie2.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "software-search.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solemare-hotel.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportmundschutz-info.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spotypal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "springtxcarpetcleaning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqlbi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stevezheng.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiebel.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiebel.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiebelmedia.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiebelmedia.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "subtitry.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "summerbo.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunbury.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sv-schody.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swifteh.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "systemisbusy.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "szasz.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tagnull.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talichi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tallship.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tambayology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taowa.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tatler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcl.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teambim.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecnosa.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testingbot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-jeuxflash.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theboats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theboats.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegioidulich.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelounge.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thenetw.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thesage.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thesanta.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thurn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tib1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tieronegraphics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tm-t.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tradingview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traducir.win", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "treestarmarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trico-pigmentazione.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "try2services.vc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twatspot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vervewellness.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vindipoker.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitamina.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitamina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vive.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voxpopuli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wammu.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wav-productions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webionite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webperformance.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wegrzynek.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wgtrm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woshiluo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpboot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpcs.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--13-6kc0bufl.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--mgi-qla.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yangjingwen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yosakoinight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourbodyknows.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourbodyknows.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourscotlandtour.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yunloc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yycbike.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhanghao.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abg.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aeronote.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aianipid.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alltherooms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anciennes-automobiles.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andromeda.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arweth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlas-multimedia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoi.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badkamermarkt.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beltar.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benjijaldoner.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bezposrednio.net.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blatnice.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blatnice.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blatnice.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blatnice.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blatnice.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bokadoktorn.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boxspringbett-160x200.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britishsfaward.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carcloud.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carterdan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casacazoleiro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "civicamente.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cookingperfected.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cupoane-reducere.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dax.guide", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daxpatterns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dezzoroofing.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digital-insurance-engine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digital-insurance-platform.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digital-insurance-platform.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divewithfrank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "driveexport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "econsorzio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escalesensorielle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familienportal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faradrive.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farleymetals.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fishlanestudios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gametowndev.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genemon.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geometra24.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gow220.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graphobyte.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hardhat.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hgpowerglue.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ictoniolopisa.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isaropiping.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalugadeti.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinderarzt-berlin-zia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kongress-hostessen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lado.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladotech.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladotech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lagunakitchenandbath.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livogeva.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ljoonal.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ljw.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lockaby.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lokal-speisen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mankomarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mototax.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mountainbatchers.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multimediapc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "museclef.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncarmine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nyoliveoil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omenprinting.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p0l.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paullockaby.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "payjunctionlabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pefricea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pxetech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rafas.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rauschenbach.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rise.global", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ristrutturazioniappartamentinapoli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saluels.servemp3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saputra.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarbash.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schluesseldienst-hannover24.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secure-computing.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sheerchain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sjnp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tende.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thisistechtoday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tryhexadecimal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "u-page.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umzuege-hannover.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umzugsunternehmenberlin.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unpluggedjuice.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utrace.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wasabiwallet.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wasabiwallet.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webia.in.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webmediaprint.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zundapp.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "24.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7plus.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allmousepads.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allroundtechnology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allroundtechnology.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angiejones.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apiplus.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atzzz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avmup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belanja.express", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bettersecurity.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blubop.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cfigura.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charlie4change.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chesterfieldplaceapartmentsstl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloud9vets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cncs.gov.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "condominiosi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coya.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crossway.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielgray.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deerfieldapartmentsstl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denkmalagentur.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "design-production.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deskaservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "develope.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eola.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expii.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "face-fashion.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fetchease.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fkosquad.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fozzie.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gakki.photos", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamcore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gathu.co.ke", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getlawyered.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glixee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graph.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groundthumpinmotors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guadagnare.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harveyplum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellovillam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hirevue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hydronicheatingaustralia.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inspiredlife.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interessengemeinschaft-pregelstrasse.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacksanalytics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamesedition.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justinfreid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katyusha.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kooxdiving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kscarlett.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lafermegourmande.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavril.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learnthetruth.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learntotradethemarket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littleblackfish.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livecchi.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luclu7.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m-gaming.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mayorcahill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mb-server.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metallomania.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nagrad.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newbrunswicktoday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nihilistan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nomaster.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oskrba.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paolotagliaferri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "payjunction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pebblepointapartmentsstl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phibureza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photosafari.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pimylifeup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pointcab.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potato.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pt.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puntonium.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qingly.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quirkytravelguy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rbx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reaksi.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "red-button.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redecsirt.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "refer.codes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retailcybersolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retrotown.ws", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roko-foto.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruha.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runfitcoaching.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarahwellington.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoenstatt.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sektor41.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sentencing.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seowordpress.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shapediver.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sheenveininstitutestl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopfinale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplegoodhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sitz.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sixnines.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slowcookingperfected.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sneakycode.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sql.bi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steffenmeister.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiebelservice.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiebelstore.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stlouisinsuranceco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stonegateapartmentsstl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tacticalavocado.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telegra.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebirchwoods.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thermia.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thermia.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tio.run", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "treml-sturm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trentonmakesnews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truthsayer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tryitonline.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tts-assessments.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tujunfang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universrumbacongolaise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vegoresto.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtus-group.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-fox23.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windictus.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xssi.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zumub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0x41.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1android.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4hmediaproductions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allrad-buck.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amyria.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appspace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arslankaynakmetal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asmeets.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auto1.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autolawetawroclaw.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bagwrap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barneveldcentrum.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basics.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bazinga-events.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beherit.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackmagicshaman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blogit.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buck-hydro.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citywidealarms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codeandsupply.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coincircle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colcomm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creativ-impuls-dekorateurin-muenchen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crismatthews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cumtd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d4fx.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danads.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dead-letter.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "depositart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dictionarypro.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dpsg-hohenlinden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eblog.ink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "educacionvirtual.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ekouniejow.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esteladigital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estudiaryaprenderingles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "excess-baggage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farleybrass.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feross.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filehash.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fili.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firefense.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fletcherdigital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groundmc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gurunpa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hugonote.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icdp.org.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iinf.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilmainensanakirja.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "institutomaritimocolombiano.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j0e.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jerrysretailstores.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jix.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joyfulhealthyeats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klop.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "komp247.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leafland.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "left-baggage.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lippu1.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ltlec.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m2tm.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malibumodas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markhoodwrites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matematyka.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matteobrenci.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michilaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mindmax.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mmgal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motogb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mralonas.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrdatenschutz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mte.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nailsart.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "napkins-wholesale.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "napkins-wholesale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "napkins-wholesale.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "napkins-wholesale.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "napkins-wholesale.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nasosvdom.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nauris.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "new-vip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newfoundland-labradorflora.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noxx.global", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obec-krakovany.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ordbokpro.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "postandfly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powersergdatasystems.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powersergdynamic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proximoconcurso.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptasiepodroze.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redmangallpsychologists.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richbutler.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riddler.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searchpartners.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securevideo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seemomclick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selber-coden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendingbee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servetten-groothandel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servietten-grosshandel.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servietten-grosshandel.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servietten-grosshandel.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servietten-grosshandel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serviettes-et-plus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servilletas-de-papel.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servilletas-de-papel.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serwetki-papierowe.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shavit.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simulping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skorpil.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimentoamianto.campania.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snwsjz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonaraamat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spanch.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studio-n.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superenduro.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techlr.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telsu.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testeri.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thea-team.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thealonas.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topyachts.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tovaglioli-di-carta.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tracker.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transferbags.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "troxal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tusmedicamentos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ukrn.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unkn0wncat.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vista-research-group.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "witch-spells.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldsy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--12c3bpr6bsv7c.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--3st814ec8r.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--3stv82k.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--3stv82k.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--bersetzung-8db.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--durhre-yxa.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yachtlettering.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "42l.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acinq.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adventurecreators.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airport-charlotte.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrewtasso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apviz.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archivium.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ardadanal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arnaudlanna.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asylbarn.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aulica-conseil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avelinodiaz.gal", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bereginy.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bettercareclinic.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bhserralheria.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biomathalliance.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boutoncoupdepoing.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "budolangnau.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caffeinefiend.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camshowdir.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camshowhub.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camshowstorage.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camshowverse.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cinicloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloneuniverse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberdean.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dermopigmentista.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diethood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doc.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doeren.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domop.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donation.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "draadloos-besturen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duesterhus.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edv-ringhofer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etnoria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstnetworksouth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funkfernbedienung-industrie.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funknotaus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galvingao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gitecolombedesbois.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "githubapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hansgoes.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heretic-guild.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoxo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iinix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "industrial-remote-control.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infravoce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intellihr.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaamaa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jogjacar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khg-orchester.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kindesfreude.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kt3i.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laceysfarm.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "les-explos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littlebirds.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loca-voiture.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locald.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucid-reality.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luda.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minapin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirrordream.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moego.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moki.org.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mpu-ibbi.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mussalains.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mycamshowhub.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mystagic.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nishimebistro.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opinio.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parnizaziteksasko.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pc-warriors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pc28yc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phils1990.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praxistipp24.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premiermaldives.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quaxio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiocommande-industrielle.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ranasinha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reactivemarkets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reformation.financial", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remeb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s92.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safetyrange.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saksonski-szlak-parowozow.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandrabernardo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scalpel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoenstatt-fathers.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiqi.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiqi1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sloanrealtygroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speeder.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speeders.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steam-route-saxony.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoneproperty.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stopoverconnections.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stopthinkconnect.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suncity288.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suncity818.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sweetbabyjesus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "symposium.beer", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "termee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theshots.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thetassos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tipocloud.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twmartin.codes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unti.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unusedrooms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vairuok.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "view-page-source.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vincent-haupert.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitlproducts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vnctdj.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vsoy.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webgeneric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webstaff.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webtoro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weknowhowtodoit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatsapp.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wyatttauber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xgadget.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yogaemmental.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourpersonalfrance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ypfr.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zstgmnachod.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intercom.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "100k.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "502312.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accreditamento.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alabordage.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfredapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amleather.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aoe9.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aptumseguros.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcobalabs.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bagnichimici.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barcelonapremium.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barcelonapremiummini.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bgbaby.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bomboniere.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bpreguica.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cambuslangharriers.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlocksmithcarrollton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carplus.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centrepointorguk-dev.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkmyhttps.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "civey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloud10.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coker.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "controllertech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberdiscoverycommunity.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davethom.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doughseeker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamboxpro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drewzar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsmnet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eenvren.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eenvxing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehcommerce.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enbulleiugnen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energygenie.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "engrish.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enxadahost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erik-stomp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "est-it.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everlastingoak.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "factorit.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashiontrendsetter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foodlist.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freebsdbrasil.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaddini.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happychat.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harrisconsulting.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homecompost.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huoqibaike.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iamlife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibcl.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibericarbenet.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imaginationpathway.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impossible.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impossiblehq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inscribe.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetnz.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intranet.dvag", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inyourowntime.zone", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iondrey.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "istitutoricci.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpph.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevertje.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khorne.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kidsdaysout.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "la-laitonnerie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawlessenglish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawlessfrench.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawlessspanish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lecannabiste.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lmsuitespagna.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loliblogs.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loliblogs.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loliblogs.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loliblogs.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luv.asn.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mahler.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailman.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mascotarios.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediafart.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mivzakim.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mivzakim.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mivzakim.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mivzakim.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mivzakim.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moesif.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motmplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mujemail.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mystia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextiva.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noteboat.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olgcc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openresearch.amsterdam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "our-box.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paleo.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paleorecipepro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privateservice.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostoporno.video", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptrt.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pulseroot.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rsarchive.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s92.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "said.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samalderson.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "septs.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharks.football", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shoppingandreviews.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sia.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "signaconsultoria.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skux.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slobrowink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soumya.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speeders.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spikar.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srpx.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startablog.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startmail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stavnager.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studiodentisticomasi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebiglaskowski.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefamilygarrison.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thenine.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timetastic.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tulsaworkshop.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tupass.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyroremotes.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultimatepaleoguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vernis-marins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinciladislessia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visualgnome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volubilisplus.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wageverify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websize.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yachting-home.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yiff.forsale", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourantiquarian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "087010.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2melo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adc64.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "administratiekantoorblom.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adrianobarbosa.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albilaga.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allseasonswaterproofing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artozoul.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asilo.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "augenlaser-chemnitz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autobella-hurtownia.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barsgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campsoulfestival.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdkeyprices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chordify.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citizensgbr.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cockedey.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corl3ss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cycledownunder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cynicaloptimist.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daniel-milnes.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "degit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dieradvies.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drake.partners", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emilypennock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escaperoomdoctor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escaperoomsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esd.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etduvindemoselle.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eventsframe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f1nal-lap.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "factory-f.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feministwiki.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferriswheelofficial.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleet-group.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleet-search.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gladysstrickland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gregory-thibault.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guidesacademe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gwynfryncottages.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helensmithpr.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helsenorge.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herzwacht.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hokusya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "how-old.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hulaginswoodworking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibericarformula.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibericarmotors.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innovamag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interparcel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iszy.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-inside.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kapsalonlinds.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiot.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kita-sun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klempin.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "korbel-loziska.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kunsthandel-augustus-rex.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lcx.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lescrapdesfilles.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liangxingai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "londonpropertymatch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loremipsum.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luchthavenmaastricht.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lxai.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maiti.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuscripteditorial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "margaux-perrin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matex-tokyo.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matipl.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mczo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michalklabnik.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midamericapiering.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikeklidjian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monetki.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mopliangxing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mugen.technology", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nateandxtina.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "next-idea.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noleggioimbarcazioni.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "norfolkgardencare.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ohentpay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onemeter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "op3racional.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opcionpublicitaria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orcawiki.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osuszanie-krakow.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osuszanie-radom.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osuszanie-warszawa.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ovisy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pageboard.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcunderground.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pensiunea-paco.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pestcontrol.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phoenixnest.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photosafaribg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "physik.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pintiaux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "przerabianiezdjec.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "publisherservices.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "q1000.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rawpearls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ready4bf.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rgz.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rickmakes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rides-japan.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rochesterglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rossfrance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s-yuz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sannefoltz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarny.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saunafahrten.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seo-website.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sessile-oak.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sheepproductions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shellta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simulise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "star-darom.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stockholmpride.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "streathamfoodfestival.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t-pc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxi-legroux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techcenturion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theaccountingcompanyleeds.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tim-demisch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totalpackers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trit.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trosell.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uleenucks.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "um-sachsen-pictures.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usamdt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uvx.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veply.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ville-aime.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wangqr.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wardslager.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodwormtreatment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workathomenoscams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeadaniel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhimingwang.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "518.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "69games.xxx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "6dec.gc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "984.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "999salon.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ab288.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alighierirescaldina.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anarchistos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arthuryidi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artistedeparis.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artiwear.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashtonc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autorepairseattle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beeswarmrehoming.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bernar.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bierwebshop.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnck.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borysenko.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cadmanlaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centermk.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cfc-swc.gc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charset.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coinsmat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coldlasers.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cramersoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dansedesalonsaintave.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dec6.gc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devtoys.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dimagrimentoincorso.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecomia.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eightysoft.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elevationcreative.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facesdr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fboerman.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdpbrig.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feat.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "femmes-women.gc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "femmes.gc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financialfreedomaus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitnessunder50.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleetyards.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fosgreece.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getintopc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "headforcloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hell.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hicts.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hinaryazan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hysolate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibericarmotorsmalaga.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibericarmovilcentro.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibericarmovilsur.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibericarreicomsa.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibericartechnik.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idbs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infraredradiant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insegne.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "instagib.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iondrey.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iondrey.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iondrey.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iondrey.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iwd.gc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izolpoznan.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jif.gc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "json.download", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juergmeier.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karrot.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keevault.pm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keywalker.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kfz-service-wachtmann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kjmedia.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kolibrisolutions.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kometia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lartduportrait.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laurencball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libravatar.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libre-innovation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifeslonglist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liturgical.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "live8899.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "live8899.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madpsy.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maikoloc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mele.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mhf.gc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "momove.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moseracctg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mycaelis.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myconf.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mytime.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netzklad.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newflora.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noradevot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuipogoda.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinesystem.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opinionitech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osez-l-odyssee.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfssales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pictoriastudios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poetry.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pogotowiekomputeroweolsztyn.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pommetelecom.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porcore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pteceng.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purplscientific.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantifiedcommerce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rap4ever.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ratelimited.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ravencoin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ravencoin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdcdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richlj.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoenstatt-fathers.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottspainting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searchmore.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searx.run", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexedrescue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sheaspire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sketch.jpn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skorovsud.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sliptrickrecords.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solomonsklash.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soulcasa.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starryvoid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steamosaic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stefanfriedli.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stucki-bagger.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sun668.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sun668.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suncity288.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suncity8118.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suncity818.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suncity858.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swc-cfc.gc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teetoptens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "textpattern.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thechargertimes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theobora.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theologyz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsueri.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uberi.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universe.horse", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unpaismejor.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uranius.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vbsoft.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verasani.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivemedialab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webhotelsoversigt.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wellspringsga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whm.gc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "women-femmes.gc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "women.gc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--underux-0za.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yuvaindia.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0xff.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adoll.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afinterio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amanet.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anaisfae.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrewlarson.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anyad.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appspaceusercontent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autismewoerden.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bespokebathrooms.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bezahlbare-praemien.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bim.physio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bol.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsgcredit.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "butts-are.cool", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cadmanlaw.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carbon.coop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carolineeball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casian.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cceputnam360.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chriscutts.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "con-con.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conversiepartners.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creamsoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crys.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diagnoseo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "die-machons.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drbresnick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drdegenhart.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drdenisvincenzi.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "embodiaacademy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "embodiaapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euro-construction.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabianegli.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastserv.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fikriwildannugraha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleursdujour.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furry.cool", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giardiniere.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grabadolasermonterrey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gunz.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hatcher.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hybrydowe-samochody.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypnovir.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icanhazpass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ihorizon.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infodesigners.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inlinea.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interssl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inzernettechnologies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "istitutovivaldi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izttech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacksball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johnball.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johndball.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaidoblogi.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaizencraft.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kakacon.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kep-sbt.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kepsbt.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krsaustralia.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kulinaristi.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laurineprice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "link9.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lvcshu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "machon.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdtorelli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikegao.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miramar.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monarcjuexpo.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mosboutique.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrjbanksy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muzykanawesele.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myconan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "net-combo-ja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nichi.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noclegiwchecinach.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "norml.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notariusz-bialystok.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oahpmdata.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openconf.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacchioni.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pastebin.run", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peterkrivanek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pierreyvesdick.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plaque-immatriculation-auto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "q01.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ql.tc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qqiao.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rebelko.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redgravity.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rizonrice.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruffinstorage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runningrabb.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryanparman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "satserwis.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seewang.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seidel-immobilienberatung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serverhunter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sherpa.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sincordones.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siselectrom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stagend.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sustainabilitysociety.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theafleo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trindonball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsriggingequipment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turnout.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twwd.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ugy.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vesaviljanen.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vifsoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wifimb.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wyczaruj.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--anyd-7na.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "101010.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "43klive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4gnews.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aarailfan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adswoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aktion-vielfalt.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrewbennett.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ars-online.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auto-res.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoelettricaperbambini.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barneydavey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bi1gif.radio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biosalts.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bourgeoisdoorco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brownforces.desi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brownforces.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caniuse.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianoliff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computec.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cvazquez.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daniele.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnsrate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsh.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ert.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essencespresso.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f8s.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "falegname.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flyinghigh.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ga-part.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galaxus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generationr.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gfourmis.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glassemployees.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guysauto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiczp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "highkick.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houseandgarden.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itpanda.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jolinebrussel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kohlchan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kryptux.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leapworks.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "litebitcdn.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lrumeq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markshroyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthew-cash.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modcover.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moddiy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modscrew.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydnshost.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nephology.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newyorkcoffeejobs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "np39.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oepsbanaan.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olmcjc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olschurch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "papermuseum.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passengertravelportal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pharmacy.org.pk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photoutils.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pricegg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projectbotticelli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prosperops.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rocketmill.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runner.az", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seberova.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securecloudplatform.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiqishidai.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soungui.cm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soungui.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soungui.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stayokay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studenterguiden.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suhaildawood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tronlaserarena.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutorialseo.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umasstransit.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vanspa.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vikramkulkarni.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whitevpn.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wintercorn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woopie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wphlive.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wywabmnie.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youreallyneedthis.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaizaia.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zdenekvecera.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aattrans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adaptiveicons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airtec-france.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alle-zonvakanties.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altrui.st", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "americanwater.lk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "an7hrax.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anitaxcph.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anjocerdena.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antifilter.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arnove.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atmind.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autorijschooljohanbos.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "available.direct", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blobemoji.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blobs.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bufla.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bvbmedia.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bwanglab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c00ke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlosjeurissen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craft-me-in.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cwinfo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detao.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "determapp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dhelixnet.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmoj.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edapt.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurocertificazione.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euroman.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eventosbgp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evyn.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "excel-mechanical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashion.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feldbogenclub-hamburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "founderio.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuzenet.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamejobs.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekbundle.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "germanmasterpainters.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "googleshortcuts.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gummientchen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herealways.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hildebrand.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ikymbo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infinipharm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jakubsindelar.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeffpenchoff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeurissen.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jolo.software", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonssheds.direct", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juozasveza.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaizenjuku.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katsunet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kizzedbykelz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kollegamenti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lissauer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logical-invest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marinershousecalstock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matchmadeinstubton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mgdigitalmarketing.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirazperu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakluky.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nalenders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namu.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netz0.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opture.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oswaldlabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otprema.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacch.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pepegym.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "periodex.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playsprout.industries", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pollev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "postsubmeta.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prtscloud.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pseek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pushpanel.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pyroballpcbs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rannamoisaaiasalong.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richcat.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruralsoba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s-gong.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savanna.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serrature.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shuomingshu88.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sjorsvanweert.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stadtundbaum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sudya-dredd.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "synackrst.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talendipank.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tarkov-database.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "team-io.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thaicurry.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ticketcity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timelimit.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topmmogames.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totalsport-bg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyroremotes.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ukutabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vorbrodt.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrifox.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vygeja.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wearepapermill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wir-machen-druck.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodminstermanagement.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xilo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yuweiji.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zerosector.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zselicivt.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "233.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3b.pm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abuse.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "al3abmizo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allerstorfer.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankaraevdenevenakliyat.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aqarategypt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashleykaryl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autonoleggio.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awsumchan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellezzasenzalimiti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestfotostudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billograminternal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bimibroccoli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biniou.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bourseauxservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brisignshop.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bwgjms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bzh.tf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caseificio.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cegss.org.gt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certbus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheatsupreme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claitec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clickbasin.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colourmanagementpro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crocuscoaching.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cumseface.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielguttfreundphd.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dansaunders.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "designhuddle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dlld.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drhildebrand.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dzworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eclectiv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ejelectrical-qld.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ejkhosting.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emilybellydance.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eringmaguire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estintori.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evdenevenakliyatankara.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ewinstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "favalart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "favorai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frankellawfirm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giardiniblog.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "give.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalhealthstrategiesnetwork.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greatwebdesign.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greensad36.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hannywbarek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthyspirituality.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthysuperhuman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helpwithadoption.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hq77.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intoparking.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iparkki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itconsulting-wolfinger.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j0hndball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johndball.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johndball.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johndball.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kabellegger.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingtreeexperts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuaiyaojing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lalucepulsata.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lhr.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liubliu.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lm-landscapes.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locoserver.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lolaseuropeancafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lotuswebsolutions.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthewsaeger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metadata.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mierloiu.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "militaryonesource.mil", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirazonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nimbo.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordfinck.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ourocg.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "par-allel.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkerplumbingcompany.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcw.gov.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photobooth.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pieter-verweij.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pincong.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pivovarcunak.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planitz.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playnow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "postimages.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quieroserdoula.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quranliveonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ramsdensforcash.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ramsdensplc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reeftrip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revistabifrontal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shadowvolt.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siamrehab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "signpath.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simpleit.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sipa.nc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sipa.pf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sitecentre.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyscanner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyscanner.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyscanner.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyscanner.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyscanner.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyscnr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "styletron.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "summiteyekc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teboorthodontics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiergear.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tjxxzy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "treeremovalsboksburg.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uraniborg.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utensil.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valemountchamber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valemountmuseum.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vigilanciaysalud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vips.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vladsfads.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "what.tf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windowsdoors.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wit-creations.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wordops.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "x-6.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--l8js6h476m.xn--q9jyb4c", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xor.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yornik.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yukimochi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zacharyschneider.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zahrowski.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zy.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0chan.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1chan.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "204504byse.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "208garfield.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "233v2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2502.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3838onndo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdulrahman.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aculocity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alarmat.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allphaseclean.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alltherooms.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alov.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alphadefense.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alteria.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amazetimberfurniture.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amianto.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antincendio.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aokae.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apprendre-le-russe-avec-ania.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apunkt.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashridgetrees.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atahualpa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attuned.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aura7chakr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autocartruck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "az.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aznaetelivy.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beboldpr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berlin-cuisine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betor.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bevedo.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beyerm.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigboris.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billogr.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billogram.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billogram.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billogram.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billogram.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billogram.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billogram.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billogram.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billogram.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billogram.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billogram.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billogram.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billogram.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billogram.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billogram.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billogram.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billogram.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billogram.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billogramtest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billopay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bioedilizia.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackbam.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluecanvas.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boltmobile.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bostonaoii.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boxcritters.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "breakingvap.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bytepark.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cakeoffencesact.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catlovingcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ce-webdesign.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chirurgoplastico.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cinenote.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "civics.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ckna.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claudiney.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clientportal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clouddog.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudofertas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comparewatch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compartirtrenmesaave.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cornerstone.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corsicalaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "criptocert.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubiest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cuchichi.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cudoo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cuio.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cybermotives.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dcdestetica.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "death.social", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dental-cloud.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "depositomobili.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "destyntek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diabetessucks.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitaleplus.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalfoster.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dirtinmyshoes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discordbee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diygeek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolph.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamcraft.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamz-staging.zone", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duvalo.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duvalo.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecigfind.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "economie2.alsace", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edunet.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elgrecohotel.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elitsa.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energy-healings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ernal.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erpelstolz.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "error.fail", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etnis.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fatturegeko.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finalworkdriesstef.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flealab.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floravan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "formsmarts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fritz-koehne-schule.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funbuynet.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gameofbooks.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genossenwiese.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalhealthstrategiesnetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalhealthstrategiesnetwork.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalhealthstrategiesnetwork.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gloeckle-gruppe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goonfleet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greta-birkner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grinnellplanes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gvwgroup.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hamiltonweather.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herbolarigranvida.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hetushu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiffo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hisregistries.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hisregistries.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiteshchandwani.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hudobniny.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ideageek.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imisa.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "info-o-zbozi.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "informace-zbozi.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infosecchicago.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrabind.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrabond.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infraplot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intrepy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isaaccomputerscience.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isovideo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "israel-in-color.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivanovolive.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiji.co.tz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiji.com.gh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiji.ug", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jkg.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jltcsecuritygroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmdiesel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jsme.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jubilerkarat.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juliendoco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katieriker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevchia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kimitang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kimochi.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingjamesbibleonline.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kn40la.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kn4ivj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kn4ola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koenberkhout.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laportedufutur.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lauralinde.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ldm2468.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lilliputpreschool.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linge-ma.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logitrack.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logo-vogtland.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lohmeyer.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loonylatke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lou.ist", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucie-parizkova.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luisa-birkner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lynnellneri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m-net.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macedonian-hotels.com.mk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macedonian-hotels.mk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madewithopendata.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marc-hoffrichter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattersource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mazi.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mchost.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minandolacorrupcion.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mio-ip.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobizma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motor1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muma.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muserver.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myjuvelirika.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mytntware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naka.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naradiebosch.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naradiemakita.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natevolker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ndvr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerv.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netid.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextcloud.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextcloud.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niers.land", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "norrlandsbilverkstad.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noticiasdetv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nsnsp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "numo.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "objectorientedsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oceanbreezehomes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oe0fcdncxjpdd05b.myfritz.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "offensity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okwu.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "on2it.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onsinscrit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orcada.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outfunnel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "owntournament.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palomardisplays.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peoplescu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phildonaldson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pif.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pitshift.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixelcomunicacion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potionlabs.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pressento.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "primaflorafloristaccrington.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prizehometickets.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prizelink.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proteco.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pudro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pulizia.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qarto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quenecesitopara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quickassortments.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quicksupplies.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r102.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raketaro.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reall.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remmik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhyme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riddimsworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rident-estetic.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rolandvanipenburg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roman.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubenruiz.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safearth.training", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safewaysecurityscreens.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salentocab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salmanravoof.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarasotadentistry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sardinianvillas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saropa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sbcargo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schuetzen-ehrenbreitstein.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebastian-haeutle.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "semplicementelight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seomaton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seomaton.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serveursminecraft.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiji.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopunilever.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shunliandongli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siggi.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sik-it.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplosoft.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvoy.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sitedebelezaemoda.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sito-online.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skiley.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimentorifiuti.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimentorifiuti.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snowparties.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solihullpcrepairs.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sospeed.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundclick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soyvigilante.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spurghi.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spydar007.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stehlik.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strange.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangelandrecording.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangelandrecordingstudios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangelandsoundstage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangelanerecords.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangemusicbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangemusichollywood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangevip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangeworksinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangeworldmerch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangeworldmerchandising.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strotmann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studipad.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "summit-level.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "survivingmesothelioma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svatbamisiaviti.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swy.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tableandhearth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcpride.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamliquid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techcu.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecknobox.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tehniss.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thejoneshub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "themathscentre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theshaker.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thesoundstageatstrangeland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tntware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobevictorious.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobiaswiese.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tosatopsicologabologna.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tozdev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transparent.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trattamentocotto.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travel2macedonia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travel2macedonia.com.mk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travel2macedonia.mk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelbuddiesperu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triefenbach.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triefenbach.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tv-sports.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvquot.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubiurbe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ugtdigiteldocumentos.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umlcode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniqsys.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unlocks.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urlsimple.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uteasybooki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vapeking.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varizh.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vave.men", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vegan-pratique.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vglist.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vigira.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visiondetails.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vonimus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webini.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whorepresentsme.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windowseatwanderer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wobker.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wois.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wops.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workplace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wound-doc.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wysz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--t8jo9k1b.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoyoost.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zbib.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenidees.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhaostephen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zookids.uy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zravyobrazky.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "123birthdaygreetings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaa-racing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaa-racing.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "achtzehn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adiprospero.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agpideas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akuston.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alacriti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "am22i6xaf1m2a5m9k.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anns.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baron14.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bfh.science", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bibliotecadeseguranca.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bustany.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bwgjms.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bwgjms.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cadra.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlitoxxpro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carolinehanania.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "changemywifipassword.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chliine.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "counterenlol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crazypowered.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctoin.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "czwartybrat.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diamondgrid.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directhomeremodelinginc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djbobbytables.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragcave.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ej.uz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entertainmentformitzvahs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ericksonvasquez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esher.ac.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashion-hunters.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "franziskaherbert.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frappant.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fukushima-fun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galaxymusicpromo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekstreet.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gellis12.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happychungus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harms.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hauller.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herrfirm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hmnd.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-voting.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impresa-di-pulizie.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrafile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrafind.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "input.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivocopro.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmsjms.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmsjms.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juristique.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koenrh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koenrh.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamaletarural.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasabubillas.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasranas.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leftbrainsolutions.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livada.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liztattoo.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lunite.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malenaamatomd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mentecuriosa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meridianoshop.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mopedpress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mubase.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-webcloud.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mystaffonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nazimogluinsaat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noxx.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olitham.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p-p.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pechonova.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plumbingkingsllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "post.monster", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "predkosci.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rbs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rcmstream.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retidurc.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romainlapoux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romainlapoux.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandstroh.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanikapandit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanook69.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seanstaffiery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seutens.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seutens.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silesianus.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sloneczni.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smokeping.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starlux.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunsquare.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supervets.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tambo.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tissus-paris.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "undp.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upstart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uronlinestreams.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80ahclcaoccacrhfebi0dcn5c1jh.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xpertcube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zen-solutions.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znaj.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1ki174.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "233hub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abstudio.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agentur-pottkinder.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airslate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alplogopedia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amplead.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annalitvinova.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aramloebmd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "art-et-tonneaux.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artigianociao.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auto-i-dat.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autouncle.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azh-kunden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baterioverolety.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bavarovillage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belgicaservices.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bikhof.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campingshop.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canavillage.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candinya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celebrasianconference.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chadpugsley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrisgieger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudeezy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubegolfpt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coaching-harmonique.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colyakoomusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consciente.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consciente.ngo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consciente.ong", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consegne.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "construct.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptizy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datax-cloud.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dawnofhope.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dein-baumdienst.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digicode.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmfj.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drglassgyn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drhyler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecuadorbienesraices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electerious.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emzi0767.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entrezdansladanse.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epagos.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epiclub.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etajerka.spb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facchinaggio.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fallenmoons.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familleseux.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flamingowomenspavilion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "g-fruit.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabinetejuridicotecnologicojuandemeseguer.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galaltosalento.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentcdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gladiac.duckdns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globologic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grapheneos.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guytarrant.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hag27.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hillsandsaunders.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hillsandsaunders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hpvtimmerwerken.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hyper.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iegat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insideevs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insideevs.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iotac.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isa357.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isa5417.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "italbavaro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivisitorinsurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joebiden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joodari.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "josephbarela.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kandofu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiczela.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kjfaudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koolauwomenshealthcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kreativbande.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuwichitaim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laudableapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lev103.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "localcryptopremium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovemybubbles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lwsl.ink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mamoris-net.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martin-weil.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medguide-bg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mehrnevesht.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meta4.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minmaxgame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moonboys.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mt1016.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtechprecisioninc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mulk.hopto.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myconf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newenglandworkinjury.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicolaottomano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northtexasvasectomy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nstnet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obgynmiamifl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ok3on.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oklahomafibroids.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omnifurgone.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openrtm.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p1group.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parrocchiamontevecchia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pedalsbarcelona.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinellaslaser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ploxel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potomacurology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privacybydesign.foundation", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "professionalbeautyshop.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "provinciaotlavoro.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ps2911.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qmee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raewardfresh.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rclaywilliamsdo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reparizy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rideapart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romail.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sagitta.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoolofphilosophy.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serenavillage.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serviciales.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyportcloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smelly.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sointelcom.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sort.land", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "space-inc.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stagespediatrics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sugarlandurology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "support-ticino.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swid.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swisservers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tagtoys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "televizeseznam.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texasurodoc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tk-its.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tonight.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trickle.works", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trueminecraft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ujiyasu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uplead.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uspaacc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utavatu.mk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venstar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivaio.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vwh-kunden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watervillewomenscare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webrabbit.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldmeetings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yonema.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yusukesakai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1sand0s.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9721ff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9721g.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9721ll.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9721nn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9721o.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9721q.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9721qq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9721t.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9721vv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9721x.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accessibletravelclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adnexa.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajhstamps.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armadale.wa.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "as8423.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attendanceondemand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balaskas.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blideobames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boulderlibrary.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandondivorcelawyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandonlui.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandweerbarboek.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "briansemrau.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celltick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaitanyapandit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chwilrank.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "co-founder-stuttgart.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "competencyassessment.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalprimate.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discarica.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnscrypt-blacklist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domein-direct.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donateabox.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easyenrollment.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecsupplyinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egbc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elenta.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "embracecontext.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emsa-casm.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "engweld.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enrique.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "experimentator.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "explicate.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "falegnameria.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "femmesaupluriel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fenhl.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gefolge.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gratis.market", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haka.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heddoun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hennes-haan.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hennes-shop.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hersdorf-eifel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hielscher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hitflow.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hyper.lol", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iansyst.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibavaro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibi.mt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ii9721.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impresapulizie.firenze.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inputmodes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isthephone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaduniv.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jimeaton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jvdham.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kelsall39.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kendermore.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kipwells32.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kursypolska.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lansoftware.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letempsdujasmin.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luminary.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "managedservicesraleighnc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maorx.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marinat2012.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mazepa.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mixedrecipe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mjsacco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mold.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motoactionimola.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrjo.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musta.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nadine-birkner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordstromheating.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okazoo.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olmik.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opvakantie-noorwegen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opvakantie-zweden.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oro.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osom.finance", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "personalidadmagnetica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prsnlafk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pulizievap.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quedos.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radioradicchio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rebeccawendlandt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recipesmadeeasy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "render.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reverselookupphone.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhhfoamsystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riproduzionichiavi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roams.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robotsbigdata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roguerocket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rr9721.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubenbaer.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saitapovan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samkelleher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sartoria.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scanmailx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schreinerei-schweikl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scuolamazzini.livorno.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serfas.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servicios-electricos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sethriedel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shadedesign.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sicurled.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solarloon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spilnu.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steiner.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stemmayhem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t9721.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terme.viterbo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theundefeated.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truelovesakuya.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tt9721.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "up2staff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usarp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "v0ctor.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vancoevents.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vehiclematsuk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verybin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walletconnector.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webcheck.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webmediums.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiocha.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ww9721.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yubanmei.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yukict.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yy-s.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4obgyne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abmackenzie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "academica.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actualsolutions.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acutewealthadvisors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aguarani.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alamowellnessalliance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ambulari.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arthritisrheumaticdiseases.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auto-none.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avinilo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awomansplacenj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axishw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balboa.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bancosdominicanos.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barbara-fuchs-gruene-fuerth.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berend.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billogramcontent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billopay.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billopay.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blinkdrivex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blueprintrealtytn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brooklynentdoc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canopytax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capeannpediatrics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catmoz.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cezdent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chestercountypediatrics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chestercountyroboticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cliffbreak.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmetify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crea-that.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csd-slovenije.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cureatr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyphar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dadafterforty.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decorativeconcretewa.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delopt.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "die-seiler.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogforum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dominik.st", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drghomi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drpetersenobgynal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duplicazionechiavi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emiliops.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emmagarland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eneko.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "englishtofrench.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyebrowsmicroblading.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashioneditor.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feministspectrum.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitchconnect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flixflex.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freds4buildings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glyptodon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackendoz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hamburgobgyn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hghanbarimd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htb.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ift.cx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iiax.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iiax.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impresapulizia.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impresapuliziebergamo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "incarceratedwombats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "invuite.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isamay.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isterfaslur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsburning.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johngmchenrymd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kagicomb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katalogkapsli.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kpopsource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krasnodar-pravoved.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kulturmel.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuwichitagastro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lapageamelkor.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legalatlanta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lehighvalleypeds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lilyvet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "limoshka.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manicuradegel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manicuradegel.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mckendry.consulting", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0335.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0350.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0372.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0376.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0379.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0395.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0433.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0440.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0471.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0662.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0710.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0719.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0724.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0730.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0737.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0739.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0756.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0773.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0774.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0775.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0776.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0794.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0812.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0817.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0818.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0826.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0853.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0854.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0856.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0858.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0930.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec0943.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec111.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec888.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mec999.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mhtdesign.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midiaid.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minimalistbaker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miramar-obgyn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mnciitbhu.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modusawperandi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mohitchahal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moretti.camp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muhcow.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydais.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nashuaradiology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nettgiro.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickmchardy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onepersona.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osimmo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overs.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacificpuke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panino.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paninohome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peluqueriaalcobendas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peluqueriaalcobendas.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pillitteriobgyn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plaros.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ploi.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "princetonnassaupediatrics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profumeria.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puntacananetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quicksell.store", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rampestyuma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rassro.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reitoracle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rexxworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ristrutturazioneappartamenti.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryois.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safara.host", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sector.zone", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serenavilage.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sismit.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartlink.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartproductguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sommeilsante.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "southeastradiology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strm.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sttammanyurology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumitchahal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tbpchan.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegroovecartel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomjepp.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traslocatore.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsachs.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tshirtscapetown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsmgroup2.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twoef.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usa-reisetipps.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uze-mobility.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uze-mobility.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uzemobility.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uzemobility.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vgcheat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villagecenterpediatrics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "votre-hotel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vspin.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weavers.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wfschicago.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wgcaobgyn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "writtenworld.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wyomingurology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xiumu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xkwy2018.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zingpetfood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "360hosting.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaron-russell.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutpublishers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aerlux.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airship.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "algorithmic.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ambulanza.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amruta.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amstelveentje.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appspacehosted.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arctus-security.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashenm.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autofficina.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azotobacter.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bahadirh.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bb6729.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bettaline.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biancapulizie.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "black-holes.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bularmas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candidateexperiencemarketing.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caph.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carls-fallout-4-guide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cendata.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "center-elite.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chlo-products.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chlo-products.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianrasch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clica.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contentq.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corevetconnect.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coronersconnect.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crimsonconnect.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cs.money", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubeperformancecentre.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delphia.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delphia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dicelab-rhul.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dipro.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discarica.firenze.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "docdoc.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domainvoider.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dspace.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elevationtech.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emrah.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethicalconsumer.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fairr.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fantgames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fizjoterapia.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fucknazis.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fucknazis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georgewatson.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goehler-baumpflege.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gosportweather.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heino-peters.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoofdredacteuren.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrbanen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iamhealthystore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ictbaneninnederland.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igorandandre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indigoblack.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intellimax.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investigatore.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ips-consult.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivoid.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j-ph.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobalicious.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobsindemedia.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johnkraal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jttech.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kids-world.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kli.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "l6729.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landegge.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legalplace.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legalsearch.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marktguru.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marktguru.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdrsp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mishkan-israel.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "missblisshair.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mneti.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nirhub.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nophelet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nousyukum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omny.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orologeria.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pe-bank.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playelephant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pocze.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pointforwardinc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pollendine.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "programarya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projet-saara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prvnirodinna.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "publicholidays.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "residence-donatello.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richardlangham.plumbing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russelljohn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samkoandmikotoywarehouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sampaguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scde.ventures", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seaelba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serrande.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "setesat.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shibbydex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siikaflix.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sound.as", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqdll.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starvizyon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talxis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tampacific.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taunusstein.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "termoidraulica.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecr3ative.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tldtattoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomaszdwornicki.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trousers.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ux-designers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uxdesignerjobs.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veterinario.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wellgreece.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werkenbijsherpa.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wervingenselectieamsterdam.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikibuy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--kl-oja.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yappy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yorgosbos.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youneedfame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0--1.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a1post.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alaskabuylocal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aliefirfany.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almostobjective.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpha-ag.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcovix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auburnperio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autopark-ost-fichtner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awsbs.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baroloboys.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bebe2luxe.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bettersocialmedia.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biblesignposts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bishoptx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caetanobenet.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caetanoformula.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caetanoformulacadiz.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caetanoformulagalicia.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caetanomotorsmalaga.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caetanoreicomsa.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calverleyparish.church", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cesarparedespacora.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clarkelectricalservices.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clocklab.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cruicky.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyber-core.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daniela-schwarz-individuelle-lebensberatung-coaching.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datacaptive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dcyph.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deeplink-medical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delpark.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dimo-analytics.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dimo-crm.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dimo-dematerialisation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dimo-tresorerie.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dimosoftware.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disabled-world.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discountpokale.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dratini0.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dunyahalleri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eddy-vh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eebt.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elle-weine.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eqassociates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espyder.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euc.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euronic.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familyrecipe.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fewo32.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forumdimo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frign.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giardinaggio.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gmao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goodtrip.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grundschule-mittelbuch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helm-pokale.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helm-trophy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeadore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrmg.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilacrehberi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indigojewelers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infraedifice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "journeying.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knoxvilleimplants.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koffie-enzo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasabina.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesgarianes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lespoesiesdheloise.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luxstil.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mac.osaka.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnetgaming.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mexico.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "momsays.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muntproever.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ngetik.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oauth.how", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "octovpn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optiker-gilde.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partyausstatter24.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pawgearlab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pensionecani.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfect-privacy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phpmynewsletter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poundgatepark.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privateger.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostoporno.love", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quintenbraakman.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rayadventure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "refreshcartridges.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rootie.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saeder-krupp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samotorsporttyres.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serele.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shadowcp.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sicurezza24.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sissden.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soffit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunshine-cleaners.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teichroeb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thestylebouquet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobis.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triozon.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trophy-discount.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unitedbaby.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voidbot.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walkman.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walkman.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webarxsecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webdesign-note.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xingyu1993.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yanbohon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zczc.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "13-th.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2264707.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abogadoperu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "activephoto.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agworkers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aitrust.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "applegun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appraf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artyengine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asananutrition.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banglets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brettpostin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campaignlake.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celiac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrisx.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cododigital.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contabilidadebrooklin.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crebita.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csy.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dddmelbourne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diariodearaxa.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestatore.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doctorperu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domjh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donnabrothers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-emploi.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eaststudios.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eckstein.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "educaestado.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esalesclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escobarservice7000.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estadoreclamos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esthe-zukan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eve-online-com.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facchinaggio.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferprobolivia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filehippo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fisioterapista.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fpsv.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fresh4.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fundamentt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galganoboutique.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genioideal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glexia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gordyf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "henlich.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hv-huset.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hvt.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idealize.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immivest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "italiataxi.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japanese-cuisine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobit.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jumpbuttonnorth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juszczak.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jvdz.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koreanrandom.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libertas.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithsinsanantoniotx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lombri-agro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucidlink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lysbed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercedes-benz-kiev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikaeljansson.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moosmaus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nationalcashoffer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikitin.photo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noop.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ommcitalflex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orchardnh.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philiperiksson.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phonedoc.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playstationtrophies.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poke.blue", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pranita.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premiereco.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "princezna.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prodatalabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qualbe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "refjob.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sensorville.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serpic.photo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sofiaestado.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonderkomission.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stlouisnativeflute.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techdatapark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theoriginalmarkz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tintoria.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tohofc.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tqm1.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twlitek.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universidadperu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vahoshop.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visitorslist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vonkuenheim.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w3punkt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watchmetech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wb6668.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "we5688.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "we9988.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webcaptive.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xboxachievements.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--90adahrqfmec.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--e1aaavheew.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--e1aaavheewr.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--e1adlfhcdo7h.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--j1aoca.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yuzurisa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "77177.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7sdre.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aghayeva-edler.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akinix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfacharlie.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alteraro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alteraro.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antincendio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asart.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayvalikgezgini.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barca-movie.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "becquerelgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestsingingbowls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinorobots.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbr-rcb.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certificato-prevenzione-incendi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaboisseau.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrystus.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clare3dx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "commonsenseamericanpolitics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "correctlydesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmohit.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coveredinspiders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberpathogen.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbplanview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "definitions360.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "degradarium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dockstarter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dor-tak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dor-tak.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downunderporn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drgeadsdavinci.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duggtec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egold-keeper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ekimma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ellatotal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eon.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eradoom.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ero-video.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estetici.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esyoil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fff-du.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flonharmonymassage.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flowinity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortygordy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frosty.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glammybabes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gopnikman.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gordyforty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gpcp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gulcinulutuna.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hereticle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herrschaftlich-durch-dresden.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotvideosgalleries.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hudognik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibidyoupeace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immortec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inmag.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ishigurodo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ja-no-me.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janome.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jellysquid.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jenniferlucia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klumba.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kvestiks.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lodus.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovingbody.yoga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ltheinrich.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mansarda-life.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martian.community", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattadams.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediation-mv.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "merza.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "model.earth", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "murmashi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naslovi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nednex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "networkmas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nooben.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "numeritelefonici.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oncotarget.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onsudoku.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onzerelaties.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openai.community", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ordermygear.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planet.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "popitsnack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proctorauth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projectobs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ru-e-business.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russianrandom.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savebees.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sevengang.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "signmycode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "singer.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimento.salerno.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snapintegrations.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spstaticfiles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studyportal.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syogainenkin119.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texier.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomthorogood.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tourdatenarchiv.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unclebens-specials.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upmon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uze-mobility.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uzemobility.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wav.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wieloswiat.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikiversus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wot-zadrot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wotzadrot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zombie-40th.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1ticks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "233hub.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "233hub.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aeksistem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aetherlink.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alchemy.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allcarespecialty.pharmacy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anora.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archina.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atheist-faq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autospurgo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axiodl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackstrapsecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blaumedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "botnam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brianpagan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caetanoflotas.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chataberan.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinicaltrialpodcast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colombiajeans.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creationsgate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creermonsite-wp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crossroads-gmbh.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cybersecurity.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danbergen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dccwiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defensivefirearmsinstruction.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnsmate.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donaldjenkins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dorfpark-falkenburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dziaduch.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eikentafels.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eisblau.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enodais.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eve-ua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everglow.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fernland.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fundkyapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guzdek.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hannes.paris", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellosalmon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horsky.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humanit.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inprotec.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intellimatica.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetstiftelsen.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ip6.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iperconnessi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j-l.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jean-luc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jezeravillage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joustsec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jugwallonie.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justmysocks.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jwr.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k-sails.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kawaiicon.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konfekcjonowanie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labworks.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lilomatrixcorner.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linux.pizza", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m23cal.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maiscelular.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mamasorganizedchaos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manelli.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miyatakaikei.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mohot.fit", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monitorbox.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "montrealcatadoptions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "movilcelular.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mr-bills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myhealthyday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicht-blau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nostalgische-attracties.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odysea.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orbitcleaning.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overframe.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pagecdn.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paintersgc.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pandit.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pangoly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peniarth.cymru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phone888.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phonemore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plusmobile.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pointclickcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "posbich.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potature.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russia.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sampatjewelers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schermkapot.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searchforbeer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selfiehome.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sewing-world.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shelvacu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sice-si.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sikademy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "southernlights.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srb.help", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuartbell.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sys-tm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talis-bs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teleport.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinyppt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tolmaidis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomkempers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topreit.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tytod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veganrecipereviews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venditorepoa.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venetkaarsenovart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vigorspa.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voshod.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wearetuzag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wwwindows.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wzxaini9.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yapeal.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0-24.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0-24.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adeon.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahj.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amigucrochet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animehf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asyikbelanja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axa.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b-tree.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbcomcdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bfas237blog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blijfbij.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blijfbij.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluestarroofing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boresmail.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buttgun-tattoo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "butz.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cannabislegality.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carontetouristisoleminori.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cliqz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comparemymobile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cumnock.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datatruckers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolcesalatoweb.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dphipartner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drivetonortheast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtbw.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtbw.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtbw.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtmbx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtmbx.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtmbx.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtmbx.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtmbx.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edwardsgrounds.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elitebasementsohio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ender.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etaxigraz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eternalparking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eternalparking.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eternalparking.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eternalparking.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f00f.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fieggen.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fieggen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financecontrol.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fsavc.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gb-repair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gipelpsb.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gisauto.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "golden-kamuy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gourgouli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackintosh.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hopeofmyheart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howtutu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howtutu.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howtutu.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howtutu.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howtutu.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howtutu.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howtutu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hwsw.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ig.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iitowns.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iloveherb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infobot.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infobot.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innovomuebles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itisyourmoney.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobs.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpm-inc.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kadro.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kanootours.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kcire.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kennethandersen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landassessmentservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "law-iku.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesgitesdefranca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "little-brother.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucasdamasceno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lyax.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "machine.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masterton.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meow.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meralda.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meralda.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meralda.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meraldamulder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meraldamulder.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meraldamulder.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meraldamulder.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikecameronyyc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mladamoda.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mondzorgaanzee.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "murmashi.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturalbijou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netdiode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netdiode.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netdiode.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netdiode.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "networkdiode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "networkdiode.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "networkdiode.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "networkdiode.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsdiff.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsdiff.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsdiffs.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ngmx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ngmx.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ngmx.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickserv.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickserve.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickserve.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickserve.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickserve.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niyen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niyen.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niyen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niyen.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ocnjapartment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orged.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ostechnix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otoma.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patrikzk.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcprkolo.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phive.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plasticstare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poznajrynek.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prestigesoundandlight.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quentinaurat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quichante.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raketenwolke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rbt.sx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rednumberone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reroboto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reroboto.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reroboto.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reroboto.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resumeshoppe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retro-game.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roalogic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royalkitchensandfurniture.co.ug", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rrbt.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rrbt.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rsec.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safetynetwork.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sagenesykkel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sellmymobile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sender.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplycateringequipment.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sindarina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sindarina.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sindarina.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slow.social", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slowsocial.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slowsocial.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slowsocial.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slowsocial.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sony-psvita.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sparkar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srsfwd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srsfwd.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srsfwd.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srsfwd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stb-timmler.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stealthmodel.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steelpoint.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stmosesbookstore.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "streamspouredout.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumatphoto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swhw.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telford.codes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testmx.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testmx.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testmx.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "textonly.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theapplewiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thedinnerdetective.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thepillclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therworth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therworth.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therworth.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therworth.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thirtysixseventy.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topcarehvac.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "troyhuntstress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trufflepig-forensics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unityvox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upbeatrobot.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upbeatrobot.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upbeatrobot.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urcentral.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "velvetia.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vmconnected.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w-architectes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webcaptive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whta.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirekeep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wit.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workplace.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80aihgal0apt.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--ikketenkpdet-1cb.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yumiandryan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zerocash.msk.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "100up.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "100up.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "432web.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agefriendlyri.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alwayswanderlust.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amerion.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrewjphotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aptekakolska.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artera.spb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artifact.spb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autocadperfmon.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviasalon.spb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bazqux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blumando.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boughariosbros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brickadia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calendriergn.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "childrensfurniture.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claimflights.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleary.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloud-screen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comedimagrire.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corsisicurezza.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danelska.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danelski.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "distributore.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doesinfotech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsreal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easynm.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elranchofeliz.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fb.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firerain.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firmajulegaver.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gay-personal-ads.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getacrane.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "growth-rocket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hbweb.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hokenselect.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hp-67.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htb.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htbplc.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iflyi.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ikisser.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilovestickers.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innvisiondesign.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipschool.spb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itdutchie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeps.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jigsawplanet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kartikmohta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiousis.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirkwood-smith.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kisser.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kreyolgym.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuscheln.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larpkalender.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littles.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macangus-wainwright.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marisasitaliankitchen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxmuen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcwrapper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mhcdesignstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "microjovem.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midwayrecovery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikerichards.gallery", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikerichards.photos", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikerichards.pictures", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikerichardsphotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monsitemoncommerce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrnathanpowell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newworldnewlife.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nhv-vintagelemans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notariuszprzybylowicz.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notariuszsych.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novogradnje.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nvfoundation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulmarc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pedago.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pediatersucha.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perini.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philanima.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pr-news.spb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvpheroes.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qttransformation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantumcrypto.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rbh.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rca2015.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ressupply.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rupostel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saletzki.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "satario.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sedlex.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sembyotic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softwing.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "southside-digital.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steph.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stinkefingereinhorn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "styledbysally.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superpi.noip.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syquel-systems.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tritiumdisposal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tus-kikishinkyo.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuzaginside.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuzagtcs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tytocare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unicorndesign.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unknown-player.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urbanindustriecoiffure-auray.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uvpress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volvoconnect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wallisch.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wearefrantic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weightlossoutcome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wormhol.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zi5.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glassrom.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1941-45.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1blazing.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2blazing.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "428northampton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "52dashboard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acacia-gardens.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ad4msan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anhqv.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashtonbromleyceramics.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "athomedeco.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "battleguard.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biogiardinaggio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bizlatinhub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bryanfalchuk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartes-voyance.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cashbot.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathy.lgbt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cuentamecomopaso.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drcp.tokyo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drthalhammer.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dumb-laws.net.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eichinger-stelzl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electrolivefest.spb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elementarewatson.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ep-cortex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "es-tools.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "es-tools.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escortaccess.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essayshark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facedack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fgsv-kongress.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fimfiction.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forcelink.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forthvalleykeswick.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fps73.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freefilesync.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaestehaus-leipzig.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greentea.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "havedicewillsave.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hebbet.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hgmaranatha.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiveopolis.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeable.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hosteleriauno.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idlewildflowers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inoio.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ishimen.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackingsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "javiscoffee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiji.co.ke", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jijistatic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jppcadvertising.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juweliervanwillegen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karodos.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kathy.lgbt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinderopvangthuis.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kreditkoll.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kubabrussel.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lacuerba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lolcloud.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magebrawl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markstevenkirk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mb-demo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megaron.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meliowebweer.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milieuland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mojleksikon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naide.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanaimoneighbourhoods.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natur-care.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "new-jersey-online-casinos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "officina.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passau-webdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peers.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "personalnames.net.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philomathiclife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plagiarismcheck.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prosony.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "providential.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raqoo.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rottamazioni.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roughtime.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sard.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scale.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schat.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scislowcy.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scom.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shtaiman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shtaiman.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shtaiman.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shteiman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sprachenlernen24.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssmpuc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starbaese.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "szs.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecontentcloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecraftingstrider.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thutucxuatnhapkhau.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomstew.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trainingswiese.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelexbiz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelexinternational.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trigraph.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "troiaconsultoria.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutu.green", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "v139.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivaldi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vvs.spb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w-surgeryhospital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webmail.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "willi-roth-holzbau.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "williejackson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workthings.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn---35-6cdk1dnenygj.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--cisowcy-pjb5t.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--eebao6b.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourkrabivilla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaffke.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zakonu.net.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhuktrans.msk.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zigarn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zinniazorgverlening.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "03region.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "100pudov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "100visits.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1190america.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "123seo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "16-qw.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "16region.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1baks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1cprosto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1hfree.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1malaysian.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2012review.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2013review.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2015review.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2018fifaworldcup.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "25may.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "38irkutsk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "39news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3danimation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3djava.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4best.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4dillusion.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "500wordessay.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "59rus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5ilg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "6396ddd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "90920.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aadv.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abanilla.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abcode.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdullahzubayerofficial.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdurrahmangazidis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdurrehman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abhishekkabdijain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abitech.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "about-bangladesh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutshakil.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abrahametalero.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abth.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "academy-awards.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accordable.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "achinsk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acrobatic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acyclovir-cream.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "addnewsite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "addyourlink.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adrian-riemer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adriatrans.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adrino.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adsviews.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adventry.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advokat-malinovskii.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advokaty-yuristy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afganistan.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afghan.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aflebedevo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "africalebanon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agarioforum.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agenux.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agiosthomas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agroplas.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agul.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aido.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airwolf.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajman-realty.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akhabar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alantica.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alargarlavida.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alatkesehatan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albalatedelarzobispo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albaniaonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alcamilo.cloudns.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aleftinka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alevi-forum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alevi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexsandrasverden.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfonsostriano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alisondavenport.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aliziolaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alko-stop.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alkor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allaboutreligions.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allenwillis.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allfaucet.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allo-luxembourg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allopurinol300mg.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allright.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allwiki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpha-centauri.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alsops.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altergalaxy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altisnet.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amberoad.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ambrosio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amitriptyline-hydrochloride.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amphost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anachronis.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anagramma.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrewmcfarlane.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anekdot-pr.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angepsychedelices.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animalz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anime-drift.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animedon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anonaddy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anonser.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anothermusic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antalyaescortyaren.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antarctida.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antarktida.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anti-nsa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antihistory.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antijob.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antonoff.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apart-hotel-weimar.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aperturelabs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apkpokemongo.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appworld.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquabyte.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquadecor.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arabia-news.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aral.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arandinacf.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcanetides.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archbishop.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "argumentative-essay.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arielpereira.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aripiprazolee.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arithmetic.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armcar.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armeniaweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armtopnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "art-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arti-islam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artificialplants.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asiasmi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assemblage.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assignacii.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atfstudios.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attractieparken.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "augesen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autorama.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoschool.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autovesti.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviconverter.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avto-signal.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avtoucheba.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azerinews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azora.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b-honey.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baby-massage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babybuddah.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backgroundscreenersofamerica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bactrim-antibiotic.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bactrim.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balaganlimited.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balakovo-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ballast.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baloncestolliria.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barao.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barganhanaweb.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basketball-malavan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beachpoint.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beatuprobot.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beautyspot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beaver-creek.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beebeads.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellecarmen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belquant.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bembee.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benatherton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benazir-reaction.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benetcasablancas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-book.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestboot.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestechgadgets.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "besthemes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestkeys.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestofbooks.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "besttrade.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestwebcams.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beverly.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beylkin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biaxin.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigdiscounts.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biletvkrym.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billcompare.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billcomparison.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binf.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biodobavki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biosearch.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bisix.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitmag.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biz-secrety.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biz-secrety.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biz-seecrets.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biznes-sekrety.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biznes-sekrety.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biznet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackoutzone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blacktubes.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blogaram.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blogcosmeticsurgeon.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloodpop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluesnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boffin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bogwitch.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bolsa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonaemi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bookslibrarybooks.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boredhousewifeconfessions.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bornreality.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bosattondskap.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boykovo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bozhok.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brainobeat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brainshare.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brasiltopnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bratunaconline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bravica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "breakcraft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brest-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brestnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brezani.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brianvalente.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brianwilson.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridalweddingshow.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britania.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brosay-legko.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bruce-springsteen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brusselsexpoloft.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brusselsexpostudio.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bryanarmijomd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "budgetboats.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bulgariablog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bulgariya.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bulvar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buquesdeguerra.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buselefante.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bushland.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "business-secreti.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "business-secreti.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "butterhost.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-an-essay.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-essay-online.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-lasix-without-a-doctor-s-prescription.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-zofran.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buycitalopram.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buydiflucan.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buydiflucan.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buylasix.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buylevaquin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyrogaine.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cabecera-descendimiento.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cabelgrano.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cabezadelcaballo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cafenix.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calaverasmedicalcannabis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calcioragusa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calposa.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cambodiainfo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cameraslyphotography.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camisado.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canhq.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cantosdisidentes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "car-speed.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caribuku.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carmeni.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carolicious.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carousel.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carrabiners.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartfilm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casalcrevillent.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casalinghedisperate.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castalie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castleoblivion.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castrillodelavega.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catalojic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caterbing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cctv-supraveghere.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdlinares.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celadas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celebritytopnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centrum-edukacji.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chardik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaussurerunning.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chefpablito.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chezbernard.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chinastory.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chispita.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chitinfo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianblog.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrixonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chuvashia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cilacapnews.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cinemadoma.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clickforum.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clickphobia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cliffburton.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "climatizzatore.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "club-leondehuanuco.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cm-loures.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codeidea.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codesgroup.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coginti.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colley.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comeoneileen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comlipa.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "communist-party.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compu-ofertas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compusrit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computeradvance.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "condit.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "configurat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consoleuniverse.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coomonte.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "copycenter.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "copywriting-on-demand.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coth.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "countrysidemarquees.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpegypt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpsa.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cracksnet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crafttalk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craig-mullins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crapmail.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creditif.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creditor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cristals.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cristianonascimento.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cross-culture.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubanchino.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubigames.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cucaracha.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "customessaystation.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "customradio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cutlinks.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cutmylink.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyber-yaroslavl.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cybercat-tver.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cybergame-host.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberium-planet.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cybermaniac.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberpanel.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberphoenix.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberquest.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cybersound.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cytat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d-soft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daemon-hentai.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dahobo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dailynewsclubs.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dairikab.go.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dakota-spain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dannygaidateraelgar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dannyjota.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dapoxetinagenerico.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dassolutions.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dataman.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datingsrit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dcareer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "de-mossadeq.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "debauchery.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "debitterballetjes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deblocking.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dedmoroz.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defifa.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defterikebir.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deinelakaien.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deionized.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delcan.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delcan.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dementieva-pennetta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demirdokum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "democracy-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denegmnogo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denejki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dengivdom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dentals.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denvernews.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "depleteduranium.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "depositomerci.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derango.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desportvriendenoverijse.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detiks.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detki.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detreannamaria.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detyamobuv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detyobuv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devildog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devils-co.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dieta-figura.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "differentgirleveryday.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dimitrovi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directlendingsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dirk-dogs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disabuse.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disconnect.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "distancelove.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dities.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djlove.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djslash.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dlyaribalki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doc-baza.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "docogo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doctornaima.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doddy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dodikod.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolce-vita-mia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doll.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domain-skachat.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domainforfree.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domainhostingcompany.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domlist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donaldtrump.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doradoscampeon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dorogaminina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dostav.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dosyanet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doubleness.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downloadfiles.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doxycyclineprices.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dranik.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dream-pools.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamcrack.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamworldstudio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drianpublishing.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drivingacademy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drunkendropkes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dubaizone.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dubrava.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "durcal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duxi-s-feromonami.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dynamofanforum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dzus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-diabolo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-fishing.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-informatyk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-peets.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-yachts.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "earningthatis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "earthcorporation.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easyshare.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easywin.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eblog.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eburg.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecbt.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eden-project-insight.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edgarz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "educationtree.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egonix.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elcin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electroforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electromagnetism.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electronicssrit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektromotor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elephantia.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elikers.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elite-design.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emersoncanada.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "endlesswebsite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enerypa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "englandschool.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enoisdaturma.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enrack.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enrique-monroy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entertainmentblog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enwikipedia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epal.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epicenter.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erasure.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eridas.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ersinbiltekin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escueladego.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esmejor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essay-writing-topics-fce.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essaymaker.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euman.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euroshop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eusarse.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eventosformativos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everberg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "examsite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "examticket.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exciters.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exotic-bengal-cattery.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expert-voronezh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "explosionstereo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expouniverse.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extremfrank.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyetooth.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ezik-ido.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "factslider.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fairyth.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fake-show.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fakes-ru.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fakt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fall.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fantasyfoot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farberplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farmaspeed.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashionlistify.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fasturl.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "festivalpopayan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fimozin.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fimp.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finance-news.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findlocalproduce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finestrabatalera.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finlito.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firenews.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fito.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fizadvocaten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flamengopi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flashgamedev.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floorballphilippines.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "florenciasabio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flyawaybirds.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "folar.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "footballsrit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ford-mustang.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forfeit.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forum-egypte.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forum-gilee.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forum-noginska.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forumirc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forumpakistan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotofon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fourscore.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frail.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fralippolippi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frankieburkeactor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "free-generate.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freebegames.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freedogecrypt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freedomisslavery.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freemotion.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freetrung.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freifall.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fruit-farm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fungomoscow.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futbol-tv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fyss.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabryjeluk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaelico.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gagramore.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galaktika-znakomstv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galaxyplex.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamerspost.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gameserver-admin.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamingx.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gammaphibeta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gastronom.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gathegi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gazoz.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gdesemena.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genen.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geoffnussmd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georgekaraoglanis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gerbang-singkolo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geroiplavska.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getpromo.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gfronline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giovannarossi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "givepenny.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glebov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gnezdo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "go-kuwait.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "godall.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldenage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goquiqstatus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorodrostov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gosaavd.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gougeaway.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gpswebsoft.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gpz500s.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grafik.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grekiskagudar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "griffinsrfc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grilllness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grupdedansa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gruzoperevozki.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gugs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guidethailande.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guillen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guitarangel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guzelforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gvitebsk.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gymnastic.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gyroscopicinvesting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "habernet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackthat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haircutideas.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hakimova.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "halilweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handymanbypolli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hardrock.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "health24world.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthystyle.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helbreath.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helloafrica.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herqqq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hexsafe.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiddenimage.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hieisuki.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hightechreviews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hilarious.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hindu-temple.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hollywoodstars.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homophobia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hongki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hongorw.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hongosdemexico.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostingdirectory.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelsrit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "housedesigninfo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houstongaragedoorsrepair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i7sas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icelandic.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ifolder.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ignatij.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ikari-san.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ikx.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilg.ink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iligang.com.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iligang.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iligang.net.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilovesamara.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iloveyoutoo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilug-ktm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilumantio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inalvittile.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inbound.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indiafm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indianapolisnews.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indigobooks.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indospot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "info-bolivia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "informat.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inglesencanada.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innico.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insiberia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intercrosse.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internet42.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetmagaz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intimznakomstvo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irajsingh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iranfilmcity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iranonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iraqinews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ireland.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irob.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ironraven.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islamabadcourt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islamnewss.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "israelnewswire.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it4sure.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "italiatopnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "italik.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itezu.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ittgame.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itzkavin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackrussel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janelle-jamer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janellequintana.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japantravel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "javaexpert.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "javiermascherano.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jennifertilly.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jerisandoval.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jesseonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jesusvasquez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jino.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johan-koffeman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jolfamarket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jomsolat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jongcaxent.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jongtonghapkido.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jose-latino.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joseenriquegonzalez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "josefernandomorilloardila.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jovenescontraelaburrimiento.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "julia-clarete.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jungyonghwa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juppy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "just-keep-swimming.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justknigi.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaatsen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kabachok.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kafel-ufa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kai-ruecker.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kak-pohudet-legko.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalashnikov.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaliningrad.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalsa.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karapuzz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katalog-serverov.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katalog-tovarov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kathleendeisher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kegelschiene.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kemerovo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keramed.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ketoconazole.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevinvanderperren.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keyworth-meadow.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khakasiya.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khakasiya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khakassia.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khakassia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khakassia.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khakassia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kilo-files.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kimberleythomson.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinglier.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kino-doma.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinodrom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinosha.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinovsem.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinozone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirov.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirovcity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirovgrad.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kismy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kleinhaneveld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koba.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "korancode.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koroleva.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "korund.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krakozyabra.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kresimir-blazevic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kryptologie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ktuluweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kukeri-karlovo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kupislivki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuznica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kylie-pomada.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kyrylych.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "la-paco.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labandadelamente.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lablnet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laencina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laramewa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasdelgadas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavozdelamusicachilena.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lbc-podcast.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learnhowtoplayguitar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesbianlovers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letaman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letdownloads.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lg.gz.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "li.gz.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liberty-city.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "librarium.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifekirov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightcraftmc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightfoot.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "limbaido.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lindgrenracing.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkwheel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linonin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lipacom.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lisadelbo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littlelucifercafe.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livelink.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livenewsrussia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locabir.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lockerroomstories.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithssanmarcostx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithstaffordtx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "london-mafia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lorimullins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lorisfnotary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loveismystyle.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ludolust.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukaszuk.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukezweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lux-house.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luxhome.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lyna.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maewongaming.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magaconnection.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maggot.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magic-cheerleading.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magisternegi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maladie-autoimmune.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malariaadvice.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maleperformancepills.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maltasite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maltaultrastifo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mangaworld.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "margolis.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marufmusic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marvaco.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masalaband.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masdemariette.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mathiteia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mati.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthieuchedidweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matuslab.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mauriceje.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maveeranpasupathi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxclean.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mayito.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mayre-idol.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mazavto.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "me-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "med-line.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medichat.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medivox.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megawebsite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mehibo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melda-agustin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meliyb.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mesabi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metaljournal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metalliran.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metrodemaracaibo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mezedokamomata.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miguelito.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milan-news.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milavica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "militarysrit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milkmoovement.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mill.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minaio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minibrewery.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mink-coat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miragg.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirkvartir.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mix-channel.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkbet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobileague.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobinst.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobsitin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobtop.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mogica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moldova-online.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moldovanka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moldovawall.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "molodost.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneta-rossii.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mongolbox.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monkeysorce.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moonwolfwiccanschool.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moraldehornuez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moroccanews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moroccotodaynews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mortengamstpedersen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moscow-moscow.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moscow-new.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mosnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motun.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrlove.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mullinsfarms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multischool.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "murmansk.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musicradio.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mutualmoney.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-bratsk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-tunisia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mychamberlain.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mychamberlain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mychamberlain.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mychemromance.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygreatwebsite.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mykursumlija.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myliftmaster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myliftmaster.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mylight.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mymerlin.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mymerlin.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypenza.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypvhc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myraboats.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myxxxsite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "na-kipre.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nabeez.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nabokov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nacocu.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nameshield.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nancyzone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nandito.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "napominanie.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naruto-best.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nataez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natasabekvalac.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturalcosmetics.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nazarenoviso.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neboley.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neoverso.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netrabota.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nevergirl.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "new-smile.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newillusion.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newlovers.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newlovers.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newlytricks.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "news-sy.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "news123.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "news12elite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "news53today.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "news54.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsbali.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsbusiness.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newscultural.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsinkansas.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsinpolitics.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsireland.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsuk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsvideo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newyorknews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicoleta-prestescu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nightwishchile.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niituva.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nika-travel.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikitenko.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikolahost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikolai-schmidt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nina-woerz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "no-real.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nocturnus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nokya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nontonfilem.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nopajam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "norala.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordicsrit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northkoreainsider.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nou9ta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novak.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novanetwork.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novokuznetsk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novoselie.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "now101atm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nullscripts.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "numericall.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nurmio.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oaktravel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obmen-viz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obnalichka.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "occultisme.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ogamerezine.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ogo-knigi.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oimexico.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okpo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldaine.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldbkcom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldcity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldfieldmusic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldiesmusicguide.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldriver.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olesaradio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ollo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ooo-santal.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "operanavigation.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oposicionesprofesores.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orangtua.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orel-sait.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otdyh-v-abhazii.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otoplenie-ufa.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ouwerling.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ozonstyle.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paintbrush.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pakistan24.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pamc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panamatravel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panangelium.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pandithaya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paperplatefun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paranoidandroid.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parfumer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkefficient.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parrocchiadimeana.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pasnederland.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pasteht.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pastorello.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patioroof.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pattayafruitgarden.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulandmadge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pavelitus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcbmarketing.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcisecuritystandards.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcissc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peacekeeper.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penholder.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pensioner-1000.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pentamexicali.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penza-on-line.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penza-today.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penzaonline.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perevedut.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perewall.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perpetual.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perulinks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pervoklass.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petrotrustlibya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pharmaceuticalcannabis.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philarmonic-abaza.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philippinenewsvanguard.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philosophers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phuket-nash.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pigb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinchuk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pionieren.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pipenav.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pivbar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pivotanimation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pjshop.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planeta-remontika.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pleasantonmobilenotary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plenkanaotrez.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poetenblog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poker4all.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pokeram.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polimer39.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polisipati.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "politicsandnews.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "politicsnews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polskienewsy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pomorskibereg.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "popova.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "postoyanstvo.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pozharnyi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pradeek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pravoslavie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pravoslavnayarus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pravosudie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "preference.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "presidentdirectory.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pridnestrovye.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progeste.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "programmatv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projectfreehosting.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostitutki-narvskaja.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prosto-dengi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prototyping-computer.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psihotest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psixotest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psixotesty.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psw-training.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptupapers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "public-measures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pucogid.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purchasescooters.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "putana.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "putanypitera.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qdrat.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantumfinance.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qubhockey.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiqstatus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raballder.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "racaliz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radionrg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiopharereims.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiorainbow.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainbowsmoothies.win", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rajaealhoceima.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ralix.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rapport.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rascals.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "razgon.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "razvlekuha.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "razvlekuhablog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recherchegruppe.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redeyeguatemala.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redunion.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "refluxogastroesofagico.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regata2015.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "region-vologda.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rejido.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remont-kvartirvmoskve.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rescuer.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reshka.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retailing.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reut42.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revisoronline.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revizor-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rezka-burenie.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rgpdkit.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riba-lov.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rido.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roadtripusa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roamfreun.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robertoullan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rockslideengineering.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rodinka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rolandozarate.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roofer.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roomee.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosa-spain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosbiznes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosstroj-balashiha.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rotaractclubtucuman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rothbruederlein.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roxburytech.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rssfeedonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubbaduckee.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruchka-mashinka.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruexpert.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rufartabs.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruffnecks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruknguk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rumenka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runame.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruoskachile.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rusexmany.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russian-page.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rust.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryabinushka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sabians.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sacians.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sainshand.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saint-peterburg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saint-petersburg.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saint-petersburg.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saint-petersburg.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintpetersburg.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintpetersburg.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintpetersburg.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salvadorinfantil.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sambuchanan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samiratv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandwichcouncil.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sangen.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanluisdequillota.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santibanezdetera.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santjoandevilassar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saratov24.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saratovlive.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saratovnews.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saratovtime.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarhua.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scandinaviancorner.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scarinex.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schellebelle.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoolroom.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schwarzenberg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scotthelmesucks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scrapbookdecorations.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scriptomania.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scurtam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secretagentclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selimcerkezi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selo-cer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seo-obmen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seo-phpbb.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seo-piar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seoonline.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seoserfing.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seoviziti50.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seozel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "septonol.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serverninja.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "setevik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sevastopol.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shadowfight2.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shanhay.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharik-msk.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shaytan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shechipin.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sheffield-wednesday-fc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shelehov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shenderman.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shijij.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shirevirtual.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiriforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiva-temple.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shop-slivki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shost.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shrapnel.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sikaranbrotherhood.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silvertorrents.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sim-mobile.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simsimi.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sinews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sinluzvenezuela.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sion-colony.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirandorung.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "site-ua.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sitekatalog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sitesdesign.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skaiman.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skateswagger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skirts.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slipknot-site.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartcover.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartleads.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sms-pro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snatch-note.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sngnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snowboardforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snsirius.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sochionline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socialair.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sociedadsostenible.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softbit.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sokak-sanati.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soldierangels.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solidsteel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "son-onlajn.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "son-tolkovatel.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonodrom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sosaka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundtube.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spaenny.tf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sparklesvt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spiritous.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sports-sites.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spotzlight.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sritalaska.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sritcities.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srithunters.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sritidaho.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sritspanish.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sritvermont.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stebenkov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stefchapman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stevemason.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stilsvadba.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stonetribute.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoplossoff.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storefront.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strikers.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stroiproect.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studio-abok.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stupidthoughts.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stupino-stroy.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stylebeat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "subdivider.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "successemails.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sucessclick.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sudanindependent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sudanindependent.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suecaunitedfc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sugatime.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sugos.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suicide.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumatrabarat.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumatrautara.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumatriptan365.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "summarized.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunshilin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunshinelife.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superbestpalsclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superdrillers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supermagna.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superservers.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superstargossip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superstarhost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supertrade.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surnganet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surveer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suseki.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swissurf.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taanishsaifu.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tabacundo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tablerocksbestrealtors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tadalafilindia.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taggigkaktus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tambov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamoxifen-citrate.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tatary.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tattoo-art.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tauriscia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamrevolution.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teazer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technowise.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techserve.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techwalker.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telephoni-cdma.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tempdomain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "templete.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "temporarysanity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terengganudaily.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "termoidraulico.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "test-school.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testthis.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "textpages.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thaihotmodels.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thaiportal.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the51news.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebacteriafight.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebestlaos.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecarpenters.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theknockout.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thenest.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theproject.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thetopmovie.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thomastestor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tierarzt-karlsruhe-durlach.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tigerfm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tigergroup.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tihvin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "time-business.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "time-hotel.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timerace.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timgame.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timich.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tips4india.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tirteafuera.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tolerance-zero.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomsk.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tonorosario.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-russian.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top10media.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topknot.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topspin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topurls.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tormox.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torontonews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torrance.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totalhost.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "touchka.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tourism-exegetai.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toyschina.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toysplace.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tracking-app.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tradebotcompany.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traderinside.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trafic-wap.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelphilippines.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trazodononline.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trials.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tribalwarsstyles.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tribistovo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tridentmedia.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triplicate.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trotter.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trusthook.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tryingtotakeovertheworld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tula-city.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tula-news.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tunisiapress.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turciya.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turkey-portal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turkishhackers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turkmannews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turtlehead.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutdevki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutorialcoding.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvoia-dietka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twainhartehotels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyumen.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyva.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyva.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uareferat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uberhorny.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uborka-kvartir-moskva.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ucmatedeveloper.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "udbina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "udien.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultimate-fireworks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultimatebabyshowergifts.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultrafine.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unasim.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unbolt.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unboxed.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "undertow.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unitir.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniuni.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unixhost.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uplinkgame.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uppfinnarenc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ural-emal.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urlfly.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usercompare.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utevai.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uzbekkizlari.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uzbektumblers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uzhas-uzhasny.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "v1.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vacati0n.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valencianisme.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vardenafilhcl.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varjo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vasheradio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vatav.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vegetarier-sind-moerder.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vektlofting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vengriya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veredadelaestrella.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verstka.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vestlundbolargen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "victorcarrasco.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "victorhorta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vidassemfronteiras.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vietnam-tours.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vildlaithailand.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villablino.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vip-moda.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visionxcreative.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visit-thailand.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visiter-tunis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visual-design.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitaliyshepotkov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vkarpaty.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vladimir.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vlcentre.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vmf365.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vneftekamske.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voetbalclubinfo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vovkamagazine.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vremyachko.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrostove.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vsaratove.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vstavropole.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vulcancycling.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vulgar-teens.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vysokoe.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waimanu.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wapnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wash-house.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "water-polo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wealthcreationsolutions.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-format.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-test.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webdesignersinchennai.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webinator.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weblights.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webmaster16.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websitedesignersmalappuram.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websitedesignprice.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websitepromotion.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "west-raptors.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikisorg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wildandwonderfulbodycare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wing-tsun.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wither.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wizardschool.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolflambert.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wonderlab.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wordops.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldcarding.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldoflegion.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wulfrun-invicta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "x58p.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "x58v.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xaba.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xacker.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xarangallomangallo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xenical.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xerdeso.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xloud.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--4brt03c.xn--io0a7i", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--7or43h.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--eebao6b.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--schcke-yxa.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xucha.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yagoda-malina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yangfamily.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yantox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yaws.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yemenlink.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yenbainet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yerbasbuenas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yesteryear-chronicle.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yordanisp.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youcanhelp.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youngmodelsagency.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "your-forum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "your-greece.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youreward.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourmagicstory.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yuandan.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yukoslibrary.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zackiarfan.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zadrot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zagruz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaija.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaim15min.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zajmy-contact.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zala.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zambianewsforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zamenim.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zandra.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zappingarahal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zapreaders.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaruhi.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zcrypto.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zegriesalmansa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zemlyaki.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zen-zone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zepter.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zero-knigi.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zinabnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zizibook.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zloybot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znanje.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znich.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zoepolitics.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zok-ambicija.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zoko.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zonaperu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zowe.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zsoltbereczki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zumberak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zverskij-site.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1vpns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "365securitymg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5goglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ab2web.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abashevo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdulawal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abelbarretto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abusive-host.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accessibilityguidelines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "achiksongs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adceuta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advantis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affinity.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "africanhosting.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agaveandpine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aimare-web.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajaxtime.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alabamacoastalradiology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aladintechnologies.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alalivre.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alcobendas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alcubillas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfa-host.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfavit.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alineonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alkopedia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "all-things.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allfoodrecipes.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allnovosibirsk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpha-bet.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alternatiwa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alushta-vostorg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alwayshowher.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amandahamilton.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "americanunicornparty.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amoxil.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amputated.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anabolickdieta.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anabolics.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anarhija.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andreyjuravlev.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andreysmirnov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrianova.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angelcorpus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animalliberation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankaraotokiralama.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anonaddy.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anouncer.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antabuse.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antfarm.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antonimos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "any-download.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "any-download.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "any-download.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "any-download.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apocalypseboard.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appliquette.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "architectus.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "areacinquentaeum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artcenter.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asabacortoscaseros.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asdchieti.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "associationhorizon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrociencia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astroloeches.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attengo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "authanet.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avangvpn.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avarcom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avengersonlinemovie.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviationmilitaire.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avrora-nov.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azithromycine.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bacanora.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badodds.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baloch-intelligence.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baptisteplanckaert.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barcelonawinewalk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bashkirlife.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basradio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bassrhymeposse.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bd-media.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "behar-selimi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beritanow.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bhavansvidyamandir.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bibliatodo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigsam.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biolack.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biowtage.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin-fauset.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinbot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackminds.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackspark.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blognews.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluetoothspecialist.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bob-dylan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bodas.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boevik.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonusov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borba-umov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borein.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borriquillacuenca.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounouh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bramois.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridgedigest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brigittefontaine.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bssolvfagen-pre-storeswa-wap.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "btc-doge.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "businesspartner.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "busphotos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buswiki.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buysildenafil.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "byggonline.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cactuspedia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cadifit.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calandrahosting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capitalist.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cardiagnostics.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carepan.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carltontownfc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carolinaoliveira.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carontetourist.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carpetcleaning-cypress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carplus.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carpuya.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinotokelau.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castellet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catalog-underwear.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cernac.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "challengerinvestors.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheapsmall.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkmin.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chelpogoda.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chelyaba.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheneypartners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chicofc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "china-online-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chocope-peru.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citypro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citywisdom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clan-hosting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clan-wars.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "climatgate.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clomid100mg.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudix.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "club-eclipse.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubatleticonacionalpotosi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubdeportivocieza.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cluberiks.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubtamarugal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cola-host.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "commons-mayflower.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compositedevtec.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computron.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conalpedis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "confiscate.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "construred.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coolshirt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corehealthberks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cornitek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corruptos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmos-software.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craftshiponline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craigdavis.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crazygifts.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creategyx.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creativesectors.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "credit-default-swaps.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "criptomoneylite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "criticalgenesis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crossfiremovies.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptopaste.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cs-algeria.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "css-tricks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "culturabrasilia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "culturalparadiso.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "custer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cwaclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cybergroup.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cz.ma", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "czprothz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dagrs.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daniel-leblanc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danzka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dark-crystal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dark-nova.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ddosguard.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deadroot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deal-runners.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decode.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defunct-engineers.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delta-host.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demonbuster.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demopanel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denatured.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "departmentofdefense.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desish.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directorydashboard.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directorydisc.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dizayner.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dlyatepla.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domenaru.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domhos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dominicandfelixroco.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domowe-potrawy.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doramamusic.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "download-knigi.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doxepin1.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dozor.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dukeandduchessdrivingschool.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dx2o.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easyfiles.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easylogics.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easytube.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eaugenethomas.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebookabc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebooks-pdf.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eclipseforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ed-studios.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edrosd.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eduart.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edyhenry.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egomaniaque.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electras.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electroniko.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elegantlatex.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektrotango.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elite-nakhodka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elite-tools.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emoforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emreaydinfan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emulator.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erektion1.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escovator-records.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esperantio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "european-hospital.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "european-hospital.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "european-hospital.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eva-briegel-fanpage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evaalordiah.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eventblog2017.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eviction.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evsinemasistemleri.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familleshilton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashionusa.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashionxmas.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fast-cargo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastknigi.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fcapollo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feministreview.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "festesuniversitaries.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fifacup.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filmwallpapers.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findautoloan.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findsingledating.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finestreview.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstbooks.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstwebring.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fixfm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flipmusic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flipphotography.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forexcity.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "formalgrammar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forum-tutorapide.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forumcarriocity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotopalacedigitalstudio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "founded.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foxtrotfm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "france-news.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fredhook.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funnychristianjokes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabriella.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamingtilltheend.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gazizov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekyquiz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gennerator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "germantrip.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "germanytravel.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "germanytravelguide.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gestus.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getpaidclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getwork.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gezinnenhilton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gigasoft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gimnazjum-miloslaw.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "givemylife.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalshippinglimited.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalzone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "go-srx.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "golosok.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorodabakan.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gosti-dom.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goszakupki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gourmetvitamins.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gps-fleettracking.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grafittikontroll.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grandisco.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gratisonlinespel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greeks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "green-anarchy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greendrive.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guys-reviews.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "habitable.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hairpins.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hakkariradyo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hamarimarriage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hamiltonzinelibrary.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hamsystems.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harabar.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hbaa.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthcarereviews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthierweight.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hentamanga.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiddenpalms.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hilalnews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hirel.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "histkult.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hittop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoffmancorporation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holidaylocal.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holyriders.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horclan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hosiery.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelconsulado.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humanidad.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-house.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "importsign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imstocker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inanam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inefin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infoland.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "informspb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ingermany.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inlt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "integ.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "integsystem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interminsk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internet-tv4u.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investactiv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irandex.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irkutsk38.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islamicnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "israelportalk.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itemcreator.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itraffic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iubuniversity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivahbbiz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivendi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izamulhakeem.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izmirescort.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ja-hypnose.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jabber.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jailfood.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeans-shopping.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jerusalempersonals.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jewadvert.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jfgselbitztal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jhw3d.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johncam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jordanprogrammer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jose-manuel-benito-alvarez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jucocauca.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juragan.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jurassicworldfilmen.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justcalm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justquoteme.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jvlfinance.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kadvi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalamos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaliboairport.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamildrozd.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kapelya.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kareltrans.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karimsaadati.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kateysagal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katherineswynford.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kavatasygarety.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kemerovo.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kemerovo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kemerovo42.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keniff.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kerrydavisguitars.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keyhani.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keyphotojs.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiliframework.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinomagia.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinoshki.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirgistan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kitevalley.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klassika.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konstanz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konsul.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kopfgeld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kosmosfestival.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kotuwa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kovachica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kozlekedes.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krasnodar24.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krossakorven.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krovatka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kudinilam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kulthist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kurdishphotography.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kurido-anime.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lada-plus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladanmokhtari.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladocs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lafansite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lalegria.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamasacre.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laminsaho.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "langadeduero.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laoliang.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lapolvora.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larasm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larsnittve.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laterremotodealcorcon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavalon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawda.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawyer.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lazer.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leeyoungaeph.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lenn-blaschke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leon-tec.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leontyev.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leshok.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leticia.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lexikon24.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lfyhokk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libportal.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libreria-ouroboros.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lierohell.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "life-in-hell.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lince-bonares.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lineshop.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "link-net.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linko-pomoika.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkuva.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linux-taganrog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liress.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lisasc.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lisius.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lissajouss.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "little-news.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littleyokohamakennel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liturkey.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livejh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livetopknigi.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "localtownhouses.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logicdream.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lomayko.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lonavla.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "losaucas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lossaicos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "louisdefunes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "louiza.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "love-books.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lspdonline.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lstlx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukin.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lyriksidan.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lyuda.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m-16.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m-beshr.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m1gun.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ma-ze-linux.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macaroonshindig.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macosx86.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macroseo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madskauts.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magazilla.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magazinecards.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnetoscopio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maguire.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailinaitor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailingproduct.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailmaster.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailsend.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailstart.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailtobiz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailwala.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailxpress.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malaysianews.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mamanakormit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mamtapark.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mandela-effect-wiki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mangaboxes.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mangareactor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manicur-salon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manusiasosial.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcelabarrozo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcelofernandez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marina-tsvetaeva.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketgrid.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketgrid.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketia.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketingpalace.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketking.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketsearch.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketvalue.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maroussia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mars.army", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mars.navy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martincernac.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinho.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marvnetdigital.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marvnetdigital.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marvnetdigital.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marvnetdigital.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marvnetdigital.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masqueradecostumes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matematikkulubu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matrimonio.com.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxiservak.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxrider.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maysambotros.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcduff.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdir.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medifirst.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medvedivka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megaherz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megaportal.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mekaleskirit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "memento-mori.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menn.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mentalcalculations.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mentalcraft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadohype.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meskiukas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mesotheliomacentre.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metacortex.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metal-rock.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metalempire.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metallobaza.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meteobox.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mezinfo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mgonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mhabdullah.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michele.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micoff.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midnight-gaming-community.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikechasejr.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikesystems.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mind-books.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minddrive.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minikin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mir-faktov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mir-multimedia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirknighechek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirokon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mithgol.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mixmix.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mmwb.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobilebooster.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moda-donna.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modeldoll.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modern-gaming.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mohamedhosting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moltapor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "molusk.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "money-fast.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneyreal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monolithic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monzo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morozko.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moscowlove.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mostafabanaei.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motekforcelink.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motichi.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motiv-rechts.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motoclubentresemana.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motshop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mountpost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mpgu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrston.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muchotrolley.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mudasobwa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mudcomplex.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musicfactory.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musiker.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musketiers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mvpinfo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mybathroom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mycam.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydoxod.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myedcreview.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myeditclub.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myedu.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myfursona.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygameconsole.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygomel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygrodno.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myhoor.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myinsiderplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mykarelia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mymkphotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myphotonics.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myportal.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myresidence.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myreviews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nadjabenaissa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nadoske.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naemnuk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nagato.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nahman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nailshop.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakim.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natalia-in-quebec.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natariusadvokat.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natashki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "navalarchitect.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nazbol.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neanderthalia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neaz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nebohost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "necromantia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "needfire.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nethealth.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netpenge.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netsearch.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "new-tuning.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neworiflame.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "news-novoros.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "news-srilanka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "news-technology.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsarmenia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsuzbekistan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newtons-erben.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextfm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicastrosalvatore.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nichesite.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nieuwpoort.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nijniy-novgorod.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninmegam.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nippel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nipponkempoph.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nipponnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nivoit.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nkorolev.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nl-comunistas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nn-vol.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novichok.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novinkihd.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novorossiysk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novorussiya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nwradio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "o15y.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oakwood-park.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obmen-vizitami.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obozrevatel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obzor-znakomstv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odejdamoda.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ofisescort.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okulistiyoruz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldliverpoolrailways.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omarsamarah.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omsknews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omskweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oneless.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinesports.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opioneers.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opraab.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optimall.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orbits.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ordina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oriflamesamara.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orikos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ortopertutti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ostankino.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overnetfaq.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overpb.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overps.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oyunmadeni.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "padshah.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paginamaravillosa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palenque.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palermoantagonista.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pamm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panduan-hamil.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "papa---mama.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parket.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partii.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patriciaramos.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulocolacino.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pavernosmatao.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pbcables.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcexpress.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pckurzypd.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pecheneg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pegundugun.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peredoz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permaculture.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perron.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "personaljokes.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petburial.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petrovitch.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phantomfund.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philippinegreenparty.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phonenumberfind.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photographerforwedding.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pieterbamps.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piranhaattack.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pircher.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pisanpeikot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pistonkandidatu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pitbooks.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pl-trans.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plastischechirurgie-linz.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "platter.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pointzip.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pokemonargentina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pokemonguide.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "politvesti.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "popjudge.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "populardogs.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "popupbazaar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porelsam.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porevo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porinnuotiopojat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portable-games.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portal-books.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portal-ru.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portaleldense.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "positiverbeitrag.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "positiverbeitrag.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "positivos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "postmusicologia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potolok-brest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potomac.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potterperfect.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potterybroker.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerlifting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pozarevac.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pozd.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pozitiffchik.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pranksearch.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pravo911.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "predskazanie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premiumplusiptv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prettycities.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pritchi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privacyget.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-kemerovo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proactivenews.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "produkt.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "professionallawyer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profuntime.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "programming-solutions.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propanesale.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proporcer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostoskidki.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protectwrap.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protogenbrainbooster.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "provereno-rabotaet.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "provereno-rabotaet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prushka.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychologbruksela.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychologi.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptcbooks.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "publishedpaper.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pulcinella.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "punkart.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pupok.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pursuehappiness.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "putany.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "queensfactory.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quelle-catalog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quinmedia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qwq2333.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radicaldream.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radio-brest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radioborges.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiocartel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiodiagonal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radioelectronic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiowakeup.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiozetta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radixsalon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raginggaming.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rammsteinzone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ran-drunken.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "randomsearching.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rapwoyska.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raquelmolinacases.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rarece.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rarename.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rastabooks.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "razborpoletov.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "razborpoletov.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "razborpoletov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "razrabo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rbunews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reallywild.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recycling.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redstarpictures.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redwiki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reflexionspain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "releasepoint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remont-naushnikov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remontpc.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remoteoffice.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resanebartar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "restoran.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revizor-online.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revolutionaryaim-vienna.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rilish.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ringofglory.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roadtochina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rommelhuntermusic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "root-books.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "root-books.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosrabota.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roundaboutweb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roverglobal.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royalcavaliers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royalmech.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rtgnews.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubyonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rudating.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russia-rp.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russiahunting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russianbearsmotorsport.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russianbristol.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russianpunkrock.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruzaevka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sabbat-wildfire.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sabedinovski.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sabghijewelers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sabine-dicklberger-massschneiderei-muenchen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sabworldtricks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sagan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saglikhaber.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samandcatonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sambot22.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samiysok.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samsebe.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanalaile.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sancaktepehaber.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santegra.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santippolito-borgo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarah-jane.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "satanspowers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savatha.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savemylicence.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saveusfromavril.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savin.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scandalindo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scfpensante.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schastie.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scholareducation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoolantwoorden.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schweizerbanken.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sciencetram.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scooterinaustralia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selebrita.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "self-business.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selfrealize.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selfretire.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "semenov.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "semiotika.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "semobr.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "semops.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senhost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sentenza.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seo-reality.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seorus.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seowork.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servtraq-staging.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servtraqazure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexologist.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shadikhan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shahrsazan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shamans.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shanju.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharik.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharking.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shawiah.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shevet-achim.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shilpaonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shitnikovo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shkololo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shoponlinedeals.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shossain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siberia.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sierramusic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silken-madame.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silveronline.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplecryptoconvert.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplelinux.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sinavyo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sinfully.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sisirbatu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "site2002.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sithijaya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skazka.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sketchbox.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skiingnewsletter.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skincareagent.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skinseries.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slavasoloviev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sleepawaycampseries.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slogan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slutty-girls.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartphonesolution.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smilecon.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sms72.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snea-kers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sniffing.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sobakasite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softwarecloud.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solarfever.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soldarizona.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soloparati.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "somehsara.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soniaferrer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spacebestnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spaghettiphreakers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spaghettiwesterns.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spidercrabs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spikejeon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spilka-dyplomativ.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sports-online.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sriravana.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srochnozaim.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ss-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stajka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stalker-eyes.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stangeland.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starover.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starpoles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starreview.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starsoft.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steam-rewards.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steamsprays.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steering-wheel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stenaro.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "step2web-cms.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stephanao.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stephanieleonidasfan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stevebuck.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stevejobsfollowers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stolarka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stop-activ.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoppage.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storeplus.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stormhub.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stormylegions.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strawberries.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strl-tunis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stroimvse.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuartbeard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studenti.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studiosql.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "styleelite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sudametrica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sudanell.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumcrevillent.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supercarrot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superiordetail.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supermustang.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suranganet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surasak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suzikogsm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svorkmofotball.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sweat-shirts.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "symetrix.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tadjikistan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taihesy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taken.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talusan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tarakan-klopik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taranagar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tarija.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tarzanka.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tatiana-kpb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxi-domzale.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxi-zakaz.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taximinvody.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technicalproblem.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technosapien.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teleradio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terrorblast.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tesdrole.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "test-iq.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "test-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testforce.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-archive.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theaterreichenhall.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thedarkfusion.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefreebay.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thekonsulthub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelakedistrict.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theocratic.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theosophic.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theprojectx.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theptclist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theredsgazette.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thevanishedvoyager.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thimbros.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thwiki.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timothy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinnhanhvietnam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "todayupdates.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toolspain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toopopular.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toothpique.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-mining.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topkorea.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torreconta.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "touchdown.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tovarypochtoj.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toys-robots.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tpress.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tracesteps.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trackify.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trade-platform.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tramikshop.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transeshairtransplant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelvisit.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trendingdeals.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trendingeducation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triplethreatband.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trz.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turkmistress.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutorialdb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvoyaknighka.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twelvecolonies.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ualove.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ugeek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umniy-dom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "undergrounder.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniaofraternalraulcury.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unitedarmyofentropia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unpleasant.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upbatangan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uslugi-voronezh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "v-novosibirske.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valencianistas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valeniidemunte.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valledeleresma.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valleystories.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vam-podarok.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vampire-studios.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vchelyabinske.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vecherka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vegtelenchat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "velacartagena.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "velosipedi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venlafaxine.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verdugosxerecistas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villadelprado.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villalmanzo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viphackers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viporiflame.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viraljobs.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viraloffer.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viralted.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viralvids.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virgontech.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtualbrestby.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtualcomputer.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtualmemento.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitaminmovie.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vkstream.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vnovosibirske.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volchara.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vozhatik.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vprotect.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vpswebs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vremyapervyih-hd.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vse-potolki.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vvvvbrest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waplumber.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wapspaces.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "washburnenglishschool.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waytofreedom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-studio-kzo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webcam-model.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webcreativa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websitemarketers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webtaxi.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wenhelpdesk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whitepen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "widejeans.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiki-books.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikizip.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wildanalysis.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiskundeonderzoek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wispmaeksmusic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wmsndorgen.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wmsndorgen.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wmsndorgen.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wmsndorgen.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wmsndorgen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wojciechowka.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolfteam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "womensbiz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wonderfulworldofwalliams.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wordregistrar.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldix.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldsfree4u.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldvisa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wormincorporated.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wowlove.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "writers-club.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wvpbs.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wwwwnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xakepctbo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xerezdeportivo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtravans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xurl.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xxxoopz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yagmursoft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yamal-online.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yardesign.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yeti.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourloan.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yura.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaimdengi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaimexpress.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zajm-bez-spravok.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zajm-na-kivi.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zajm-pod-raspisku.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zakaz.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaracraft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zarbis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaympodzalog.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeanweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zetasystem.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhabababa.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhestokiemechtyi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhurnalyu.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zinchenko.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zlatan-ibrahimovic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zlotykameleon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znakomim.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znanie-sila.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zofran-medication.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zofrancost.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zofranprice.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zoloftmedication.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zoloftpills.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zoloftprice.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zolushka-1950.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zooforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zovirax-cream.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zrinski.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zrs-meissen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zxfiles.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2gether.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "activeaerogels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "activespaceautomation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "activespacetech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alessandrobasi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apitodemestre.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assis.partners", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrong.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayudacloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayudalabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayudapreview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bankheadvegetables.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blacktownbuildingsupplies.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bolsashidrosolubles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bongoo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdmdisinfestazioni.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connectionstrings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "der-rohrstock.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domainstaff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dondiabolo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duoyin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebenda.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echosnature.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echoteam.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "efoood.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epidastudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erisys.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eson.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estahl.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evntage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extinctionrebellion.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "focanocliente.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freewerkt.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gerinet.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giac.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gieschke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gregmarziomedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gse.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gt-himmel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indexcesmad.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iplist.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivocopro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kocka.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kocka.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakeandriverrestoration.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavabit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linestep.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lunarflake.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luv-scent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luvscent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m-team.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maneql.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maneql.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medstatix.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meilleursavis.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meugamer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miasonne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nastycomics.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ops.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opticaltest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parsuv.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "payment.ac.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinksec.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playocean.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portafoliodenegocios.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proastec.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qdon.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quhyu.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ramsaver.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "renyiyou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revisores.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "risounokareshi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanierungskonzept.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartpheromones.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "songdew.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srilankan-hope-for-children.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stupidest.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supersandro.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "symplexia.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "systemausfall.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taguette.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thaihong.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theaustinsevenworkshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tholcomb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tielectric.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinycrm.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ufroo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ulli.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umount.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universal-tutorial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unternehmensbewertung.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vintagecarparts.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vserus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weddingwire.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wort.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--s-0fa.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xolotto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xuehao.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yhndnzj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoba.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yobasystems.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yorkshiregardensheds.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zixin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "24hourlocksmithhoustontx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "24hourlocksmithspring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afilio.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airtable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alles-nur-ge.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquaist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquarden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ashtonwealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avocad.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biggerpicture.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandfolder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "broadbandchoices.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caffeinatedengineers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campmackinaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canfazz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caphefin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianr.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comercialroxana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consultoresrey.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coptel.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberforensics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decologisticsgh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downtownsuiteliving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dpim.org.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drjosebarrera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dronepilotgeorgia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eboocker.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edstem.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edusercontent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eznetworks.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gooty.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackerone.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeandliving.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homs.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houstonlockout.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hugonote.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hugonote.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hugonote.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hugonote.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "illinoiscaselaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "improv.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inmigracion-florida.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "instawierszyki.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jawo2008.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiayi.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kasperstad.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klocast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kloclabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knrt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knrt.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuhnerts.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kupu.maori.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lars-kusch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "likefluence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lsbricks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lykope.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mehdimassage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "microsoftedgeinsider.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitratech.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mjniessen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkpdeepclean.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monodejuegos.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mralonas.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mralonas.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mralonas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muku-flooring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "munera.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mychamberlain.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myekon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myeriri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noobsrus.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novacoaching.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onelifenutrition.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacificautobody.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passbolt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passfindr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paul-sitarz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulsitarz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podcrto.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "practicalhomes.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premiovapozicovna.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proudplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psitarz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reby.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reby.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "residentiallocksmithdallas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rochcloud.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saharacloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samystic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebastian-kuhnert.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sellmyphone.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sjwheel.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spanch.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spanch.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spanch.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spanch.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spanchelele.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spanchelele.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spanchelele.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spanchelele.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spanchelele.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssr.llc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strandhaus-claassen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strandhaus-hinter-der-duene.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thealonas.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thealonas.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thealonas.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thealonas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theoosmetalart.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tommyemo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transdevbus.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "translationge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tspdrits.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ucmjlawyers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varlex.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vcm.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "votemate.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waterheaterleaguecity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webdevinsider.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "widgetmaker.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--strandhaus-hinter-der-dne-1wc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeta.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhendre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2jhb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "500promokodov.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agenciacorujadesign.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allaboutgreg.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andresrios.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bachmatt-baar.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bachweid-baar.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binaries.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biographywiki.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bkkf.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blautiefe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blueskyinsure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaturbate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrismarker.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coppidesentupidora.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "correotemporal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creamyfox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctes.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dark-nova.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denydarko.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "df1nif.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domein-direct.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drandrewarnold.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "droid101.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duijf.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dwood.store", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dyneco.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emotive.productions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "encontra-me.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enviroli.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enviroli.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esdacademy.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facturama.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstchoicefriseur.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "food4healthybones.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gliihc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happylearning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hex.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hinyari.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hookshotdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "how-to-simply.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icecodenew.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intensify.pictures", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iplaycraft.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jangl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johndeisher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keller-sports.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirkae.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kriskras99.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "langgasse-baar.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavaggista.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucky-frog.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luxur.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macappstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macpress.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mani.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marvnet.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marvnet.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marvnet.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marvnet.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marvnet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marvnetforum.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marvnetforum.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marvnetforum.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marvnetforum.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marvnetforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mein-domizil.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mekanika.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metroplex.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mivm.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netface.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netfolio.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nylasercenter.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ontourmarketing.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ontrio.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paradies-baar.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planetpowershell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-co.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "promocodius.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propiteer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purple.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readifycloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redeshoprural.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rwx.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shota-sekkotsuin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starb.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startupstack.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stromkomfort.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studio413.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tail.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "takeaimnow.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teckgeekz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tempmail.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toyopac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twobitbusker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yihouse.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "z-cert.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "z3u5.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zombmage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3pestki.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9kb.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aigner-club.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aigner-club.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aignerimage.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albstaedter-kids-cup.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backupassist.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banananet.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bayltd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "becleverwithyourcash.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benu.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bepayd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bionovanaturalpools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackmagickwitch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridgetroll.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brightpool-markets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bviphotovideo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catalogobiblioteca.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdigitale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chathund.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinicaarques.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conciencia.fit", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creativeideasagency.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctf-albstadt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deckersheaven.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dermaldistinction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "descargar-apk.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desentupidorademais.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dylnuge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elisabethcasanova.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esteriliza-me.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "excerp.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exxpozed-image.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exxpozed.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exxpozed.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exxpozed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exxpozed.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exxpozed.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fekir.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferlc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fins.money", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frauen-etappenrennen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gelaendermanufaktur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentledance.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentledance.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "go-datasecurity.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grizz.gdn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gruhn.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hadleyluker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heartbound.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hemainteriors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hosoi-tax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idesoft.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idesoft.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipsum.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irioka.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itzer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jadesong.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jinbijin.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jplennard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kartoffel-tobi.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kettinggeleider.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinaesthetics-forschung.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lequocthai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liberta-me.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lilianejuchli.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loverngifts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matchupmagic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxmusical.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdaemon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melda.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minton.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modell-lq.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mothership.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mudaomundo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mythen-fonds.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mythenfonds.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n-gram.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nationalaustriabank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noga4you.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nsine.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "octopoos.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ontogenese.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pari.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pelosanimais.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pharmasana.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praladofuturo.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progaudio.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "promodance.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quuck.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quuck.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radlina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raydius.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s-pro.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salnet.wf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seamus.party", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seblod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serkanceyhan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sm-kyoushitsu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smcj.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snj.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srkb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suroot.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swiftbonds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokky.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trelki.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videogamer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vpsrussia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westmidlandslettings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiredmedia.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirkungs-forschung.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirkungs-forschung.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirkungs-forschung.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirkungs-forschung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirkungs-forschung.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wjg.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wordops.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wsv-pfeffingen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--nidar-tib.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--prfontaine-c7a.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xuehao.net.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yesh.lk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zmiguel.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znidar.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zollernalbtour.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitbucket.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1lc1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abminiplex.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accademiapugilistica.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "addo-addo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpine-holiday.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angkasa.net.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angular-software.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antanavagefarbiarz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aphelis.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appub.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berksabstract.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billgradywebdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biofattorietoscane.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bog8.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyplore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canobag.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chefkoch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "concordiagaming.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubsbestteaminbaseball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dapperdom.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnssecandipv6.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eciso.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecrownoffire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "europainchemnitz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fairbairnrealty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "festx.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "florida-immigration.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flying-dudes.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortdodgeradio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furgetmeknot.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "g2jp.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gavlix.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gujun-sky.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haitou.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdbits.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthcaresuccess.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helkyn.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helkyn.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helkyn.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hongbomiao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hurbascooter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-make.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igkabel.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igkabel.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igkabel.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igkabel.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igkabel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inspired-creations.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipv4.rip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ispmedipv6.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackspub.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jerseyink.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joedeblasio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kajakswaderki.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kommunermeddnssec.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kommunermedipv6.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lackierereischmitt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lauresta.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lauresta.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luv2watchmycam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manshatech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meran.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monitord.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ms-australia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myfortdodge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myndighetermeddnssec.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myndighetermedipv6.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n8solutions.host", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nadex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netfoundry.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextgen-life-insurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nms-thoracic-surgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plandegralba.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plusreed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prgrmmr.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiqurl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reachout-ghana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rightreview.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secureenduserconnection.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplysmartgardening.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skaginn.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaksbanken.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snizl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srimakc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tacticalvote.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tatard.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tdstoragebay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tech-leaders.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techchip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technochat.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomgaechter.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trinityradioandvideo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twelvecornerspediatrics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twojapogoda.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unluco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urologyoklahoma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "victorunix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "violarenate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vunn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-lab.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whisky.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whitesoxbestteaminbaseball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wine-route.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80akjfhoqm2h2a.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yogamarlene.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zedeko.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1fc0.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2000.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2255motion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actionverb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aeroalbrook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agendaspectacles.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alice-memorial.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aljaspod.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anjara.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "app-scope.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artrapid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoklub.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azpogomap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azrhymes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bancastato.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bgemi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluebnc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bolt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claude.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claude.photo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clemency.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clwrota.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compassionaterelease.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "confygo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyanhexagon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dayswithnostabbings.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defis-franciliens.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demastglazenwasserij.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "despachomariscal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discord.gift", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doerz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-boekhouden.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "educative.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "excelsiorcomics.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fokus.ag", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fos-apps.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fos-games.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "franqois.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gavr.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genunlimited.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "growingsmiles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "growwithdaylight.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hayl.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hentavfall.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hkmap.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoffnungberlin.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoffnungdeutschland.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iancu.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ifbagro.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infans.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iosecurity.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaluzelemoderne.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jarmandental.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jasmyn.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jg-skid.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kabinett.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaiwu.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kazvel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kfassessment.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klauswissmann.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kunda.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lbda.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithforcarshoustontx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithmidrand24-7.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mahalux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mahalux.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mairie-sornay.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marc-beninca.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medirota.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "merlin-memorial.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metaljunkiez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motto-iikoto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mricspatial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mvorisek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mvorisek.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myinternist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myresearchtoolbox.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netgaming.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuits-franciliennes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olinux.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partiono.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peawo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phuoctran.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phuoctran.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phuoctran.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phuoctran.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phuoctran.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "primglaz.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raynis.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reginaclinic.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robotstxt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rotamap.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roys.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rusticpathways.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sambus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanjosecolorectal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarjakuvakauppa.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secapp.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seedno.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serv.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sign.dog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skeriv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slatemc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spillforum.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squattra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssone.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stavanger.kommune.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stghv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stonesfamilyrestaurant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoutassociates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swatee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telcodb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thalliman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tilde.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokky.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokyoadultguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-zdrave.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tpark.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turiscar.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutorcruncher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "txlocksmiththewoodlands.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uj2008.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utrantor.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vectomatic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webinstit.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xiaoxia.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yijia.support", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znn.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0x15.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "22i.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aanwp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpharoofga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amdm.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antizon.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anyi.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anyilin.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apothecarydouglasville.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "area.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asakoh.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audiohub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audiohub.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aw.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bdpestsolutionsstlouis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beatrice-raws.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biuropulawy.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bookingtool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bookingtool.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandonlin.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bring-heaven.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bumble.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campo-salado.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caycehouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centrumpieknairelaksu.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chiavistello.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christiandiscourse.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christopherd.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinicos.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "countrylife.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crys.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crys.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crys.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crys.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dejongonline.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diariocibao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dobryautoskup.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurotop.net.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "febeditora.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firtreetechnology.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fourmies.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frosoku.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gemeentestein.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldenhost.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heightselectrical.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsallaboutplumbing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jakse.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japonyol.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingdominnergy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kstr.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loader.us.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ltcwaterwijk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magniflood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mansora.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "middletonshoppingcentre.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nathanbarry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newshell.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikka.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noeontheend.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nvoip.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omangrid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onceuponabow.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osci.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paesi.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paknetworking.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paroisses-theix-surzur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progresivoptic.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvhe.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quemadoresdegrasa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ratujemyzwierzaki.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rawdamental.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rcpdesign.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redray.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remetall.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safevault.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scholtensupport.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scribbler.monster", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siepomaga.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simmtronic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimento-rifiuti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srqpedals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stapvoorstapduurzaam.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syuez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebridalcollection.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "towsonpediatrics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tualiadaenlimpieza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unitedfitness.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veryswing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vsactivity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vsportage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walkingandcycling.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warthog.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weloveliving.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wemajin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wielrenbond.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wso01.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80ancacgircb8q.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ydraulikos.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ytec.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yukonlip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0cd.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "14erc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "14ercooper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "222tips.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "235u.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "45b.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4investors.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4wrd.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aberon.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adonis.hosting", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advaith.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affiliates.trade", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allanta.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appbydl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apply-esta.us.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artifexnet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autodius.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awangardaszkola.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bachmannyachts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bacsmegye.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baranyavar.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beautyseasons.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bergfex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestehostingproviders.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bettashoerepairs.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bhaweshkumar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biancazapatka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloomscape.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bmcorp.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boomfestival.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brugerklub.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsstainless.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cameramark.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canhas.report", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chernyak.id.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christineprayon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clairette-de-die-lantheaume.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codista.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coinsuggest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comfortsolutionsair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contractorswestga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "correctconstructions.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crowcloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctmrepository.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cursosgratuitos.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dating.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni24.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dobbshvac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "douglascountybar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "encoro.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epawnatl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "equipoweb.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fejervar.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fireglow.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "framer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fridaysforfuture-bremen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "froogo.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funktionevents.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalvoice.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greengates.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gregorydorrifourt.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grexx.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hac2er.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "has.report", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hasandeniz.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heardcountyathletics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hklbgd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeehome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inkthreadable.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "invetep.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janostheil.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jnsz.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobfury.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johannfritsche.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keestalkstech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingfast.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kita-freie-schule.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kleor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knuterikskare.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kodkollen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kodkollen.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kurierwilenski.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leveluprankings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libwebsockets.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifetoolscdc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "love-spells-tarot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lumacurve.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magicstay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magyarepitok.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maiet.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maklerinfo.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martellosecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mazloum.adv.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mgsdb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micropigpets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikkei.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modelspoor-projecten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modelspoorprojecten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modernautorepairs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mountainutilities.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-web.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natmal.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nogradhont.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "objectif-securite.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okkhor52.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olive.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ollies.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onpointplugins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osomagicmountain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pandahut.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partnersofprc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pestpilis.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plaisirs-coquins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planetchiropracticga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plcgurus.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plz.report", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "priv.gc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privatenebula.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "putnamcollision.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recruitnow.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rinkhill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riptidetech.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roseberyvenues.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rsquare.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rummey.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samandroscosrestaurant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sand-stoneinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sapphireservicesga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segurosmaurobracchieri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiganmartialarts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sideleau.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skjt.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skolebil.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sofialobocera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "somogyivar.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "staticfury.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tarife.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theepicsponge.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toddcullumresearch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tolnavar.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomik.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tradie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelamm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trebnie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tusi.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twistfix.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unique-tutorials.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vnministries.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warmcat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wearebase.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wenceslas.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "west-nerica.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wsave.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xxxbunker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xzibits.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yachtfolio1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ae86dj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aiva.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alko-centr.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allsoulinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allsoulmobile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allsoultech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antennajunkies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antennista.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apostalegal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apostalegal.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assemblywithoutthewalls.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrojunkies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baronspices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bcmguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beestation13.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestcivilattorneys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betmobilenigeria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biblionix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biol.moscow", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brunchandmatch.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buffup.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyessayscheap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cacrm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cargoio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casinosblockchain.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chupanhcotrang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clipchamp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coastmedicalservice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coatl-industries.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coffeestain.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coin.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "complexcoral.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creditorapido.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cristianuibar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dark.fail", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dosje.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ducksoft.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electrum.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eulessplumbers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evoting.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ewcd.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "examika.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fojing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freedomtoolkit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ftl13.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gcode.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geschichtscheck.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gesmav-trier.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gkv-gorinchem.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glimhome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globetalent.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gramtrans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guoke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hl8id.vip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hosteons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypotheca.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "id3global.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impakho.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inovatecapi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insights.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiji.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jumprun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "just3preety.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jyrilaitinen.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jyvaskylantykkimies.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirchenchor-olzheim.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirillpokrovsky.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kromonos.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kursk-otoplenie.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kustod.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kvetinyumarkety.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lalaloe.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learngreenlandic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lethosdesigns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liberty-med.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lisasworkshop.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "listyourinfo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lockr.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ludothek-burgdorf.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukasrod.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinboerhof.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mastdi.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mathematik.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mmassemblyline.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multicore.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multimatte.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-hps.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ohmy.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ohoreviews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ondeapostar.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pakho.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peterfiorella.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfarreiengemeinschaft-neuerburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pianyigou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plantarportugal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plumberlewisvilletexas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prepfba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostoporno.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prowpcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantum-evolution.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reinhart-auto.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resolvergroup.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruri.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintleochurch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santo.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sdn.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seolabuitest.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serenavillageresidence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shanoviyam.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shota.soy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solsocog.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "souleymanecamara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "souzanabellydance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqreemtech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storgaarddieu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thouqi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tickettailor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timawesomeness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tommihynynen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toopita.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelwithbender.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "u32i64.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uphabit.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uspesnyprvnacek.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vulpr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wca.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtaboo3d.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zindec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acces-elevation.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adonisgrup.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adoptionpregnancycenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adoptionpregnancycenter.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akeenext.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almeeraloyalty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almusbahperfume.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aperture-science.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atrias.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audiohub.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autotrac.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b62d.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balsamaiso.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bandeirasnacionais.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banderas-mundo.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bandiere-mondo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barakayu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bayraklar.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beers.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestinbarter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biol.spb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonn.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bosekarmelitky.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "breadpirates.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brindesgrafica.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brisq.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calluro.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camago.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdbtech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chapek9.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chicagobreastaugdrs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computingsociety.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crafted.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crownsterling.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denisadinu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalarchives.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ditec.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donsremovals.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drapeauxdespays.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtleague.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eldoradocylinders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "engagelogic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ericsilva.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erperium.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fam-borsch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fetishbazar.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fibroarrendacaseton.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flaggorvarlden.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flagi-panstw.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flagistrany.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flagpedia.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flagpedia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "franchisehive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galeriakobylarz.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grimm.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grupocata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hearthstonehungary.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hedys.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hygieneproclean.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibhgospel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infinityvr.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iosprivacy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kettlemetalbbq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "last-strike.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leemankuiper.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livelondon.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lohr.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maidenliput.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "master-tmb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meetfranz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meuautotrac.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micr0lab.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mlohr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mountbatten.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msoll.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msoll.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nemzetizaszlok.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nutrizionista.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nvmo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ozli.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pantsu.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "part.la", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penconsultants.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philipdeussen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philipdeussen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playinfinityvr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "publivate.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qr1.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qrd.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiq-uri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "refinedroomsllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regon.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revampweb-development.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royaume-smoke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saltedfish.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scip.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sekainokokki.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shotsleeve.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shulyaka.org.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sofaclean.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speventos.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statnevlajky.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statnivlajky.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stefan.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stina-vino.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strathspeycrown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studiokilund.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "summitlighthousela.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunsdesign.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swindontennisclub.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tanks.je", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tarek.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taylorshillsamoan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theheatingoilclub.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tommyemo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "towellconstruction.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ucngame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uddin.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valx.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verdensflag.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viveportal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vlaggen-landen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrba.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vtupro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weinboxbuilders.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weitsolutions.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "welt-flaggen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "williamtai.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worongarymedical.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wossl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xinnermedia.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaledia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advancedurologyswla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aecis.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akerboom.family", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akerboom.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "americans.cam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amymabel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrey1p.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arno-klein.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arno-klein.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arnoklein.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arx-libertatis.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asianwebcams.webcam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avancen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avisofi-credit-immobilier.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bekolite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bongocams.webcam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "breizh.pm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buriramradio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cargosapiens.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casaasia.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "censys.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chris-siedler.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ckpl.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colombianas.webcam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compassleaf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connectme.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consteval.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "constexpr.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "constinit.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cooljv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craft-beer.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crafters.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crtalleres.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cuir-lipari.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidje13.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decarrouseloss.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deshobi.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digital-eastside.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dilibel.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dottore.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ds.lol", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dscharrer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtnx.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eazyproject.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebooknetworking.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "editionsnoiretrouge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elitedns.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "endbox.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erichoekstra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erichoekstra.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erkiss.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyedesignuniversity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabslabour.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freddieleeman.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fryergroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fx-rating.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gluhov-ss.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graficasantana.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrpage.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inflatiecalculator.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inkbunny.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innovum.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interstateremovalists.sydney", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ixit.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janeymac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jasminlive.cam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jesusthegoodshepherd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jyoba.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kas.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kelis.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kneppe.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knulla.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knulle.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koef.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kolkinn.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kycisrael.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lanzalex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "le-fumoir.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightyear.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "londonseedcentre.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loxal.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ludofantasy.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maisvitaminas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marjonruns.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marvin.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meditarenargentina.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menthiere.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musthinsider.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-sex-cam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mywindscreen.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nfl.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicolettajennings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nrthcdn.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxfordbio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paiementdp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paradigma-med.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partenopei.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pbwebdev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "personadecoded.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pimichi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pizza-calzone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premium-computer.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "previousmagazine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profritual.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychiatrie-ricany.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puntaprop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabbitcallcenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ravelin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "renanoliveira.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "restaurantedonono.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revampweb-staging.azurewebsites.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripp-it.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romanian.cam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rotate4all.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royalaubar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saiyans.com.ve", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saledump.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scenari.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scenari.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sdebitati.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seishinchuo-lawoffice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sex-sex-cam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shahzaibm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shoemakerywc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shokureach.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softwarepara.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spacehighways.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "st42.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stamboomgids.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sth.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stripe.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stripecdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svtr.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sydneychillies.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t3hty.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "televotia.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebasicstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theo-andreou.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theorioncorrelation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timacdonald.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timeless-spirit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tixel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torrentgalaxy.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twtr.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uborka-812.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upholsterycleanerslondon.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usjunkyardsnearme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verbmaestro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vertretungsplan.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visuri.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voidancerecords.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voyagewonders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webkam-sex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websitecyber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikileaks.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodwo.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yachtfolio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ygm.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yl8.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zdenekpasek.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenassociates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "09000113.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "12l.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aland.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apod.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arnove.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aspirevc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bernmail.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestbuyzone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bettercleaningcompany.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beverhof.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biz-architect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluesoap.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bobstenancycleaning.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buddyme.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buri.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bvgt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "careertransformed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carwashdruten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdf.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceiba.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cgp.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chadlenz.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chianti2002.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chloes.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciagutek.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cineworld.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citsc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claumarservice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crazymarvin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defendtheweb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devicom.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dhit.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dianadrive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dipietro.id.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discarica.napoli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divjak.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmarcian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drradin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dspropertyservicesltd.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edtech.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eisen-biomed.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektrownie-tanio.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emeliemai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emmiwelentain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esoteric.website", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familiearchivaris.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farodeluz.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "felixklenner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ffg.berlin", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fietsvierdaagsen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gearwise.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genealogiewerkbalk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hakkasan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hardfloorcleaninglondon.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heathersmithcommercial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hermiu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hifly.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holtslander.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icecutethings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "illange.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inspiresurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intrixgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipinfo.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ispfontela.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivetazivot.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jan.gl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jrt.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaputtzich.duckdns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kernkompas.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kkcinemas.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kochbar.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leathersofacleaning.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lidl-shop.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lidl-sklep.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lidlonline.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightningwirelabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lxx4380.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mademoe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnesy-neodymowe.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnesy-neodymowe.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnesy-tanio.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnesy.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnesy.net.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manicminers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinelias.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mateuszmajewski.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matts.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxuniverse.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcjars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medsourcelabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meridanas.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijngeldcoach.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mist79.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mittwoch-nacht.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkm.szczecin.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mo-mochizuki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moteksystems.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mott.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "move-out-cleaning.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mservers.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mt-tech.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myofficeconnect.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypt3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nepozitkova.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netolink.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netolink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nrvc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzelaweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odegua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oegd.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ololmke.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omshivalab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinestoresite.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optimalrehab.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ostylelimo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patchyvideo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "preparetheword.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "producentbalustrad.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protocol.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prove-uru.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redpen.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redsequence.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "restaurant-fujiyama.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revworld.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rugcleaninglondon.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serverhost.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shepherdsfriendly.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplemining.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sinhnhatbaby.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smtenants.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soterdev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sphericalvision.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supercharged.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taffe-elec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcgpraktijk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trabajaenvitamina.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turbomag.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "typeclasses.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubicaciones-vitamina.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universoscuola.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upbtrbt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upbtrbt.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upbtrbt.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upbtrbt.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upbtrbt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "us-10.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utiars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vicenez.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitavista.health", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vocationnetwork.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watzijnmijnkerntalenten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wealthadvisorsmf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xinxin.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xlink.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xmag.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yauatcha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youber.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourcareerhost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zuim.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zurlin.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdullahavci.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdullahavci.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdullahavci.net.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "analisi-logica.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aponkral.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aponkral.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "applied-privacy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apply-visa.us.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlanticmarina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "augur.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axiomeosteopathie.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "b4lint.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bairrosonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestporngirls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bet333444.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blog-investimenti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blogpress.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brazilianbikinishop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caldersoldas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cashforcarremovalsipswich.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cavenderhill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccelectricaldrafting.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chungsir.com.pa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cialde.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clientcms.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinique-ser.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "competitor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "couriergrey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "couriersrs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creativeliquid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cremedigital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptex.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csci571.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daceurope.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deadpulse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dedoles.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "del-ex.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dementiacaring.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "designepublicidade.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deti-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drpil.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecodesign-labo.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emmastree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "errortools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evisa.us.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "excitoninteractive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ff-koenigstein-opf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fittingperfetto.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fozzie.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genunlimited.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "go-away.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hastaneurunleri.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haystackrenovation.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeworkacers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hosuronline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrcrew.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrpregnancy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idesoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imaginelab.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infocus.company", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ingenias.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inocelda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interphoto.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "is-in-hyper.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsig-faq.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iwatt.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jabberd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiayi.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k-jtan.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keller-aarau.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kneli.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lemonrotools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lindquistnet.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ljskatt.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loan-lenders.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lunarshark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnesium-biomed.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketing1-0-1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthias-wimmer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mckay-bednar.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mealcast.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miftahulteknik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikeowens.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nasaacronyms-beta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nasaacronyms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nn01.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nonzero.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nosedoctor.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ociaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patryk.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pelachim.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "personalfunctionaldata.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piatika.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pirscapital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playinfinity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pop.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "produra.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projekt-allianz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puntoestadodemexico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pymescentro.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qicsystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quarim.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ramtechmodular.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recht.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reparacionmovilesmurcia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rodelstein.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintanthonylakin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saorview.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "satania.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scratchzeeland.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sethlmatarassomd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shdw.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopikal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportboot.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srcprivatesecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steuerberater-bayreuth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supergmtransport.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tegel-schoonmaken.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thilobuchholz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiendadolca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelassist.us.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trezor.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vmautorajkot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolfy.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workshop.men", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpwebshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "x001.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaraweb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeus.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2th.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7pets.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abcdreamusa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abhaldus.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "action-verite.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ampgroep.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andreina-atencio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angelok.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arnesegers.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arsindecor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asdwfwqd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aupaysdesanes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babounet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bespokemortgages.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bevelbeer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bibliobus.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bikebristol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blanboom.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brguk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brinksurl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "by-robyn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccparishwilmington.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chilliwackchurchofgod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearvoice1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudpole.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connectingrentals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cozmoyachts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cr8haven.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "createbeing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dalianbbq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dayuse-hotels.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dayuse.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dayuse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dayuse.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dayuse.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dayuse.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dayuse.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dayuse.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "degoeiewebsite.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deloretta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dermsf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deu.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dev-pmcc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dev.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devconf.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dgangsta.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalagencynetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directveilig.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "distributori.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drrr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eastmaintech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eastping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eastyorkshirebuses.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ekalisch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elskling.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eprezto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurogarden-parts.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurogarden.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurogarden.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f1distribution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fairgaming.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freepastlife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuseyahoken.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "g-lab.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gasinstallationsjohannesburg.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genealogieonline.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geus-okna.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "girlinthetiara.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glosons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gymnchod.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hassra.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthworksmarden.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hkmap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hplace.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hullseals.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "into-the-mountain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-zt.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivanderevianko.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jdefreitas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jenniwiltz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonaskarlssonfoto.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalisch.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lanselot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lexautoservice.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lonelyhaoss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macji-raj.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madreluna.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maytalkhao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mbed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicareful.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mehode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mindcms.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkalisch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mocknen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morganwilder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neilpatel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nevychova.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newquilters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nguru.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nutbot.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odolbeau.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oneshotmediakc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlineradio.pp.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openarch.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panthi.lk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulcoldren.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perf1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peter-hurtenbach.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piratesbrewcoffee.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planrow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pmcc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polybius.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "post.icu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "probazen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pylon.bot", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiqd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiqurls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiodeutsch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ranyeh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "repliksword.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runicspells.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saferequest.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sailormoongallery.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebastianungureanu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sekurak.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sgrossi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shellcon.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simcoecurlingclub.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sixcolors.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socialclimb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spaceapi.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stickypassword.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stjohnnepomucene.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sukiu.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swagger.london", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "system-admin-girl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taiwanhotspring.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "targetx.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tenelco.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "titantax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuxsrv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urabain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vandortgroep.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vectormagnetics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vip.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volatilesystems.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vox.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vv1234.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vyvod-iz-zapoya.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walnus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warrantynowvoid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wetter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windowreplacement.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winsposure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yardley.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yogaschule-herzraum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "01tools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1datatec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2y3x.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "608vets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a3mobile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aarquiteta.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aasvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abbeyvetspets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accademia24.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adasbench.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajl.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajnah.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allcinema.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allcountyins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annuaire-auto-ecole.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antispamcloud.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appliancepronwi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arx.vg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astucewebmaster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auksnest.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avonvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bangkokcookingclass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bibliotekasnow.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billigesommerhuse.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluemanhoop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blythwood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bobnbounce.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bomhard.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bomhard.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boundaryvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bracknellvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "broadwayvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bszoft.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buchhaltung-muehelos.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caldervets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candidatlibre.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casavacanze.estate", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathcartandwinn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centralpaellera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centreagree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chapelhousevet.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheapsslsecurity.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chiboost.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chodaczek.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrxw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clan-zone.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudsavvyit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coignieresentransition.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creative-thinking.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cromwellvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "culturess.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dan-bureau.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delegao.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deutschland-dsl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dieti-natura.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dimomaint.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dimomaint.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disabilitydischarge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domyhomework123.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dovermotion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-coexist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-oscar-web.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebola-hosting.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esfiledecrypter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eskapi.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espace-habitat-francais.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etaoinwu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eventprazdnik.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evony.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ewritingservice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "excelkursdirekt.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expatfire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "falsterhus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "falsterhus.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fanohus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fanohus.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feriehus-danmark.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferienhaus-danemark-hund.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferienhaus-danemark-privat.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferienhaus-laesoe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferienhaus-urlaub-danemark.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferieservice.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frozenfutures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "global-monitoring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gmenhq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldandgopher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gowervets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gpsblackbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greensidevetpractice.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenstreethammers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hancocklawfl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hawickvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hexaware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hispadent.com.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeshowoff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelcorporate.codes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypolineweb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ifacservice.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilovelwy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immortal-pc.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iqsecurity.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "istormsolutions.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itnow.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jetswhiteout.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jourdain.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kbsinflatablekingdom.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kentdalevets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khedmatazma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingjamesgospel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klitmoeller.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klitmoeller.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laurenball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawlessrepublic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ledburyvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lida-vets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifesavvy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linksphotograph.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linnaeusgroup.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "litarvan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lizzian.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "localpov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malinaclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maplebgm.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matrixglobalsms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdbug.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medisense.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikethiessen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mindbounce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minervacars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mminsco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mod.af", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moritzkornher.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrmemory.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multimedia-pool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ndx.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netferie.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netferie.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netferie.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.ads", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.android", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.app", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.boo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.cal", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.channel", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.chrome", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.dad", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.day", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.dclk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.docs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.drive", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.eat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.esq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.fly", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.foo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.gbiz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.gle", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.gmail", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.google", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.guge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.hangout", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.here", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.ing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.meet", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.meme", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.mov", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.new", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.nexus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.page", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.play", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.prod", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.prof", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.rsvp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.youtube", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic.zip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nihaarpstars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nocommentsallowed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordvestkysten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordvestkysten.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northampton-vets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nothinfancy.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oakbarnvets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olopp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omniteck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opp.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palner.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paperwritten.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pappasappar.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkvetgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peakvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permis-apoints.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phinphanatic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pmarbeid.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornopark.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portierato.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "preventfalls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "provlas.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rbtvshitstorm.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reddevilarmada.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "registry.google", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resorts.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retraitebysaulsplace.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reviewgeek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riggosrag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riversmeet.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romo-holidays.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romo-holidays.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rossome.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rtveen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rugeley-vets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saulsplacehealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saulsplacewebdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saulvanderbijl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "section215.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selltous.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senshot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "setuplog.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sevilinux.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiresvets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simosol.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simosol.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sisu.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sitemai.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skagen-feriebolig.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skolappar.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sommerhusudlejning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spellic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stage-recuperation-points-bordeaux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stage-recuperation-points-lille.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stage-recuperation-points-lyon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stage-recuperation-points-marseille.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stage-recuperation-points-montpellier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stage-recuperation-points-nantes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stage-recuperation-points-nice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stage-recuperation-points-paris.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stage-recuperation-points-reims.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stage-recuperation-points-rennes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stage-recuperation-points-strasbourg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stage-recuperation-points-toulouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stluciastar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strd.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studio-satellite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svedalataxi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swiftpak.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tampabayhometours.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tantravoorlichting.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tdvg.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tele-points.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texasbluesalley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thai369.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the5th.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelevelman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therealchamps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tipsmake.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tmcjobs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tommymoya.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsahf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuning-parts24.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tunnelstore.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turnoffthelights.video", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvaerialsmanchester.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urrestarazuserranoabogados.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "us.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vakantiehuisschellinkhout.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vellingetaxi.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vestibtech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vet4life.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vindafrid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vindafrid.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vindafrid.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visartdecor.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voodooshaman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wannapopularnews.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webhotels.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whoami.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wijaya2u.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wormate.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--90acjfgylpnm.xn--90ais", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--ggle-qoaa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--ukasik-2db.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yavorivanov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoonas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourazbraces.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zoyride.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acronis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adamdorman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adhocracy.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adimplere.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agroconsultoraplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahollamby.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfratehotelcampiglio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alitec.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annabelcinemas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appers.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appsaraby.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archframe.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arkantos.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bank-yahav.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barnvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beautyinweb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "besensi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bet333222.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bewegtes-lagern.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bewegtes-lagern.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bewegtes-lagern.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bewegtes-lagern.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bewegteslagern.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bewegteslagern.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bewegteslagern.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biolmarket.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackstump.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackzebra.audio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blogofapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blrjmt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "botmedia.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bravobet.et", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brutecloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buster.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bytheswordinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calitateavietii-ardeal.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calucon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carolineball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkra.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chimpmatic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "courvix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daie-inc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidgroup.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dcave.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devtea.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drherndonent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dug.net.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-klempir.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edelweiss-pinzolo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "educa2.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eletminosegert.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emkode.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "en0.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "execbar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fachversand-hennes.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farallonesrentacar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fluglektuere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galj.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galleonwaymedical.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ggiveilig.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glassofgrape.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalipaction.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goaudits.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gotravel.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grafia.ink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gregmc.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hartleighclyde.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hceu-performance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hennesshop.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hly0928.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hofstaetter.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelcorporatecodes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelpromo.codes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrumka.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hubspot.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hubspot.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hubspot.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hubspot.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idee-lq.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idee-lq.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idee-lq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idee-lq.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idee-lq.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indoor-kletterwald.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infinity-uitvaartzorg.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "informatiger.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "involic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iranwiki.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "italiensk-tolk.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivoryandgrace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izumi-ryokan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jessem.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joaojunior.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joomla-leipzig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jzwebdesign.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karopapier.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiwiflowershop.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kreativklinik.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laab.gv.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larete.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "launchgroup.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leddingplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logico.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariagealamontagne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattrude.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metanumbers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metzgermark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mieldemexico.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milleron.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minimonies.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modbom.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "molleron.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moonlightdesign.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-profile.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mybillie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygear.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myloanmanager.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netzwerk-lq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newyorkhiltonmidtown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notedinstyle.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "on-targettrainingcourses.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ornsyn.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oz-style.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacificbeachpub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patlis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcrab.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pendrivelinux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permista.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "persiennkompaniet.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photomaniastore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piffer.ind.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polestar.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prawnikdlaanglii.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "precisionhockey.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "primecursos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-lq.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-lq.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-lq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-lq.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-lq.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-lq.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-lq.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-lq.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prodentalsantacruz.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pusehusetkattehotell.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pusehusetmalvik.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recruit.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekurasi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ricardotaakehb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riklewis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rsa-erp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sbaten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottshorter.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seoexpert.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shawnz.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sheremetka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shin-yo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slymak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soket.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "southmill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stefanknobel.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiftung-lq.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiftung-lq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiftung-lq.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiftunglq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studioxii.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superglidewardrobes.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tektouch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tipranks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tool.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tours.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsutawal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvnow.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ukpropertyrescue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uksb.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "underwoodpatents.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unidostransportes.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uvtcinemas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vechainstats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verlag-lq.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verlag-lq.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verlag-lq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verlag-lq.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verlag-lq.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verlaglq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verloskundigepraktijktolmiea.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videopornoitaliana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videoskaseros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visatitans.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visatitans.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visatitans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wear-referrals.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webce.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weymouthslowik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worcestervets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--9xa.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ymatyt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yodababy.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourname.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yuxiangyuan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0q0.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1st2bounce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "8e8z.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aarwer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aarwer.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abacross.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abona24.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adaptiv.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adsib.gob.bo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agrobaza.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albagora.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alvimedika.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amoryurgentcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antipolygraph.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aoyamacc.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arhitekti.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artikel9.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baches-piscines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basel-gynaecology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basel-gynaekologie.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basilsys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bedtimeflirt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benmack.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestcrossbowguide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigudi.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biotanquesbts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "black-magic-love-spells.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blacksheepsw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluemoonrescue.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bobigames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brain-club.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "broe.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buddhismedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buitenposter.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casabella.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "choservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citylift.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cityradiusmaps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearbooks.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearlinux.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleveroad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compdermcenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comunal.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "confusion-band.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corsorspp.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cupcake.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dailysuperheroes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbcartography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dd.center", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denninger.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denta-ua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derenderkeks.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "design-your-life.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "didaktik4you.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "docu.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolmenejecutores.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "driestwegkerk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dungeoncity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emeraldcoasturgentcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "envoypresents.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espiragen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expansion-lidl.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fableheartmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fapcoholic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feistore.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finsecurity.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstcolonyengraving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstversionist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fix.mk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "folkofolk.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "force4racing.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "force4racing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fricassea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fudie.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funprode.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gantt-chart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garagedoorrepaircedarhilltx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlentapis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "germfr.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "get-baaam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gezondheidszorg-ict.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghostpin.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giardinoperfetto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "global-qanoon.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goetzinger-web.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenangels.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gruslic.org.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gutscheineplus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hamamatsu-kotsu.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happyretail.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hetwalhalla.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hexhu.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hide.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hifala.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "housingloan.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ias.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibcmed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "identityexperts.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imolog.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infovb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ingeni.ink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipggroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islandsbanki.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itseovn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jessica-weller.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmsystems.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jovisa.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jumeirashoes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jwatt.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kasse.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kasse.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ki-management.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiinteistot-lidl.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labs.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladeboks.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamchannang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leafletdistributionmanchester.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ledspalluto.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lidl-immobilien.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lis.koeln", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liscieperfetti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logtenberg.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mafworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnetoterapiapertutti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mandediary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maransurology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marktgorman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matgodt.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megaelettrostimolatore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "methodfactory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milleron.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miwebmadrid.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mon-butin.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motor-agro.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muganworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musedash.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "museloveurania.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myoddlittleworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nationslending.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nekretnine-lidl.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nepremicnine-lidl.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nertus.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neumarkcb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neverwasinparis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ofrion.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orbitabaja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ovpn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxfordurgentclinic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peabodytile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfmed.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pravnisistem.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "precisionvaccinations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "princelishan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "princelishan.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prisync.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "provide-your-image.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pruna.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puredayshop.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiomercure.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rbiacademylms.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realestate-lidl.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realestate-lidl.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realestate-lidl.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realestate-lidl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realestate-lidl.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realestate-lidl.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realestate-lidl.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realestate-lidl.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realestate-lidl.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realestate-lidl.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realestate-lidl.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realestate-lidl.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realestate-lidl.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realestate-lidl.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realestate-lidl.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realestate-lidl.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recoveryunplugged.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redhawkwa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resilienzatropical.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resolve-portal.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revitalisierungs-akademie.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhodos.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rikunori.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rustfu.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sajtr.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samesound.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scatters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scheervergelijker.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schnitzel-und-co.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sh0uld.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shansen-online.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopteq.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "singleproduction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sitak.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smithsanchez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starkvilleurgentcareclinic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stc-istok.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sugarpiano.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sweetspot.co.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "systime.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tateishi-ip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tche.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tennisportal.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theblackboard.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomsoft.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-rensner.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topyachts-shop.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trauerbegleitung-kudla.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuxsoul.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urbest.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urgentcaresouthaven.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uurl.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vconstruct.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinc.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waldur.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wijnlandkroatie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xiphwork.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yachta.kiev.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yachtmarket.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yashinstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yibei-original.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youtubekids.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeromedia.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squareup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "37zw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a3m.gmbh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abcempreendimentos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "af.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agropotter.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alana.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alaunus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alea.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alex-n.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfastone.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ameriondental.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amion.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "androtix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "art-dolls.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artycoz.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asker-massasje.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aspirantum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atelierverbeelding.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atkstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attentionpleats.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attractant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "augredutemps.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azertyjobs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backpackingtours.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellaaroma.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beris.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berluga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bern.bz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bethanyhome.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betolerant.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biglu.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billiardmaster.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitmart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blockchain.poker", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonchaboncha.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brunohenc.from.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bscquimicos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buffus.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "byjus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cambridgeanalytica.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celsoazevedo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chopchat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciclimattio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cinematherapy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cocoa-job.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "columbushydroxide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "columbushydroxide.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cslbuild.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cursosemmaus.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dashadmit123.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datasubject.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datasubjects.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidfindlay.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deemlove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defesaaereanaval.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "departureboard.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djurklinikenangelholm.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamswelcome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drevoline.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "droplen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duboisinternational.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dwarf.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easymotionskin-japan.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elenapulizieroma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elisabethbegle.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energy-robotics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escaperoompsl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estudiaenrusia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethicallogistics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fall.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastpeoplesearch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faunahotel.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdlpl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filejet.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fishycam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleetcomplete.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fneon.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foreverydream.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "games2kids.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamingmonitortest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garonna.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gebaeudebilanzierung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getintra.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giftofsquare.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giftofsquare.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giftsofsquare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giftsofsquare.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giftsofsquare.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giveasquare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giveasquare.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giveasquare.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goettinger-katzenschutz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gosq.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gosq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greendvorik.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guercioarchitecture.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harleyclassifieds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helppc.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypnose-hennigsdorf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infoprofuse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "international-friends.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itmax.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeep4ik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jellebo.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jellyfish.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jesscharlie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jessecharlie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jessecharlie.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jessecharlie.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jessecharlienaser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jessenaser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jessenaser.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jessenaser.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jessiecharlie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiaty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "job-chocolat.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johnnybetstaging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonesfor.men", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonincharacter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jw.fail", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamp-kisten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kdistech.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ketoliv.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingsvilletexas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klapib.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krusic22.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kusasa.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladymakeup.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lanparty.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasept.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lecannabiste.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lelo.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lor.kharkov.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovejms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucascantor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukaswiden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m-epigrafes.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m-hydravlika.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m-office.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mahalaraibanda.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailmerc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maleevcues.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mapado.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marco-reitmeier.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcoreitmeier.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariasavchenko.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marylandtraditions.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maunium.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megayachts.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minibaggerverleih-aulendorf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "missmaid.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "missmaid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mmhome.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mmphub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobilidadeurbana.ind.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monroe27.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motor-agro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motor-agro.kz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motor-agro.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygedit.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygedit.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygedit.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naia.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naql.om", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nealvorusphd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nibletllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obuchowicz.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okna-vek.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olafvantol.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldpc.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opale-concept.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otiumtech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p-store.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paisleyandsparrow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parcoursup-nouvelle-caledonie.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "part-of-that-world.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pheramoan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pherologie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pheromoens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pheromonez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pheronomes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pheros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pheroz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pippenainteasy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piraeuspress.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planeta-deti.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plastdesign.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plavdoma.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prommontag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protectionformula.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protic.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prowindow.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psasines.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psinergy.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psinergyhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psinergytech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qei.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qrz.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radioduepuntozero.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reitmeier.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "renehsz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "repauto.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "repin.in.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revolware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ricardojsanchez.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rs200.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runetracker.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sadkodesign.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safethishome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sainzderozas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saltsugarlove.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sapiperelining.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sat-kw.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secinto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secrethub.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "security.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sellwithsquare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senergyconsultants.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siberiactiva.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siddigsami.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sijbesmaverhuizingen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sk.tl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snipl.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soap-teco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soloinfo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sparklingloungecampiglio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spe.org.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqap.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqclick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "square.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "square.engineering", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "square.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "square.ly", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "square.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "square.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squaregift.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squaregift.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squaregift.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squareinstallments.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squareinvite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squareinvoices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squaremktg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squareregister.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squaresolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squarestagingexternal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squareupsandbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sterohouse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stilingavonia.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoildaaliyski.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stpatsschool.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "streaming-download.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuartcrawford.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studioavvocato.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "super-puper.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surthriveak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taoaworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tchealers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techzero.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecnoblog.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teplohod.kharkov.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terres-et-territoires.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebrainfactory.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thinair.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiance.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tipsypresent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tksainc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobiefornerod.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totalofficeclean.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transes.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transservice.net.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trendparty.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trictriceletrico.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truckshina-plus.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truewateraustralia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ucdap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ucibt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ukrapak.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ulys.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upscope.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varda.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viaggivistos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villa-toscana.berlin", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villawirz.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vipmdh.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtubox.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivalajack.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vlajo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w3d.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "washabich.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "widecontrol.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldvisionsummerfest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wrap.in.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "www-pheromones.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xeerpa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn----7sbbgbr0arxb4a4exa.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--90aij9af3f.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--zsr042b.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xnativi.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zklokotskehory.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1voz.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4played.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4played.vip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ae86dy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airfocused.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ais.fashion", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allenarchive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archauthority.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "argrafiche.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arkenstone.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asokan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azadliq.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balkanpharmstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basementwaterproofingwi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bebecar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beitmidrashrambam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bergman-gmbh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bmbfiltration.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boston-sailing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brucebenes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "champagneandcoconuts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cherhenri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chilbert.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claimspharmacy.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claretvillans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "communiquons.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpsecureapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darkleia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datakl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidlindekilde.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defiant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.cagliari.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnns.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dobreoknaszczecin.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dokee.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dovizborsa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duboisinvestissements.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eagar.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecocuisinedesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ekimaeseitai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epost.pub", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "express-hosting.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fantastici.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fantasybet.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fascat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fed-shashek.spb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferestre-bucuresti.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferfer.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeinfos.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia-tr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamberorotto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genoveve.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlent.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlent.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlent.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlent.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "germistonplumber24-7.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gooch.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grahamleeonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groundsdirect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gununsesi.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gununsesi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hankoreas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hazelhof.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hegartymaths.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hitflow.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hjelpemiddeldatabasen.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoopshabit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hpic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imphotep.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infopico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inu.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irina-beauty.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janv.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jessecharley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jessecharli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jessicharlie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jessycharlie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonaskoeritz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "json2bot.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jupiterchiropractic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k123123.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k234234.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karmaful.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katio.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevinfumbles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiwitastic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kwadraadtevredenheid.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laobayy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasercareestetica.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laylo.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lemat.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "levis.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifeeducationqld.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lornabenes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovessentials.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovink.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luxeturf.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mafia-penguin.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maigesellschaft-lammersdorf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makepro.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattcronin.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mau.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mau.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxiglobal.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metadedi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnkwadraad.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musicvideo.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nellydallois.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oakshield.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ofertaviva.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oosm.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panamarealestatebrokers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkercs.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peter-r.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pilatespt.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pistonpowered.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixiin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pmcouvrie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pmcvinyladditives.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "printmet.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pursuingoutdoors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pwg-see.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qpaypro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainbowswingers.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regazofotografia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rentandamiosycasetas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rouair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saito-koken.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scholz-kallies.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sheltieplanet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shoejitsu.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sindominio.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skydiverecuador.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skypefr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smmpanelweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soaringdownsouth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swipedon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tableturnrms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tas.best", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecfleet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teddykatz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "templars.army", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theawesomemuse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokyotimeline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trainoclock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unifashion.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videograb.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villaville.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vixonline.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vsec.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weddingwire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wewitro.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wispyon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wittgen-kfz-technik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worcesterpethydrotherapy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worcestervetsreferrals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workinghardinit.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yumepolo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zecuur.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zoedale.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3dsupplies.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advokat-vvp.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrealand.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apexfacades.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asiaflash.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aspirevc-prod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awsnuke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barter.vg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bebemamae.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beerians.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belug.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berghuus.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bizgo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blastentertainment.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bookameeting.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bradenanderin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brigittaseasons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cave-vet-specialists.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cc98.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cfotech.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cfotech.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cfotech.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charmcitytech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cidadedossonhos.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clairelefort-architectes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "closecross.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comcenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coprotag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coprotag.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "costco.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crimebarta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crlna.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darkenluster.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datacenternews.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidlamprea.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dirtyherri.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dns.sb", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dromotique.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drrachellemeaux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edisongroup.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eriksen.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expopro24.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filtershekanha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fractionalciso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futurefive.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futurefive.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futurefive.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gameconsole.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamepres.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamereactor.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamereactor.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ganapati.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gemonite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genericdevelopment.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gevme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giancarlomarino.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goolnk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gooseberries.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grupoharbour.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hagbergmedia.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handwerk-digital-steinfurt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heiden-wir-helfen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "henrikjuvonen.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiledge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ian678.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imagevillage.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infihow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jbdesignfoundations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jimcoggeshall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jischool.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmstfv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jocelynjenkins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "journeytoascension.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpst.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jsjohnsononline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klabnik.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klabnikova.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kolibrikapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laceleste.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laoriginalfm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libreho.st", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "machinebazar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marmaluot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masterdrilling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthewkerley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "media-store.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meherpurnews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercatoitticosbt.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelbeer.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michal-klabnik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michal-klabnik.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michalklabnik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mycoldjet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanodynelabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nationalcybersecuritysociety.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordlocker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordpass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordvpn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "octane.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinemagento.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orpheus.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pasito.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paylike.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pers-hr.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plus15.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pochoden-praha.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pragmatist.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "precisionclan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proibidoler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reinascba.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reinotools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remonline.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rumahminimalisoi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rungutan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s6o.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sairadio.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saisecure.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sashleighaust.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "satellitetv-deal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schizomatrix.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serdarwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shahyadmusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "she.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shtaketnik-metall.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sindlerova.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sindlerova.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sologoc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "souletter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steppingoutinstyleonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svenskmediabevakning.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taotic.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tarotsgratuits.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techday.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teleportweb.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tenfeetsquare.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thesimplewebcompany.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theviolenceofdevelopment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobyx.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobyx.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobyx.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torstens-buecherecke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truthdancer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twitcker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uptoplay.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uticagravel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitavista.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrgametrailers.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wplibrary.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xyzzyyyz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yearli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeit.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeit.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zum-ziegenhainer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "133769.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "222138vip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "33138app.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "33138vip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3cbalance.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4smart.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "50ten40.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5132vip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ab91corp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aclandia.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adi.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adi.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adinternational.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adriatic.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "age-encryption.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agencesaintpierre.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albergolafiorita.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpha-shop.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alziamoiltetto.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrewwiggins.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "androidtcpdump.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andyson.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anonym-surfen.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arco.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcticwolf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arex-corp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aridhia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arthurdejong.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asr9k.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belgie-postcodes.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biogaspuxin.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "birthday-to-you.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluestoneconstruction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "breakerlink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bregnedal.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brk.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buildingbitcoin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cadmechanic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cafe-pauline.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camberford.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camptuk.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catherinejflee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccgx.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centella.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certificazione.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chemolak.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "circumstances.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ckenell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ckennel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ckennell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "club.zj.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "code-maze.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collegephysicsanswers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compalliance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comparetheproject.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coolcomputers.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "costco.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "costco.co.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "costco.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "costco.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "costco.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "costco.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csodaorszagovoda.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubyhome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cupdunarea.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cvj.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dailydote.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danclassroom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dansk8bit.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darfurwall.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datensalat.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daygametraining.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deconstructind.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delfi.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derf.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derpibooru.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diamant.family", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diamant.nyc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalgeckos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalradio.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.caserta.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dleet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolciariasimonini.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dottormarc.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doubtaboutwill.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonreal.estate", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drexelwood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drikuansvarligt.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dromax.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drtimothysteel.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drtimothysteeljournal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drtimothysteelnetwork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drtimothysteelresults.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drtimothysteelscholarship.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drtimothysteelvideos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ducksify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dymdajce.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-bap.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-bookshelf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecologica.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eewna.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entorangecounty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essentta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurmarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurseo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evelyndayman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evobox.store", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fac.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fast-events.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feelgood.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "felixbrand.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhm.duckdns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finexo.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fontela.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foresightbusinessservices.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forum-batteries.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotobodyart.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foxghoul.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fragdenstaat.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fratelliscarrone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garwoh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gemelen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glassochchoklad.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glit.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalizationpedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gordon-reid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorlani.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorlani.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graphicbuffet.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h11.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hbelectricsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herkelmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "highinthemid80s.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hohenpoelz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoorig.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hyundaisrilanka.lk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icyrock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ikfloreer.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilbiscottificiodipamparato.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "illavobuempliz.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immanuellutheranmedia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immense.ly", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indexsalaire.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infofamouspeople.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infomax.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interconlarp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intracdf.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iqtechportal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islamicarchitecturalheritage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iyn.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izavel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaeger.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jed.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jedcg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeremywinn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeremywinn.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jldrenergysaver.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobtread.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johlmike.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonahburke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joshdiamant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joshuadiamant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kemand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kernet.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiesuwarbeidsrechtadvocaat.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kimai.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinshipnd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kitseliit.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "korfbalinformatie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kos9078.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krug-munroe.wedding", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lacasadelours.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamnea.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "langapi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ledensite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legion.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "levidromelist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifesavvymedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linuxdashboard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linuxforwindows.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liquor.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liveitlogical.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lmasqueen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lostinfood.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lottodatabase.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luckycasino.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lumenapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lynnejeancleaning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lyrenhex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "majameer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masterkitchen.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mavenvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mbedcloudintegration.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melanieschweiger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mellonne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercedes-benz-arena-stuttgart.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metacompliance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metasurfforecast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michalis.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minhng99.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mma-records.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morgandesort.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morningbird.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motherearth.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mqbeauty.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "murster.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "museumwaalsdorp.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mwba.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myodysi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nadlerdentistry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanjiyy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naschenweng.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naschenweng.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncli-design.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "needrom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "negoya-shokai.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neneko.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neochan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neochan.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neoko.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nidhoeggr.duckdns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northbengaltourism.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novel543.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novobi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nugmanov.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nunoleiria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "o3ptitschats.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oadeo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ocimumcdn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odatakao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ohmyunix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oiahe.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okchousebuyer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldschool.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onionyst.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opencrm.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openhistory.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ornua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osrs.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outline.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outnow.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p-soc.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacecounsel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pagenstedt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palaubluetours.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkerforum.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkerforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peenor.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perlbanjo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petherwicks.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pferdesportclub-chiemgau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phbits.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phc-sa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pick.aw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pickaw.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pickaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pickaw.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pmbc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pompeii.tickets", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potreningu.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerbi.istanbul", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "promocjedladzieci.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "promotech.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostoporno.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pump19.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qcuarto.com.py", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qlcvea.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "racesimscoring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainbow-web.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainbowloompattern.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainbowloompatterns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recordmeeting.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rockernj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roll-bakery.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rs.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rte.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rteplayer.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rteplayer.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runescape.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rustls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rustls.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saathi.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safenetwork.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samisoft.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandra-perlbach.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scatterscasino.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schuhzoo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottishcca.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scoutingtheworld.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sectember.events", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securesystems.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servertutorial.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfvonline.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharedgoals.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sherpnortheast.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siccardisport.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sieuthithangmay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sifuondemand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simcongroup.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skxpl.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slotmad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaltimentorifiuti.napoli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartdb.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartrise.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonate.jetzt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spaceanimalnutrition.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sprintkitchen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stabilimento.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stansweather.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stasiniewicz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statusmachine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stclairvet.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steelsoldiers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiebel-eltron.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stiebel-eltron.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomstichting.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stopforumspam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "streepjesenstipjes.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sublimetours.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumiko.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swiftcom.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talesbazaar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tax-brain.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tech4greece.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techmanstan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terracom.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theantisocialengineer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebroadcastknowledge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thejunkfiles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thesunshinecoasttourcompany.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thuyetphapmoi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tillwalldrug.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tmf22.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tnrf.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tottoya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "townofmineral.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tripsided.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trixiebooru.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyres-price.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upguard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upr.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vacation-croatia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valkohalla.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vapteke.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "variable.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vcacursus.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vip-6132.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtwen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitrade.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivaiocolombo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vizion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vkirienko.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vpnmag.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waqood.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wbca.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webmenedzser.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webminders.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webpixelia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weirdgloop.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westcoastmotors.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wg-smue.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikipedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windmillart.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodyworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worklinepc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xav.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn----7sbbq5b0a1c.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.al", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.amsterdam", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.ax", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.com.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.com.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.fo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.gmbh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.je", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.limited", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.london", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.mk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.moscow", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.paris", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yarnsub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zijinbor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "077969.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "247naijabuzz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4vio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7th-heaven.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accademiaditruccoblog.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arbavere.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archival-services.gov.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archive.gov.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bett1.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bett1.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bett1.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bett1.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitrefill.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burzcast.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathy.best", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathy.legal", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathy.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudzentechnologies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptool.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csvplot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "culturelivresque.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danhotels.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danhotels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denhotels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denverbph.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eva42.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "florian-knorn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futurestyletiling.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gomasy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gplvilla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groundspan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gtagames.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harshee.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herkel.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herkelmedia.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hlz.mn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hp-lexicon.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hstudio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "http3.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ippo-juku.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janey.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonasherkel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kathy.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiwee.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krimikiosk.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakeview.photography", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamdav.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linafernandez.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liuqiao.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loader.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locallhost.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukersallamericanstorage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luzi-type.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mankier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marulaweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdpparish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelklos.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mijnnaamdag.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msieursvp.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mzitu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neapi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninkt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nouveauhosting.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odyssey44.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otakurumi.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pano.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pasquinelli-truebag.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penguindrum.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "platypiduses.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ponpon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raynoonanwindows.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rddjapan.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revivemoment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richardinesrolltop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rottie.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safehero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sans-hotel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfpebblesstones.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skpracta.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartstep.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smh.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speciale.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starinc.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startw.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steffi-knorn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swynwyr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tableres.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techraptor.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teodorpravicky.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-busbys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thekuwayama.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watertorenstraat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wdmcheng.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winancreekbarn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "www.edu.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaprefy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "01.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1eanda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "51cls.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a1demolitionhauling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abbtw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abstimmen.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acpica.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alimentsduquebecaumenu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bayer.earth", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridgeforcefinancial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bushfirerecovery.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cabooneconstruction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "circus-maximus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudindex.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colabug.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "curvemedia.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyrano-books.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datumplus.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "douzer.earth", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ellhofen-peccioli.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elradix.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fatiguesyndrome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fauwater.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globaltiendat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glosiko.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldenyacca.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gtupgrade.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "halloweenmusic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hallspumpandwellservice.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huntyourshitaround.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i7.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilab.health", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iletisimmakinesi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "image.hosting", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impactparcels.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impactparcels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ineffect.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joyousisle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jrstehlik.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justacoupleofclarkes.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justninja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kadenba.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kitchenpad.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kitchenpad.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kitchenpadtimer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kotmale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leonvermunt.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesalpinistes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lianglongcredit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lilith-magic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maisie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malcolmellis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martemeo-wetterau.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthijsvos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthijsvos.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mayblossom.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meherbaba.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "memoriadeunaciudadzccm2019.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milesdewitt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mintplayer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mojekonsultacje.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moviro.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncrypt.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noosxe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "officevibe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osto.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palmbeachcuisine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pano-guru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panthenolplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paparazzie.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pavelfucik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pavelfucik.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pavelfucik.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petherwick.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petherwick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planettimer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pm.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proxmox-airsonic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qdstationary.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qdstationery.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiq-url.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redwater.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rkbegraafplaats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal71.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal72.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal929.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubidium.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sardinianvillas.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saxis.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoolofequineshiatsu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servermacher.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skalis-portage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smarthealthinnovationlab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonomacountywriterscamp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stehlik.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "study-support-beans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunrichtec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tannerdewitt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tech-mfoda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teletxt.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teq-automotive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tewkesburyyoga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texteditor.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tocasoft.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomvst.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vault.investments", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "velocityfiber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villagemagazines.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warupu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodcat.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wwweb.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xamax.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yule.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "z4-forum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeihsel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zfxhzc.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zilv.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zkwolf.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zohra.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zondervanacademic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1me.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "24gazette.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niusurl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4cavaleiros.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adventurealpinetreks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adventures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advisercentre.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airventilation.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alacritylaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albionfaeries.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amigosencanada.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arraudi.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asm.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bastter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "battlerealms.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baytv.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blixtv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluepoint.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bogs-consulting.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bread.fish", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buongiornolatina.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cake-n-go.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "californiamusicacademy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chipdig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chukwunyere-chambers.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citacepro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clickalphaville.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudturing.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cluster446.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "covert.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctir.gov.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyclonedesign.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielve.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danilov-abrosimov.org.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davedevries.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidzimmerman3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deejayladen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "definingterms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dibal.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digchip.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digchips.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disboard.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazionecimici.napoli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domacikavarna.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dordtpas.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drivedavis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-node.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echinus.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eeeeeeeeee.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ei-bo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emergencycommand.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "empreinte.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epsi.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etkarle.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ewesparky.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyy.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ezrohi.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fajode.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faststage.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finprison.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flfl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flipsidevr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foxycredit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funidelia.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furca.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamingterritory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garden4less.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekeries.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goudt.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happyandrelaxeddogs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hastyllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homedentist.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostpoint.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilctucson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inspirez-vous-sophro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackal-cogito.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "javaxxz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jesseblum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johnathanhasty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonohewitt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jswebbdevelopment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kelleycurran.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinualive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klusbedrijfdupau.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laanius.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lacledeslan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ldts.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lecatal.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leendebroekertfonds.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leybelsgarden.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkstagr.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lunares.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maksoud-karim.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mappingfutures.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcopolo-restaurant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meddin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikaelvesavuori.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milcarteles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "misfit-media.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n-design-service.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nagoonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natlec.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nieuwsfiets.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "njcareers.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northwoodstudios.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nwh.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onthegosystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orbeimaginario.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oshea.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outshinesolutions.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacificarperu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panzdravi.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parachuteteam.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pedaleuse.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "personalityjunkie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phyllischerry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pressspace2hack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pressspacetohack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychopathtest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiche-quic.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rennes-bachata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rennes-danse-africaine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rennes-danses-en-ligne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rennes-hip-hop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rennes-lindy-hop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rennes-reggaeton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rennes-rock-6-temps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rennes-tango.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rennes-yoga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rikuras.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roed.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roeden.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rovota.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "say-it-loud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sccd.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottrae.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securitelandry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sejageek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seowerkz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shoptio.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sigmasensors.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skypech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sr88.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sr88.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srae.me.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stevepacheco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sttl-topographie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuudium-mail.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "szotkowski.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tauran.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terrasoverkappingvillage.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefussyeater.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehasty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therapyclient.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therapypartner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tmbergtmberg.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tmbergtmberg.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tmbergtmberg.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tmbergtmberg.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tmbergtmberg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toolset.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-frog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tproger.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turm-umzuege.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uid0.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unionlife-net.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unlockscheveningen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upakweship.eu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upakweship.uk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usctt.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vaniola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vato.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wizadjournal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wizathon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wjb.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workahealthic.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workcost.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workupapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpml.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ximes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80aebbkaqx6at.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--dviz-5qa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xormatic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoogirls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zusterjansen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "365.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abetterdeath.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abi95oha.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abrah.am", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ag5761.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ag5933.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ag5967.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ag6675.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ag9815.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amberwiz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anamelikian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ararrl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ararrl.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artj.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avanpost.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ballettstudio-ost.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bech32.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boschveldtuin.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bundesverband-krisenintervention.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bundesverbandkrisenintervention.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casamentos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceska-polygraficka.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christian-oette.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cranenburgh.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cranioo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crowdstack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutz-gruenwald.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutz-isny.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutz-oberschwaben.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutz-ravensburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutz-wangen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutz-weingarten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defamiliehagen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delicon.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni-sardegna.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmilb.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dusty.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dutchassistancedogs.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggendorfer.wine", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elettricista.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "encontroespiritadeinverno.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ergaomnes.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faked.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ffp-survey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fh14.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fusionapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fusionapps.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genbars.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glutenfreeandtasty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "halovanic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hangarbox.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hooghiemstrazelf.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humansense.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iblowdry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immedicohospitalario.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infra.beer", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infraget.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jakobs.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jb0.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jfvaccountants.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jimkimmel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jnssnfotografie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalhufvudet.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kathy.best", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keeley.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kpnthings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kreuzwortraetsellosungen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krisenintervention-deutschland.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kriseninterventiondeutschland.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leon.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "librairiezbookstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linguatrip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liulo.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loonbedrijfdenboer.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuelraimo.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markfisher.photo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markoglou.com.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "massageandwellbeing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mccordscvs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcvs.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medunovi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "missionpuppy.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mmichaelb.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moove-it.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mountknowledge.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mycrowdstack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nedermisp.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nully.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ontopoflove.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overlord.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palessit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pipscprd.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pomdoc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poquiloco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puredns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabbit.finance", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realm-of-shade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "repairit.support", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "restaurant-eatenjoy.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retinacv.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubenpeeters.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanates.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sapuseven.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seminarraum-isny.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sequachee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shipmonk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smlk.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softskills.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standheizung-shop.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stevenkendypierre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stjohncamden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "striata.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "striata.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tactical.zone", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tferdinand.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tgtw.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tkmr-gyouseishosi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobiase.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torremarsalou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "up-stage.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upakweship.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uzay.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vanuithartenziel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vizedia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vleo.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wildfoxlady.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wippie.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiseradiology.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "www.gov.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--pascal-klsch-cjb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xoan.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yn.org.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yokoda.okinawa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zupit.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "120percent-inc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "403page.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4mama.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "6thmarch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aandachtsmeditatie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "absoluconseils.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "absolucopine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "absolugroupe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "absoluphoto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accessnetworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actioncutprint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adnotam.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adotta.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adregain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adregain.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aebleskoven.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afbrunswick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afc-capital.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aflattr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agencybeam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfiebarker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allgemeinarzt-wenta-bralla.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alluremedicalaesthetic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alunara.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amethystwebsitedesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amvisualgraphics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anabolitics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annynantasiri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antianti.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apix.uz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "app-scantech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appmeucredito.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcadegames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artificethefilm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arvyncerezo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awinninghabit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axearrow.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azl-app.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backspace.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backspace.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badge.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "becausecapitalism.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "behaviorchangeimpact.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belfix.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benulekaren.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-photobooth.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestseo4u.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beyondauth.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bietinidesign.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binairy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "birosuli.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinheaders.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinseed.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitsellx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blairmitchelmore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bogs.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borgoaureo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncearoundinflatable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounceroos-bouncycastles.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounty.fund", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bounty.software", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boxtub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bramhopetails.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bramming-fysio.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brooklyntheborough.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buffalowdown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c3boc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c3soc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c3speak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c3speak.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cabina-photobooth.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calim.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capitalmedicals.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carre-jardin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carsinsuranceis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casamiento.com.uy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casamientos.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caselemnbarat.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbxp.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaoscommunication.camp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaturbate.global", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkmedia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearlakechildrenscenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cm-agueda.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cm-portimao.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coderjesus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colocation-rennes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colonialfurniturestripping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "columbiascaffolding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "community-pro.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "community-pro.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computerbas.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connelink.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conrazon.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "container-kormann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contaminatie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coredns.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coveragecareservices.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "critical.software", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryoflesh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptofomo.capital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptofomocapital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crystalblockchain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cultrix.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "custosd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "custosd.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "custosd.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "custosd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyprus-company-for.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d-vision-create.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielhurley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielhurley.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielhurley.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielhurley.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielhurley.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dartdriving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidmlujan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "de-groot.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delirecetas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deliverability.guru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dentaloptimizer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dentaltalent.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dentalturism.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detiklife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detroitjockcity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "developingtheworkforce.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devignstudios.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digchip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digchip.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digchip.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazione.napoli.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diskussionsbereich.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolcett.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dom.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domain-swiss.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doyo.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragon-hearts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragon-hearts.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drivecrestwood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drivedannyherman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drivedmbowman.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "driveforadtransport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drivemorganvanlines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "driveoakleytransport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drivepaultransportation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drivestarfreight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dubridgeweb.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dust.bio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dwhightmolina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echotango.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eddie.website", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "efp.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eichinger-stelzl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ejderrapgott.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elartedelapaz.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eleken.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elettrolinkimpianti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elmahost.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emalm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "engi.fyi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "englandbeach.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estudosnacionais.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etf.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eth-services.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evange.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everysync.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evxp.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ewanto.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exeypanteleev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "explorea1a.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyespecialistsofla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "face2faith-vechta.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feedtube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fermanaghomagh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fightinggobbler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filmdirectingtips.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firecask.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fish2.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitbase.fitness", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitcamp.fitness", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fixedtoday.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fjsb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flomedia.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fomo.af", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fomo.exposed", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fomo.trading", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortresslinux.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freelance-webdesign.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fruxnux.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fujiyakimono.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fun-club-35.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funtastic-basketball.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furisode-yamaguchiya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamerwelfare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gavingreer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getbootstrap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghostwritershigh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "girl.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gitns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gitns.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gitns.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gitns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gitns.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gitns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gliagrumi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gmgard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "godofredo.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gometa.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gomods.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gopkg.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grandcafeatpark.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grosser.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groupe-erige.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guerra24.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gusli.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gwy15.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haakonbecker.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackerspace.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hardwarelog.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hardwarelogin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hauspie.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hausverwaltung-motsch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdview.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellobee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "highwayzen.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hjallboscoutkar.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hjdiaz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hlidani-tornado.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hnsseed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homestead-honey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoogelandzorg.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hothub.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hughfitzgerald.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icepharmaceuticals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ideefactory.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "incontactmetjezelf.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indianhelpline.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infojeunes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infotekno.co.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrareader.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inovigo.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inzichtmeditatie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islamqa.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japanesque.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jarett-lee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jarrods.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jedatw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johnopdenakker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jumpnplay.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kanzlei-hhh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaplanco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kasasaprotect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katazuketai.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kfz.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kfzjeugd.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khaotipthai.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kielux.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kimono-furuya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kimono-hishiya.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kimono-yamaguchiya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirkintillochbc.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kitsuna.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kkcsc.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuba-orlik.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kultur1.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuscu.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kutekeiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kvhv-brussel.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lagracia.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lampco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lan-divy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lan-divy.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lareginetta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawportal.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lednavi.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legendwiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "li-n.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightningseed.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "limecho.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "limehost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "link-man.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkwater.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liuqiao.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liuqiao.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liuqiao.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liuqiaolovecaonali.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lordusa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lostproperty.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m-h-b.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maden.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mansora.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariejulien.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marinat.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mastercomfig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matrimonio.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matrimonios.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maximemichaud.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcsteve.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meinforum.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menurutparaahli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mettin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meziblog.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miguel-platteel.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milanvit.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milehighmaniac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mileyweasel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minicampingshalom.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobincube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moreshop.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mt-west.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "music-privilege.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musicgivesmelife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mybsms.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myersking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myforum.community", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypharmjar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naut.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "networkuser.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nineteensixtyone.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nishiyama-shoten.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nlc-business.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noussommesluniversite.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.capital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.foundation", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.holdings", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.productions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.properties", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.team", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.technology", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzt.ventures", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztcap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztcap.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztcapital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztcapital.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztcapital.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztfoundation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztholdings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztproperties.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzttechnology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzttools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzttools.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztventures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztventures.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nztventures.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "observer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okkur.community", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okkur.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okkur.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okkur.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okkur.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okkur.team", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okkurlabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oktave.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omaharoofpros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omega-intranet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinedivorce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlineporno.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oonne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oorbellen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opensource.fund", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opensourcesoftware.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ops.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orangeacademy.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oyama-conf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p-art.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pdtech.ltd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pem-jp.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfish.zone", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfonks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "physioteam-franz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pillowcast.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piprotec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plastic2print.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pm.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pohatta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powertoolsrater.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ppissis.com.cy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "precisioncoolingco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostoporno.zone", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychometrictests.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychometrischetests.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychotechnique.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psykometrisk.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pszinfo.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "publixphere.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pythonhosted.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qiaohong.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qpsinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ra-schaal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "red-train.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rediazauthor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkur.consulting", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkur.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkur.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkur.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkur.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkur.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkur.team", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkur.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkur.technology", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkursolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekkurtechnology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rennes-blues.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rennes-dancehall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rennes-danse-orientale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rennes-pilates.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rennes-salsa-portoricaine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rennes-salsa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rennes-valse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rennes-west-coast-swing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rennes-zumba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "renut.com.np", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "repgad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reposeed.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reposeed.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resumic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resumic.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resumic.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resumic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resumic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rimonhwang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robinminto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rocklinhousecleaning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rommelmark.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosakkreditatsiya-forum.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rostlau.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "routeto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rozar.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rtlspiele.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rumahpropertigratis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryandewsbury.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salekaz.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schorel.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schrok.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seadrive.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seetheprogress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seetheprogress.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seetheprogress.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seetheprogress.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seetheprogress.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sekkom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "self-signed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seonoco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfera360.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shareasale-analytics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiftcrypto.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shortaudition.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shortaudition.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shortaudition.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "show-pro.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "showmeengland.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shrsl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silentinstaller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silvergoldbull.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simi-reizen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplechoicesuper.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sindastra.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snabbfoting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snabbfoting.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snelwegzen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socialblaze.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solautoescuela.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soliten.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonologic.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundmoney.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundmoney.page", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundmoney.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sourcecode.hosting", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "southernviewmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speedliner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sponsor.software", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stail.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stankingma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stankingma.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statelywork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statisticalsurveys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sterz.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steviate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steviate.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sthpr.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storjar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stp-ip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stp-ip.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stp.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stpip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stpip.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studiodelbenessere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studiosuracidenunzio.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunnyside-jazzclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superspeller.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sustain.software", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swmcfcu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sykorp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syna.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syna.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t404.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taartenvanthea.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tac-performance.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tagstationen.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talkingband.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teddywayne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teenringen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teletaxe.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tenthirtyonepictures.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terrasoverkappingvillage.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testspsicotecnicos.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thechandigarhcity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegrio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelivinggod.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thgstardragon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tilellit.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiltedscalescollective.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toolsense.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trackulo.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trainingminds.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transmutatie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trentinogenealogy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trummer.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turalt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "txtd.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "txtdirect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "txtdirect.dev", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "txtdirect.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "txtdirect.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "txtdirect.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "txtdirect.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ufopaedia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "undeadwalking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unibev.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniondeterapeutas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universellafredsdanser.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upgradeguru.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uponsel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "userbase.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vanhatten.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vegculinary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veritashomeschoolers.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinorossoconero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viwsec.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voddinteriors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vugt.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walldisplaysapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watersoul.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watersview.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webauthnlogin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "widwap.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiki24.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolfshoehle.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wp-webagentur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--c5w032d4vi.xn--fiqs8s", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--j1afcdm4f.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--mgbqq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--tgstationen-x8a.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.cy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtom.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yasic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yrcc878.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenmod.in.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zercutie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zihari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0cdn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "12345.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1v9.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aarsunwoods.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abemarx.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "achmazstore.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ad-notam.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ae86.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agari-mj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agilee.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aidaccess.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airfareshotels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajvocab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akerboom.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akmatrix.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alisondemarco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alteah.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altinea.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antopie.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "araqnid.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arest.web.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "associazionerimborsi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atkinshealthcenter.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atmox.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "authorise.computer", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "authorise.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "authorize.computer", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "authorize.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baixarvideosgratis.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baltimoreroofingservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bamsmackpow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basementwaterproofingsaintlouis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basicports.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basicports.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basicports.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basicports.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bdtc.com.bd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betbravo.et", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betweenthehills.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bijou.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bim0s.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binarypuzzle.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blinken.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blueyonder.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bobek.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouncykingsofleicester.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bretti.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brutdecom.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "by1u.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "byfare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c-14.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c7ra.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cafe-musica.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "campona.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlospiga.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casgp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccatpracticetest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celestialenergies.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centrodemioma.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "championbet.ug", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheapfarestousa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chumanskaya-uebersetzerin-russisch-englisch-deutsch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "churchill.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citakon.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudbreaker.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cluboc.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codestats.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coinmotion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colmena.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colostral.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cophumouraustralia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "copygeneral.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cortex-development.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cr1coffee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creati.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crossconnected.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daimonikos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danq.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darwinkel.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dashice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daxperience.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dcomedieta.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dctrl.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delikom.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dellasano.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dengg.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dennmart.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desmu.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dietpi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disableipv4.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disinfestazioni.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmclix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dotyk.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doyo.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "driveforartur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drivya.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drivya.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsswise.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtf.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dubrovnikfoodtours.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dudedood.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dynadns.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-receta.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eckotech.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecotecelevator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elgoog.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emergencyhvacservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "empost.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entrenossocialinfo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etheron.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everythingbarca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evolution.codes", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "factoriadifacil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faxitron.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fbfwd.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdp-alsdorf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fichajes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findinggenius.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findolino.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fiosgenomics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fishygames.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitandfightrijswijk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flatart.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flowscale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "force-unleashed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "force-unleashed.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forcebasements.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortebet.rw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortebet.ug", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foundrehotels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foxesofleicester.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freddythechick.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fucajz.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furworks.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gajda.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galenreasoner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garagenet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geohashing.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georgeslasaucisse.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gfgmmarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghobcars.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghobusers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "girljacket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gresik.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gxm5.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hangar4.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harlan.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hco4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heavycaliber.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homefarmhealesville.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hullscp.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hxkvm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hxkvm.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hyb7.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "identitykrisis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilimitar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imisto.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "incometaxbengaluru.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infojmp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inmusicfestival.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intalink.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irfs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ispro-ng.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j32b.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jan-bretschneider.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janbretschneider.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeffok.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jimautoservice.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jms8.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joglopark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "josephalexander.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "journeyofmymothersson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpilan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaggle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaik.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kawamura-inc.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevincox.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kilkennyaccountingservices.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirschgrafik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klempin.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klen.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knabstrup-autoophug.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kontist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kreditkarten-forum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kriyayoga.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kushner-cpa.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laesisvefurinn.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lain.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamppostpublishing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lastingsmiles.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "latanadelpolpo.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lazell.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ligadelconsorcista.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linuq.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logicnets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucia-riemer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lunulanails.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m-ast.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maggsy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malu.style", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuall.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marekherel.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martindales.ltd.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matildeferreira.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattbiscay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mbar.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdsglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediastroke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metablog.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meuhfolle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mgientertainment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miap.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelpmullally.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mimumimu.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobincube.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mojdom.ba", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monshoppingcestcalais.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moparinsiders.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morc.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moshiach.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moshiachtime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mta-sts.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mta-sts.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mybizzmail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myid.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakamastudios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanwan.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nathancrank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "navigo-inc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "navigo.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "navigo.global", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nefthy.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netsyms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newyoushampoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextend.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nice-autosurf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nonobstant.cafe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nosacheva.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notebrook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "npc.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nunoarruda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nutleyarchives.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldnorthbanter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oluchiedmundmusic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omarzunic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ombregialle.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orangesquirrelevents.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ortoemangiato.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otterupdate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "output.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p9d1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paireepinart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkcitycu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pascal-koelsch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passedport.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passedport.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passedport.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pathcom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paymongo.help", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peacefulrock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "performancematters.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petscams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pietron.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plzen-sadrokarton.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polymerclay.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porthys.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pospisilik.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "postern.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ppbi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prefabrik-ev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pretalx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "procsec.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prodottitipicidellatoscana.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progtime.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "q1z.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "queensbotanical.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quest3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qvq.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raadvanstate.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raccoon.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radekmazar.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redbaronpoolsupplies.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reiner-h.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rennes-rock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reveal-sound.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robbievasquez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roynuesca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rpora.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruhigehand.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruimoreira.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruse.church", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rushashkyfond.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russian-knights.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s-culture.co.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s5g8.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s6jl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sa-mp.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sauerland-rundflug.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoenstatt-movement.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scott.cm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scouting-kontiki.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scoutingkontiki.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searx.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "securegate.net.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "septictankpumpingservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sertaovivo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shipmonk.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simpleports.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simpleports.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simpleports.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sinkhole-florida.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siranap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socstation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "southernforge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sovereignartfoundation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spiro.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spit.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sporthouse-valdisere.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spotonlive.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startupswitzerland.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steinerkovarik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sthelen.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stileapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "survivebox.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "switchur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t4gh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamboa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxi-meridian.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcspartner.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcuprs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techlearningcollective.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telecallsrl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tervelde.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecheese.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecorianderkitchen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefabulouslifestyles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiandixing.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tilysthings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timesheetcomics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timespace.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torisamaahirusama.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "touchweb.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "touchweb.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transparencynj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelsets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travishenning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "treedoctornearme.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trojanherring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tview.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twfwd.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ty0m.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uc4h.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unitedbusinessbank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "univaservizi.academy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upsdelperu.com.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uq1k.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ut5s.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utopique.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valentinog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vektorparts.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viditour-golf.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viditour-zorg.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vkh-online.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vultrhxl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wacken666.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waveburst.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wcally.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webviewcams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wedeliverdavao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whisper-net.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winserver.ne.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wkberg.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodlandwindows.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldaccord.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wozwebdesign.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "writerimranc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xavio-design.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xford.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--gu1a.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yj4p.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zakcutner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zango.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zmaloveane.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zumba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "110cl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "110na.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "158bg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "162cr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "162ea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "220220.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "22ccaa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "22momo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "22tete.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "256br.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "26bbc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "26ck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "26uuu.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "26uuu.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2nimpresores.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "34bg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "34ja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "34jw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "34nh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "34nj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "35uj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "369dp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "369eq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "369ex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "369rr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "46bf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "46bl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "46fn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5e.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "600cao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "63fg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaronmaar.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adspu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ai2-jp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrewtaylor.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anex.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aniwatch.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcza.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcza.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ascar.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atec.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atelierjs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autonewsreview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autostramites.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badnjar.rs", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "besiktasmtsk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bimsynergistics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blanx.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bou.ke", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brownandjoseph.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "btddd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "builds.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cafethevibes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheapmarina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chsamuel.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codefaq.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "countrymountaininn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coworkanywhere.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "criptofy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dastelefonbuch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delvinoadegas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delycate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalcarbide.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disenowebakus.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dorwartsgarage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eden.bz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eiber.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elsenzhafen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "equityelevate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eremnews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etherandir.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethereal.games", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faithfulroad.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "festrentcar.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstgradeframeofmind.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitnhot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flatsurfers.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floralin.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foochia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galvincdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getstat.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "girlsbar-navi.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldengatesports.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gouplinkit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenway-moving.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gumbo-millennium.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gumbo.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gununsesiaz.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackforgood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haixingyun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hersmartchoice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "highlandpublicschool.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "himalayanoutback.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icap.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilovecomputering.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impresapulizie.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infinitybooksindia.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ip.dog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irenelove.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackwarren.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamiehansonyoga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japlin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jdtangney.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jetular.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jetular.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johnex.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kandwliquor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kantoorboel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keepingitheel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kesslerandsons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kikoskia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinderlachen.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingsgategrease.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirina.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiweeagentur.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kokyu-caba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livingtohearsix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lumieredesoy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m7rxx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mallgastronomico.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malsignature.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melonhub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mental-check.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meulk.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meyer-horn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mnrv.trade", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mountainairandheating.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrbighungary.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "national.co.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neosys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newgle.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ngawa-avocat-paris.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nizozemsku.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noriskit.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odxin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outrider.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p7jl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "papastratosmazi.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "picsastock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pn.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podd.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pomadgw.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prospreads.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prox.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pspenvases.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qkek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantrix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r72w.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ravne.land", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redcapital.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regtify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rpguru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoutenseo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secure-consult.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seismas1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sigint.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sostm.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spantrix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spotifyfreetrial.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stevenson.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strategicpartnersmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studentsfirstnb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tascout.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technicalhelps.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecknologg.website", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terrapinstationmd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theolodewijk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therattrick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thesacreds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thinkbrands.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thorsten-schaefer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totalityservices.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelgirlsclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trenta.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "victorique.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wilomark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wmi4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worksindev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wwwhackeronecom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "x-way.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yigelangzi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yr.sa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "z2a4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeglujemy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0x12.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0x22.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0x53.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1bitcoinprice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "247xchanger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5000164.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5000164.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adfisicateca.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advancedheatinginc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alifeadjacent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amp-logistics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrewmichaelsmith.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angievancise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baity.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beleadsteam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benthanhtourist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beverleycounselling.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bladesofteal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blightnightgame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blivvektor.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bogdanbiris.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brisbanecashforcars.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calibreapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carbuzz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cardiaccane.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chou-chinois.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dallemon.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dampferchef.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutz-luebbecke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datenschutz-recht-medizin.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datingonlinecheck.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidking.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disciplescloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drenergysaverpdx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drenergysaverpnw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dropping-seeds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dspretoria.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echosystem.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eg7.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energysaveroregon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enquetebeteiligung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entheorie.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erudio-usluge.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eu-prodaja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everysaving.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finfleet.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flirtportalcheck24.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foxtransportables.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fratiicazanoi.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeskateparks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fundacionfade.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gillettepromociones.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ginitaly.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goodhealthgateway.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "growinghumankindness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hallighof.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hebamme-sabine.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hemant.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hf51-domeinen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hitokoto.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hocoma.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hocoma.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hocoma.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoosierstateofmind.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hwholdsworth.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itotalaccess.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiangshiart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jztkft.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kay.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kazwolfe.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kcsonline.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kegan.lol", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krasnodar.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ksm.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laharilais.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landflair-magazin.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasittellecosmetiques.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ligne-roset.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liquidationyt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loantillpaydaydelaware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logimap.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marekkorlak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthewthode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthewthode.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mf-natuurfotografie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michelangelofoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minirizhi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moranyachts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musketfire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "najdou.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "narzedziownia.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nebogame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninsin-akachan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onetranslations.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oregonenergysaver.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patrycjamichera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pilatesstation.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playfrank.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plkeenecc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "postmoderns.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pradersystems.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "princetonradiationoncology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progolfnow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiz.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raymundo.doctor", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rcsda.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "room362.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shadefix.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steelshop.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stock-ai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strefapi.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studiomko.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suburbanpsych.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunsetnelson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taggermedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tempdatalogger.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehumanjoint.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thpatch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tnes.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tonyandskye.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transport-gura-portitei.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urbanon.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "v.ps", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voicesofspirit.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "walker-foundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "washa.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "welmo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu16.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu3.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu4.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu7.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu9.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinefarescompare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arnaqueoufiable.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baumfreund.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bio-feed.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bmotorsports.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bmros.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "br8.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandtechdesign.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bugfender.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candytip.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceyhanmolla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheapfarestouk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chowchowugo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christinecloma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codigojose.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coursehunter.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creadoc.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csszamotuly.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darrenlines.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dianas.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ditdot.hr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dojocasts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drryanstanton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dylanhansch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eac222.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "employersupport.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enotovil.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esforces.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fareinternational.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "femarelle.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flightscarhire.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotonza.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fractieplanner.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fraserengineco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garryserver.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hookahfoil.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostingsvizzera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoteldimorae.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelsfares.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houseofpheromones.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-volve.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infosactu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islandmenshealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juancarlosllaque.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keemail.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kitebowl.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klickinvite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laodongkynghi.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "latestairfaredeals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lecannabiste.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lecannabiste.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesmatinesdheres.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lopp.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mahurivaishya.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "md-progressistes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minuteflightdeals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitarbeiterbefragungen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneysmart.gov.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrd-rc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n8solutions.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanmu.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neurococi.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nic199.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nowzarimd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nybcreative.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pavelich.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pc-master.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rightducks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal853.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "satisfaction.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shaunallen.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strogov.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefaircottage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torwart-jugend.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "town-night.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutamail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutanota.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "used255.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-warrior.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webest.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whywelive.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xz0.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ymy.zone", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0x2a.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "30for30podcasts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu11.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu12.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu13.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu15.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu17.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu18.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu19.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "90splease.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abi-kurs.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abilympics.org.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "addictedtotravel.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advantageroofer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advasa.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aktuelleprospekte.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alliaancebiotech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpinedentalhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amasea.yachts", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ambersoftware.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animepahe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ankureurope.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "app3w.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appbot.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aqlivia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arclookup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atomictag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviapic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviapic.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviapic.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviapic.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviapic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviapic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axelr.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babyvillagegt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bachelorampel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backporchartists.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basamadco.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basementdoctorwestvirginia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basementdoctorwv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baukebies.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bearcreekcubschildcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beyondthepitch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bingohalls.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinmakesense.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitradius.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bo-rad.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bocada.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brasilwear.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridgesinbelize.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britofootball.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "broilertrade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "byskafasi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caalmn.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cannon.org.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caucasusandmercury.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chateauderoncourt.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciginsurance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "communityaligned.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computernetwork.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consumera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crushthelsatexam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crushthepmexam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptolocalatm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csdcareerday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cubocell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cumulogranite.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d4h.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dannywall.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delivr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desertfiredesigns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "designtrc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devslash.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diamondcontent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalgeek.social", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directfitnesssolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dosei.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dotya.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eac444.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eac555.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "een-eenvoudige-test-voor-de-maximum-lengte-van-een-nederlandse.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elitephysiotherapy.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emiliehouse.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "encircled.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enstroga.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entryscape.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erico-hm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esiefektivs.lv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f-csc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familiebies.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familyframeworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feiromo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fklegal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flylvia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flyn43.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flyxll.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fmjd64.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foiremobile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foundationmaintenance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friedli.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fussballtransfers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galexlee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garciam.gt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generalcustomshop.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ggradio.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalshares.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gofoodservice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gokazakhstan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gokyrgyzstan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gonepal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gotajikistan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goturkmenistan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "growthinbusiness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gruener-salon-bochum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gutterguardcharlotte.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guttershutter.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hby.cx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heckmann.photos", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hermodesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herogaming.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herold.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herold.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hobindesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holmesworkholding.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostathome.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hosuto.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoteldahu.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "how2recycle.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howdybikes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ichibanfansub.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idf64.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ienekolife.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imro.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infosecsw.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insomniac.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interactiveliterature.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iorgroup.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iqos.com.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ithot.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsm.tools", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itworks.nyc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jabagly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jettenjachtbouw.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "josephrichard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jrfortune.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jumibow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kebo.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kfoundation.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kidsdj.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "killerwebsites.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kluzza.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kooky.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kyosyo-jungle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lammertbies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lammertbies.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laube-school.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lazownik.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ldiesel.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leblancq.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lekkerleben.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesborgestv.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leticia.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lfcnsv.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libcip.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libcmodbus.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libcrc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libfins.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libhttp.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libpdf.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libscpi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linocomm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linocomm.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linocomm.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linomass.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linomass.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linoplan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linoplan.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linoplan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linoplan.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lunademiel.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lvfc.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailsupport.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manufacturingsupportgroup.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthewthode.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxley.yachts", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medcartoon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metasolutions.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mindbuild.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ministryofinternet.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mk.gov.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moec.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "money-spell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtabriz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muhafazakarkiralikvilla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mwms.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mychicken.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myfsb.bank", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myfutureself.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypet24.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "narec.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nawt.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "new10.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newagehoops.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newway.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nintendoreporters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oceanofpdf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ohiobrewweek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onetrust.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onmyside.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opencache.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opera.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opussystems.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ourgame.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pao.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pd2bans.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pepta.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pic2pat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pic2pat.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pictopat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pictopat.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinkplay.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pizzahut.co.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ponte-camp.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poolheatingsolutionswa.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powersolusa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poynter.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prestigeworldwidepr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psau.edu.sa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puhudefu.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qualitydns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quora.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiationserviceswa.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rajeshkochhar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rawfitco.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regaltheatre.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remiz.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revolutionenkommer.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rib-leipzig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripper.store", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rocketdashboard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roidsstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal84.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russandol.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schmiggywibblits.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "signature.in.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simple-test-to-demonstrate-the-maximum-length-of-a-domain-name.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simple-test-to-demonstrate-the-maximum-length-of-a-domain-name.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simple-test-to-demonstrate-the-maximum-length-of-a-domain-name.international", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplyfitperth.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplyheadwear.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplyuniforms.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sintas.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skoroff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sleepig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartrentacar.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartsprouts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snatti.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snorkelaroundtheworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snowdrop.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soderparr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spieka.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "splashstoretw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spleis.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqalogic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stacisezeptat.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stanglwirt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stickme.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuartcrawford.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "summit-humanpotential.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swiftirc.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syrea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taiwanteama.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamronhallshow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcyoung.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tespent.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teutonia-grossenlueder.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teutonia08.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theboardroomsubi.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefastmode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theowlclub.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theptpractitioner.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therivercrosswarwick.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thisismit.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timberjoineryperth.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinakay-photography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinyhousebarat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomove.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toplockshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "townforge.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trainingsecke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelphotographycourse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tricityhelpline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uoe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "v.pn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vdb-it.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viacheslavpleshkov.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vincehut.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visitationbvm.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vuelosabajoprecio.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vybavzahradu.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vyskocil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wc64.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-3.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websec.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wp-bootstrap.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wsrn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wuminhao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "www.gov.scot", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhabagly.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhuji.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0dayexploits.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0okmnbvcxzx.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1-pujcky-uvery.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "10000hits.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "10000rub.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "101st-airborne.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "101st.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "10mijlvanijmuiden.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "111novosti.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "11men.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1223.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1244.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "12nomos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "16valerienicolas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "17th-airborne.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1920.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1dollar.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1dollarwebsite.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "200.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2000feet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2016.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2gisparser.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2learncomputing.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2link.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "33devici.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3dexpose.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3dmetalprinting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3gdu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu5.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "404group.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "48lipetsk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4lephants.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4list.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4maniacos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4seo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "50-ottenkov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5peciali5t.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "666689999.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "68reg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "6meter.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7-it.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "75codes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "76networks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7emka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7starhealth.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7url.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7zet.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "91news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaronspain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abalsa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abandoned.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abaranov.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abarquinha.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abay-today.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abbyairsoft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abcensax.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdelali.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abelles.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abelles.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abelles.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abelles.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aberdeencriticalmass.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abilix.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abkhazianews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ablecha.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abnradiofm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abolitionofspeciesism.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "about-sects-and-cults.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutdelphi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutdiabetesinfo.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abouttime.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abramovich.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abramowskimi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abrec.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "absolutperm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "absurdia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abtinheydari.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abuahmed.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ac-booster.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "academichelp.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acapellalanguage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accademiaprati.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ace-clan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acemsa.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "achievenewsfrance.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acmilan.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acomplia20mg.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acredperu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "across-community.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actioncameraaccessories.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actionminecraft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "active-english.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "activeplatesystem.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actorsanthosh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actrices.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "actuse.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acuarismo-iquique.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acvan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acyclovir400mg.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adamov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adaptivesite.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "addag.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adder.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adderall.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "addictionsolutionsllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "addscoop.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adescb.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adhockery.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adinfinitum.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adoran.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adores.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adorez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adorned.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adrianpetcu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adrianwalls.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adrianweb.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adsforcash.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adspire.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adstop.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advair-generic.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advairprice.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advancedturf.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advertisingcompany.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advirk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advmaster.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advoervice.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advokat-dtp.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advokat-dtp.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advokat-dtp.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advokat-dtp.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advokat-dtp.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advokatkonsult.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advokatonline.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advokatskoe-byuro.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advokaty-onlajn.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advokaty-onlajn.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advokaty-onlajn.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advokaty-onlajn.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advokaty-yuristy.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advokaty-yuristy.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advokaty.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advokaty.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adygeya.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aeroframe.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aerowillys.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aeternus-darkermonument.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afanasev.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afflictedquarter.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affordablecameras.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "affordableelectronics.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afghandonia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aforism.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "africaindemander.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "africanmangoforum.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afrodisiac.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "after-whoru.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afterfostercare.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afternoonhereyes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aga-eiken.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agalloch.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agehotel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agencetourismemali.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aggression.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agora-soft.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agricult.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agrippa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agro-ferma.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agronomi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agropool.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aguantepimpinero.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahccorleone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahlac.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahsinsaleem.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aikidoaalst.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "air-flot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aircheapfare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aircheapfares.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airconditioning.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airethilien.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aireuropeflights.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airfareandcheap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airfarecheapeurope.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airfarefrom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airfarehonolulu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airfarehoteldeals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airfareinindia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airfareorlando.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airfaresfrom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airline-rabota.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airlinenews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airtrain.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aisedomains.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akbarsempoi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akbas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akiba-souken.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akkordy-skachat.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akura.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "al-capone.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "al-capone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alabalaporto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alamad.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alamani.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alarbnet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alas-negras.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albakos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albaladejodelcuende.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albalinks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albanildedios.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albendazole.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alberteinsteinbiography.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albuterol.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alcantara.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alcohol.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alcoleadetajo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alcove.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aldeal.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aldo-saputra.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aldridge-ringers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aleksandar-vukmirovic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aleksanders.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alemangranada.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alenaserezhina.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alendronate.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alesha.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexanderkhen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexanderlau.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexanderpiatigorsky.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexanderpopov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexandremottier.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexcpp.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexlombardo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexustinoff.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aleynamasajsalonu.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfa-books.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfalasteenyia.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfambra.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfavideocirurgica.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "algerianportal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "algeriaweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alibabau.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alicante-spain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alicebaldenegro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alireza2love.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alishanova.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alisstyle.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alistaku.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alitpedia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "all-gsm-solutions.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allaboutmadonna.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allamakee.k12.ia.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allbrestby.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allbrestorg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allcelebs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allcrimea.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allegra.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allegra180mg.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allegrapark.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allergyweb.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allforex.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allgadgetsfree.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allhits.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allindiajobs.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alljokesaside.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alllaboutchickens.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allmaps.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allmba.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allmessedup.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allopurinol.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allpedia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almargen.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almasoft.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almaz-host.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almlab.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almosis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alomch.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alphadronten.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alphagames.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alpine-tuning.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altabash.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altabooks.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altai-info.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altai-voyage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altai-zemlya.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altai-zemlya.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altai-zemlya.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altai-zemlya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altai22.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altaizemlya.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altaizemlya.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altaizemlya.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altaizemlya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altdforyou.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alternativefacts.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "althistory.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altidrabat.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altramarsala.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altratella.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aluchta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alumni-skensa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alunyc.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alushta-vostorg.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alushta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alusib.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alusim.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alvarezmorales.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amadeusproject.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amadin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amalgaamvrij.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amalgamma.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amartaramitramandal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amateur.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amateurs.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "americahealthcare.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "americanbooks.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "americanbuzz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "americanfootball.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "americanfootball.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "americankickoff.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amerikanloto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amfora.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aminko.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amisoft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amitt.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amliorefemme.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amolaccum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amorphis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amoxicillin-500mg.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amoxicillin.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amoxicillincapsules.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amoxicillinonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amoxil.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amoxil875.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amoxilonline.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amphora.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ampicillin.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ampicilliniv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ampicillinonline.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ampullen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amritps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amur-photo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amur.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amytuarez.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amzik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "an0ns.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anaal-nathrakh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anaalnathrakh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anabolic-stresser.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anagir.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anahwaftah.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "analgesia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "analinsting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anangeix.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ananyagupta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anapsi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anarcasmetalicos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anarticle.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anaxios.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andnet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andorraimperial.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrescuartas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "android-10-inch-tablets.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "androidgaming.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "androidmarketturkiye.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "androidru.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andy-hagans.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andyscubepage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andywilliamsonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aneducationuto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anekdotiki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anelik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angelbulldog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angelicsphynx.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angelinafilipski.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angelo4ek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angelsanctum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angelsandairwaves.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angelswar.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angolo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angular-js.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angusandperthpgl.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anihilated.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animalcenterunomas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animalcrossingwiki.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animalworld.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animanganetwork.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animecreed.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animedescarga.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animeelite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animeheaven.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animelandia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animeplus1.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animesbrasil.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animesconsteemplee.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animeshka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animoxavilorza.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aninews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anisimov.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anmelden.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anna-beauty.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annadebrux.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anne-marie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annoncer.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annonces34.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annuaire-express.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annual.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anomaly.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anonimizers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anorexia-nervosa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anpaju.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "answernow.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antabuskaufen1.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antalya-yesim.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antalyamasajsalonu.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antechrista.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antena.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antenna-lyubertsy.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anthonylaberge.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anti-civilisation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anti-depressants.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anti-eniologiya.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anti-gololed.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anti-iupac.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anti-lohotron.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anti-stop.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antibioticaugmentin.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antibioticsadvice.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anticensorship-russia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antichatresources.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anticorruption.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antidepressants.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antidope.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antidoping.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antifaschistisch-reisen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antifaschistischeaktioncelle.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antifraud.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antihelp-tomsk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antikfloors.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antikfloors.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antikfloors.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antikvar-net.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antikvarshop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antimaterie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antipodi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antistatik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antitabak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antonygeorge.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anubisz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anwarverdict.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "any-download.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anydaytour.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anyduchildren.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anyebooks.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anyhobby.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aomar-mohammedi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apartment-market.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apbforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apelsin.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aperioadvice.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apex.ac", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apexconsulting.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aphelionband.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apipsandiego.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apkpokemongo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apkpokemongo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apocalypseclan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apokalipsis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apollonas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apollonia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apothekeonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apparatrechose.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apparatus.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appelerintrt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appointment.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appugo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aprendejainternet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apse.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquacapsule.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquariymist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquiparoxetina.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aquivardenafilo.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arab1info.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arabearthcommunity.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arabi-news.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arabictranslation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arabska.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arabskills.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arakanis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arandomsite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arargo.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "araya.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcadegame.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "architekturwiki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archivestesting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcosdelallana.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ardabil.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ardakannews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arditech.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "are-you-experienced.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "area21.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "areata.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arena-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arenatennis.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arenda-bez-agenta.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arendabotov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arendaskuterov.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "argentinachat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ariag.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ariashii.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aristokratia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ariston-center.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arkadian.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arkhangelsk.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arkhangelsk.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arkhangelsk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armado.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armageddonclan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armandocorazones.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armchess.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armhistory.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aromex.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arowsoft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arsake.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arsalbania.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arsenal-trans.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arsenalestate.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arsenyan.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arsmagazine.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "art-design.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "art-illustration.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "art-school.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "art-voronov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "art21tv-armenian.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artane.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artembusiness.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arteriamagazine.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arthrosis.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "articlestack.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "articlesutiles.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artsalon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arturweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artvertising.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aryani-fitriana.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asaduddinowaisi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asansol.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asantosdev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asbestos-awareness.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ascannes-non-officiel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aserbx.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asialivenewscafe.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asiandubfoundation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asiaproductsdirect.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asiaticas.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asiaview.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asiaview.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "askerweb.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "askme-fast.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asoccu.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aspviress.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assikerujked.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assta.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astana.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astanainform.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astanakz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astarfrommosul.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astateoftrance.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asterix-obelix.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astigmatic.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astormueble.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrakhan-gorod.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrakhan.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrakhan.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrakhan.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrakhan.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrakhan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astro4u.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrogate.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrogift.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrogift.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrogift.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrogift.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrogift.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrologie12.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astronomija.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astropar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrosoc.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astsummer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asukalangley.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asylumguild.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asynchrono.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atafu-village.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atary.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atebaa.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ateneumontbui.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atenolol50mg.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atide.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atix.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlantahealthcare.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlanticdatastream.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlantikwall.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atletico-guacuano.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atmosferno.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aton-ensemble.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attosoft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atunel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audiologiasinfronteras.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audition-radio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auditore-host.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "augmentin.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "augmentin.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "august-hoegn.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aukanaw.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aukcioon-domenov.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "australiadaily.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "australian.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "austriaguide.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "austriatravel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auto-arsenal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auto-reklame.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autocashmachine.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autofinancing.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoknife.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autolet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autoportal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autorai.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autostrady.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autosystem.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autozaz.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autre.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avalon-ami.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avalondevelopment.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avangard-tovar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avangard.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avengersonline.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviareis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviationonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviations-engineering.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avionicbooks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avions.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avn-buses.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avodart.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avogel.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avogel.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avogel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avoids-troops.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avto-signal.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avto-signal.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avtodoki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avtodot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avtojurist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avtomaniya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avtoobzor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avtostolica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avtovikup.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avtoyurist.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avtoyurist.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avtoyurist.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avtoyurist.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awakenwow.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awanteverde.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awarenessadvisor.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awersomecreatorfromrussia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awfulsport-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axiomtechnologies.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axios.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axoncoho.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ayur-veda.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "az-forum.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azerinews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azienda-tv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azithromycinbuy.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azitromicina.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azlink.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azurecraft.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azvpn.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babakhanalia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babaseo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babekids.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babki-mgnovenno.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babkitut.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babushkin-mir.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baby-skin-care.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babybunnypictures.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babygirlholidaydresses.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babymozg.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babysdishes-bowls.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babyshower.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babystrollers.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babyzen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bacardi.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "back-streets.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backlinktr.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bactrim-ds.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bactrim-medicine.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bactrimds.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bactrimprice.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badgirlfoto.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badmice.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badmintonargentina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badmusic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badules.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baikalfond.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baikalppk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baitable.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baixadordemusica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baks.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baksclub.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baksclub.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bakubest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balanda.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balasingandaru.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baldwin-mania.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balerma.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balkannightlife.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baloncestoarqueros.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bambukshop.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bampers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ban-list.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bananathrash.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bandamirandadeebro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bandymasarna.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banerka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bangujero.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bankimsk.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banknews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banning.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banzay.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bapeel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baraxolka.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barbiecollectorjapan.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barihandin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barnaul-altai.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baronet.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barrancos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "barrymarkus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bartdaelman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bartvandamme.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "base-radio.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bashhack.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bashkiri.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bashtel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basictools.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basketballnewz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bastionadvokat.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bastionentifo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basyrova.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "batailleros.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "batmanvsupermanfullmovie.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "batoit.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "batonchik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "batteryreconditioning.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "battleforkhashuri.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "battlefrontoldschool.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "battlerite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "battreil.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baukelek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baytobayaircon.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bazar-pc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bcrnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "be-free.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bearfarm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bearings.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beatmaker.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beatquantum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beatthebastards.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beaucrabill.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beautifulsouth.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beauty-stories.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beauty-style.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beauty-woman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beautyandthebeast.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beautyarticles.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beautycom.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beautyeyewear.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beconnect.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bedrockcommunity.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beedsolyjas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beerglasses.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beforeafter.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "behold.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belajarpsikology.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belanews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belarustoday.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belarustravel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belf.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belgia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belgiantennis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belgorod-host.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belgorod.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bella-abyssinia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellanews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belloweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellreguard.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beloevino.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belugadev.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benadryl.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benadryld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bender.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beneazy.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benhamplateau.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bensvriend.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beonline.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beospain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bergelevrad.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bernack.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bernarditadiaz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bernerland.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berserk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bespredel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "besser-golfen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "besslavnye-ublyudki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-cats.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-seminar.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-seminar.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "best-software.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestcms.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestinsulatedwaterbottle.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestitwork.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestmotorcyclehelmets.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestoldmusic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestomania.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestplus.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestplus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestsatoshifaucet.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestwirelessdoorbell.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestzoo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betacommand.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betbed.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betexperts.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bethzone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betterworlded.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bewildered.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bezagentstva.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bezoek-benidorm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bezopasna-rabota.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bharat-media.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bharatanatyam-dancer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bhub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biaxin.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bibitbunga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bibliotecaguate.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biblioteka-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biblioteka17.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biboran.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bicubic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bidaah.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bidonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bieg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biegi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "big-books.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "big-file.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "big-music.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigalba.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigboard.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigdaddyslash.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigdatatop.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biggernews.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bighome.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigpurse.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bike-liptov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bike-style.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bikestream.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bilbao.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bilingualunit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billboard-panama.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billionaire.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bimoge.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binary.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bingoclub.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binson-museum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bioblog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biodieselbr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bioexistencialismo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biolact.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biomechanoid.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biomod.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bionic-karnage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "birjdid.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "birlikdayanisma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "birtamode.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "birzman.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bisik.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bisoga.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bisrockonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bistrozaim.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitbank.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitbonus.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitbonusss.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin-exchange.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoineffect.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitforge.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitgarant.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitljettnu.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitrate.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitspaceonline.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bittimaatti.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bittiraha.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biysk.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biz-pak.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bizbelarus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bizfavor.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biznes.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biznesone.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bizor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blablacar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "black-diamonds.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "black-market.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackandwhite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackbirdproperties.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackchristmas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackforeststheoriginal.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackmaskpro.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackmodelsusa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackriverfalls.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackroses.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blacksega.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackshark.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blacksniffer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackstonepress.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blacktemplars.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blacktubes.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blacktubes.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackwaterutilities.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackwidow.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackwoodrugby.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackworld.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blago-sostoyanie.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blago.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blagosvet.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blako-squad.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blavaty.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blazingsaddles.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blindfold.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blinking.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blitzkrieg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blog-ludmily.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blog-page.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blog-story.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloggersonlinetrainings.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blogvadim.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloody-hosting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloodycraft.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bloomingwoods.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluavido.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blubux.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blueenergy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blueneuron.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blueskybrokerage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blurt.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bluxus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boardfree.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bobbyrobinson.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bobfilm.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bocaaboca.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bodclansite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bodegagarces.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "body-demo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bodyshaping.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boegli.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boeing747.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bogdatrend.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boliviaverde.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bollywoodacapellas4djs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bollywoodgk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bollywoodstrot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bolshoi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bolton-consulting.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boluwebtasarim.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bombard.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bombgame.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bombgirls.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bombiaturkiye.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonapeti.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bondscript.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonkleagues.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonsaiclubsanvi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonus-kran.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bonusup.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "book-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bookingsrit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "books-dowload.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "books-ru.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "booksandcoffee.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bookstores.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bookstrap.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boostdesign.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boranco.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borasol.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borderfever.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borderzoo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "born2dance.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borzov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bosnia-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bospor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bostonews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "botbrother.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "botelegram.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "botipedia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bottomfeedings.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boucherie-lesnes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boxofficebengal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boyard.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boyscoutschile.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boysorebro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "braces-supports.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brahma.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brainburger101.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brainrush.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brainstormproductions.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "braintonus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "branch.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandhost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandon-manilow.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandweer-sgravendeel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandweerweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brasco.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brasil66.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brasilduino.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brasiliademinasnet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brasilmobi.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bratan.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bravelittlesquirrel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bravenboer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bravewiki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "breakberlin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "breakingnewskenya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "breastenlargement.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brechadigital.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "breket.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brest-master.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brestradio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brestshop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brexit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridesbouquet.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridgeportlaboratory.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridges.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brightsport-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "briliant.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britishbullshitfoundation.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "britishgeneralelection.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "broadax.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brokenminds.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brokerdecredite.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brooklynboyblues.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brownavto-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brtve.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brugpensioen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brunanet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brusselsexpolive.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brusselslouisepenthouse.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brusselslouisestudio.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brusselsmidiapartment.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brusselsmidistudio.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brusselswestapartment.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brutalica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brutality.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bryanski.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsteele.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "btc-wallet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "btdproductions.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "btslr.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "btsource.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buckethead.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buckfast.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "budapestairport.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buddhism.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "budgetrf.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "budilnik.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buesiforquo.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bufete.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buff-buff.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buggywonderland.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buildmate.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buildnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buketnevesti.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bukinist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bukularis.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bulbonidos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bulgakov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bullterrierspain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bullyprotection.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bulmanat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bumpi.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bune.city", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bupropionhclsr.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buralteria.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buratiya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burbaguena.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burewala.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burghtstam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burkoff.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burningflame.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burreli.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bursamusik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burunucu.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buryatia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buscolu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "business-explosion-fortune.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "business-secreti.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "business-secreti.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "businessconnect.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "businessdirect.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "businessinvest.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "businessk.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "businessnet.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "businka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bustillodeloro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "butowka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "butserdocumentary.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-aleve.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-amitriptyline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-amoxil.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-avodart.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-camera-cases.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-cozaar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-decadron.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-deltasone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-indocin.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-jeansbiz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-lipitor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-prednisolone.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-premarin.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-robaxin.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-rumalaya.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-skelaxin.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-stuffed-toys.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-topamax.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buy-zimulti.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyaccutane.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyacompliaonline.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyalbendazole.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyalbuterolonline.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyallopurinol.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyamoxicillin875mg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyamoxil.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyantabuse.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyatarax.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyazithromycin.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buybaclofen.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buybuspar.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buycafergot.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buycheapandlow.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buycialissmx.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyclaritin.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buycostarica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buydataonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buydeltasone.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buydeltasone.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buydiamox.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyebooks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyeffexor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyfluoxetineonline.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyhydrochlorothiazide.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buymetforminonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buymobic.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyneurontin.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyprednisolone24h.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyprednisoloneonline.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyprilosec.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buypropecia.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyproscaronlinecanada.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyprovera.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyprozac.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyretinamicro.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyrimonabant.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buystromectol.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buystromectol.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buytetracycline.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buytramadol.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyventolin.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyventolininhaler.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buywellbutrinonline.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buywifi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyzithromax.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyzithromaxonline.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyzofranonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyzoloft.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buzzhub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "byggindrustrin.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "byshop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bystryj-zajm.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bytesoftech.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caballeroalba.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cabezadeframontanos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cabrachicagritona.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cactusarium.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cadici.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cadovod.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cafe-georges.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caffe.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cairohost.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "californiahumanrights.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "callanenglish.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calligraph.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "callvip.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calvario.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camarzanadetera.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cambados.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camelia-poezii.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cameronstar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camilaporto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camileonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caminreal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camipress.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camisetasparatodos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camouflaged.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camrecord.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canadianpointerclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canadiansrit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canaldelaespartera.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canalescape.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canalinterativo.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canalinterativo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canalinterativo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canarys.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cancan.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "candelaguatemala.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "canlom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capellen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capike.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capitains.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capital-electronics.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capitalmatters.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capitalpay.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capitan.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capitanbeilinson.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capitapeskanova.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capota.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caps-hats.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capsicle.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "captainclaw.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "captainjanks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capturelead.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "car-seats-store.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "car3d.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caraccidentslawyer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caracterizacion.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caramellespinell.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caravaca.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carbonadvantage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cardbouns.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cardiology.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cardmart.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cargotariff.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cariki.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carikiv.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlaschiavone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlolacana.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carmageddon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carmarthenradiocontrolledcarclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carmengrayfanclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carnavaldeltoro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carnavales.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carolinavarletaarriagada.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carolmolinari.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carp4life.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cartridge.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casa-brel.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casavaleria.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cash-bot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cashline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cashworks.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casillasdecoria.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casitawn.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casko-insurance.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castaneda.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castella.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castelletto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castilla-comunera.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castings.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castlehack.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castrillodelavalduerna.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castrillodevillavega.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "castroverde.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casualclubdating.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cat-encyclopedia.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cat-problems.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catalog-serverov.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catastrofy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catfood.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catgarden.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catholicprayers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catholicteuchtar.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catz-productions.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbcentelles.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cboard.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccbin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cctv-camera.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cctv-systems.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdhome.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdnaval.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdocs.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cebrita.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cecalivo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceciledekock.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceco.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celebdaily.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celebraze.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celebrex.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celebrex100mg.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celebritiesblog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celebritydailynews.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celebritysrit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celex-machinery.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celexa365.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cellboost.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cellufit.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "censored.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centenariodeuncampeon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centenera.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "central-apartman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centralsite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centralsoft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centroculturalostuncalco.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centrodeeportesbarco.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centromedico.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centuryfighters.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centuryforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centurylink.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cephalexin.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cephalexincapsules.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cephalexincapsules.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cepxuo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cerovica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cesar-hector.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cescfortuny.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cewek.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cgbproduction.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cgionline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ch-investor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chad-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaikaclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chainz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chamartin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chandramani.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "channelist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "channingmotorsport.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaoscycle.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaoticonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charleliphile.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charlesdickens.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chasoslov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chastitybelts.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chat4me.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatline.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatmaus.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatopia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatovod.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatpoint.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatroomfans.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chatvizor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheapacyclovir.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheaplasix.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheapnolvadex.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheapsslsecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheaptadalafil.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheapvaltrex.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheat-files.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheaterbios.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chebotarevkk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkbot.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkercab.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chel.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chelmsz.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chema.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chemicalromance.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cherkes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cherkess.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chernikova.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chernogoriya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chicagoagent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chicagoillinois.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chicaman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chicinttim.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chickencoop.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chicospanico.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chiki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "children-toys.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "childswear.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chiletrenes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chili.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chilipy.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chill-house.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chiloesinpuente.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chimpanzee.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chinchillas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chinesedishes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chinesephones.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chinfolk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chirkunov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chirojap.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chistesdesebas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chita.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chita.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chitaem.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chitashop.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chitlar.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chittagongtextile.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chocoband.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chocolateslim.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chocolatos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chofan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chongthamsika.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chopradionet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chornobyl.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "choylifut.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrispaul.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrispontius.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrissytechaira.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianhaugen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianitas.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianitas.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianitas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christianmorales.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christiansrit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christmaspages.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chriswiggin.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrt-tcdp.gc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chtodelat.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chtyvo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chudnov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chukotka.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chunga.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "churakov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "churchlw.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chuvash-republic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chuvash.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chuvashiya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cialis-trial.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cialisfreetrial.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciaran.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cidikit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cidones.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cinema-rulem.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cinnagar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciproantibiotic.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciprofloxacin.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciprofloxacin.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciprogeneric.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cisindia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cistit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cisylik.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citafun.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citalopram-20-mg.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citalopram20.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citalopramgeneric.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citalopramhbr.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citazioni.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citos.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "city-home.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "city-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citycalculator.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citycricket.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citylocal.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citypress.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "citytel.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "civic-europe.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "civilvirus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clan-destin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clan-finaldestination.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clan-ogm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clan-ready4war.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clanlaw.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claptrap.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clarasegura.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claretandbluearmy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clarinet.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clarinexonline.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claritin.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claritin.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clasa-mea.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clashoflights.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "classic-diva.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "classicalchaos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "classiccrew.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "classiccrewhaiti.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "classichorrornetwork.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "classichost.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "classicmagazine.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "classicstories.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "classificadostodaoferta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claudiasnederlandsehangoordwergjes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearhumor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleocinonline.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleverdeal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clickheretobegin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clicktolinkb.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clickzone.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clik.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "climaticequipment.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "climbing.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clindamycin-150mg.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clindamycin-phosphate.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clindamycin.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clindamycinantibiotic.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clindamycinprice.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinicadeesteticacontagem.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinicalstats.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clips.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clomid50mg.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clomid50mg.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clomidonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clomiphene.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clonidine-hydrochloride.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clonix.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clorinda.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clothing-for-women.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudads.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clouddomain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudfast.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudmoney.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudrive.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudstress.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "club-dresses.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "club-oz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubcorolla.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubedegeografia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubeighteen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cluberiks.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubfailed.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubfunday.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubgenesis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubmania.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubpes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cmetana.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cnabogota.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cncr.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coalmen.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coalvillebasketball.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cochin-brahma.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cocinasazahara.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cocokmobi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coconutguy.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coconutoil.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cocresa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codebrasileiro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codeclub.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codehangar.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codehelper.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codename24.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codenamelungo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codepoint.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codifique.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coding-basic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coffeebean.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coffeebeanstudios.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colbert.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coldspegll.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coldtomato.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collective-incubator.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collector.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collegesrit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collegetownstudios.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colocolochile.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colorblindfilms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colorwow.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comarcadelaranda.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "come.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comenc.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comercialcolombia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comfortablelife.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comfriesland.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "commercialzone.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comomoraremportugal.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comoperdonar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compactador-vendetta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "complaint.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "complex-kaspiy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comprarpapelhigienico.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computer4me.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computersoftware.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comunitateonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "concellodoparamo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "concepcion-futbol-club.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conceptual.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conclave.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conclude.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "condonescadistas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "confidentliving.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "confidentliving.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conrasd.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consoletech.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conspiracionweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "constant.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "constellations.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consul-novocherkassk.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consumer.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contextolog.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "continuernom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contrarreforma.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conversatis.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cooking-food.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coolfilm.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coolsoftware.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coolweirdfacts.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "copa.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "copedeportes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "copyfast.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "copytext.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coratxa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corazoncaliente.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coremcnetwork.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coremove.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corhellemons.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corkcityfc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cornertoyshop.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corrales-sanchez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "correspond.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corsetacademy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cortege.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cortino.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coskun.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmasiakraft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmetiq.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmosearch-azerbaijan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmosenalerta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "costi.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "costoflipitor.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cotofoto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coton.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cottonage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "country-games.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "country-house.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "countrysidebar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cphollywoodproduct.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cps-sante.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crackajack.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crackedsoftware.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crackerjohn.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craftottawa.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craigphillips-work.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cranenburgh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crash-de-1929-et-grande-depression.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crashedata.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crazybear-underground.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crazycouple.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crazydrivers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crazyhost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crazypete.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crazysavings.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crazystories.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "create-website.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "createbot.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creativescorpio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creeksidebiblechurch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crematory.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crestor20mg.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crestorgeneric.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crewsing.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crimethincx.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "criminal-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "criminalcasecheats.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "criminallawyerjobdescription.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crimsoninators.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "criptozoologia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crispybacon.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cristenberens.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cristian-alexander.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cristiandumitru.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cristomoradocusco.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "criticalculture.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crocop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cronicademuro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crossair.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crosslimit.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crosty.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cruises.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cruzadamorada.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crvenikrst.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crypto-gaming.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptobonus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptonit.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crystal-media.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crystalcherryonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csdacadcv.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csroot.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctech.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctonovenkogo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctrlcvz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cuartetocontinental.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cuboxmovies.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cudesa.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cudesyb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cuentas-gratis.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cuevafelina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "culinary.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "culpoilu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "culturaldiversity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "culturalsabotage.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "culturesgames.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "culturism.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "currentchaos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cursodememorizacao.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "customsandals.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cutehost.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cutemodel.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cutie-viewty.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cvetpodokonnik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cvglobal.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cvtenerife.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyber-links.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyber-m.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyber-mech.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyber-world.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberburek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberislam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cybermatrixone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberprogramming.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cybersamurai.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cybershot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cybersolution.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberworldexpert.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberzones.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyborgtheory.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyqual.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyrix-systems.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d24zgh0u05bzjw.cloudfront.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dabuzz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dacha-letom.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dadsarmy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daemons.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dag-berlin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dag-ogni.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daganzo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dagestan.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dagestanci.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dagestanec.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daidogei.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dailyalerts.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dailycricnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dailyhealthylife.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dailynewsfrommedjugorje.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dailyreels.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daisyscars.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daki-host.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dalkhola-city.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dalkhola.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dalkholaphotos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dallaswestinternational.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dameeq.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dampfbahn-leverkusen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dampfbahn-leverkusen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "damvdolg.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danadameson.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danashamsters.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dania.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dania.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daniel-ayala.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danieldevine.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danieleluttazzi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielhammond.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danish.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danispage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danituuu7.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dannycavanagh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dannyoficial.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dannyscloud.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danoji.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danzavila.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dapoxetine.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daprint.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dark-ages.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darkartstudios.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darkcelebration.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darkfilm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darkforceofhappiness.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darkgames.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darkhall.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darklite.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darkmail.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darkoff.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darkpassionsite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darkperu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dartcarrousel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daryl-wilcher.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "das-clanpage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dasolindustrialpark.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "databiz.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datacenterbrasil.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datagrid.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datastream.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datessrit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datingadvice.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datutorials.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davalochki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daveyconstructions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidbyrne.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidereinato.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidovskakreu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidvilla.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidzarza.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davinamccall.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davyatletiek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daysnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbtotalnet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dclmwp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "de-basiliek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deadboyskilling.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deadpoolonline.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deadsea.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deal45.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deamonmail.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deamsterdam.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dear-children.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deasyvow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deathlords.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deathrockstar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deavon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "debats.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "debostero.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decimation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decisionssometimes.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "declarativ.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decorativecosmetics.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dedicatedservers.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deepu-mathew.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deepumathew.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defensoresunidos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defile.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "degreeducation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deja-lu.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dejavu.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dejected.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delaydengy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delaysoft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delete.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delfinus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delivereasy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delontewest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "delphibasics.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deltamusik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deltaphiepsilon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deluxe-bot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demesos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demo-ferma.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demografia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demokisisel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demokrasi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demondms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demonforums.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demonicresurrection.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demonwithin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denarium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denchik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denegka-mgnovenno.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dengidoma24.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dengisrazu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dengivdolg.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denisdimoski.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denisyan.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dennislicht.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dental.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dentalcolleges.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dented.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dentist-profi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denugka-vezde.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denver-design.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "depeche.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deportestalcahuano.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deportivo-pasto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derive.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derkarl.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dermax.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derrybasketball.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dersimizmatematik.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deserti.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desiderantes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "designsociety.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desire-host.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "destroysilence.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "destructive-revolution.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desyatnichenko.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detdom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deti.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detroitnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detsad.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detsad.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detskie-avto-kresla.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deustech-media.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deustech.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devahi.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devchuli.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devdomain.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devendradox.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devnet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devochki.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devos.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devushki.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dewblog.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dexcellentesidees.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dgmedia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dhamdhamaanchalikcollege.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diables-noirs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diablescastell.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diablos-obon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diagilev.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diasporan.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dicaprio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diclofenac-75mg.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diclofenacgel1.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diclofenaconline.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diclofenactopical.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diedenhofen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diegogranada.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dietandexercises.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dietfordiabetics.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dieti.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dieti.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dietolog.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "difficulty.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diflucangeneric.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diflucanonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diflucanpill.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "difon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digital-e-library.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digital-home.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalbd.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitaldisaster.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalgymnastics.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalhands.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalheart.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalninja.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalroma.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalupcoming.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digivan.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dignity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dinamikarosta.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diplom-ru.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diplomatiegabon.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directly.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directory-aldo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directory-ecco.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directpaydayloansonline.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dirtycode.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dirtygirl.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dirtyporno.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dirtypretties.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dirtywoman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discordsworld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discotheque.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discountforelectronics.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discoveraustralia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discoverchinanow.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diskdoctors.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disketa.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disketteetikette.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diskonsepatu.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "disneywallpapers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diterzafra.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dividedstates.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "divo-remont.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diyeta.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dizainkyhni.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dizzyskills.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dj-kupidon.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djamiroquai.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djangoproject.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djazair.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djbessi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djcezar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djconker.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djcontact.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djdarkz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djerba-tunisie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djinstinct.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djnandoalmenara.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djnext.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djsciencecollege.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djshivbabu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djwilson.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djyoungcruse.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dkonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dl-protect.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dmwclan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnash.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnepropetrovck.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doanhai.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dobrekupony.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dobrekupony.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dobrekupony.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dobrinya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doctormahamudul.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "documentat.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "documods.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doczlo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dodacommunity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dog-likeeyes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogday.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doggingclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogtrack.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dojki.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doktorplyusheva.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolg.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolg.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolg.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolg.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolgopolova.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolgorukovo.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dollarweb.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolly.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dom2news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dom2seychelles.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dom2tnt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domashniy-server.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dominicjackson.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dominolessons.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domostroiy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "don-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donalblaney.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dongor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donnapepe.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donostiweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donteaetcrayons.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doorlinekktc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doorservice.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dorados.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doraemonchile.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dorizonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dorkface.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dorsavi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dos-team.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dosbox.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doserres.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dosgratus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dosite.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doska.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doskapozora.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dosyaa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dota2free.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dotadotaman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dothegangnamstyle.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dotless.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dotyk-snov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doubly.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "douglegomovie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downandouts.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downfreak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "download-image.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downloadapkpokemongo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downloadforum.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downloadvipgames.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downset.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doxepinonline.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doxyciclin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doxycyclin.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doxycycline1.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doxycyclinehyclate100mgcap.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doyarki.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragon-craft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonboatfestival.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonflycms.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonoid.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonradar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonraja.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonroost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dragonscale.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drakencan.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drakiada.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drama.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dramakorea.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dramaslayer.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dramatherapie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dranik.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drawing.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drdeath.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreadlord.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dream-design.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dream-domain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreambbs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamelegant.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreaminjewelz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamlifeproperty.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamlinks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreampages.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamreality.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamsea.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamsjob.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamstudios.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dredwerkz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drema.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreumesshakira.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drifter.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drinklife.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drivingcalculator.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "droidguide.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "droidwars.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dronebase.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dronesquadcoptersales.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dronix.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drosophila.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drugzone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "druides.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "druko.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "druko.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "druko.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drummachines.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dry-cleaning.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dryzgov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsad209.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dtrifonov.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dual-universe.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dublinrail.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duesseldorferheineburschenschaft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duhivip.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duke-nukem.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dulcinea.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duloxetinbestellen.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duloxetine.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dunberghof.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dunce.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dungeonfire.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "durabletravailler.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "durganews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dust4you.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dustbox.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dveri-lugansk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dvor.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dyachenko.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dylan-motorcross.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dylandeconinck.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dynamicbusinessconsultants.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dynsoundmax.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dyuimovochka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dyykkarit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dzmonarchie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-antikvar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-balloons.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-belgia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-classroom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-dengi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-diapers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-diasporan.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-geologia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-islam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-kartinki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-knitting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-nature.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-peeling.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-planshet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-polygraphy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-recruitment.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-student.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-sweaters.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-tires.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-umbrellas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-zine.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "earth-quake.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eastdream.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eastendonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eastheaven.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easton.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eastside.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easy-company.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easy-design.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easy-katka.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easyit.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easylinker.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easymeditation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easypayment.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easyradio.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easysoft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "easysubmit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eazyg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebolavirus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebookdrive.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebooks4all.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebookspy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebpgateway.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebuha.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebuku.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecarch.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecard.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecaterina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecoeuropa.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecohimdv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecologiya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "economicnews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "economixportal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecorp-australia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecoturismo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecoupakovka.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecowoman-bengalian.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecowoman-indonezian.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecowoman-ukraine.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecstaticentertainment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecuadorlibrered.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eddsworld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edegulkoyu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edmedications.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edrost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eduardofranco-luthier.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "educabis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "educanada.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "education-info.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "educationdepartment.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "educationfirst.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "educbook.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edulinks.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eduproject.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eduschool.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edward-tagle.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edwinlugo.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "effectivecommunication.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "effexorgeneric.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egevpare.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eggman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egilopaseryh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egonews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egypte.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egyptenet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egypteweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egyptexposed.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egyptian.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egzekucija.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehome.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehtu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ekhabar.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ekokpandm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ekologija.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ekzotika.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "el-mundo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elakiri.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elbersdometechniek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electionpresidentiellegabon2009.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electric-clippers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electric-samara.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricpower.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elegant-design.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektroistrument.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elemenop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elementarium.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elementarium.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elena-paparizou.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elena-risteska.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elena-soset.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elena-soset.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elena-soset.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elena-soset.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elenaristeska.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elenaristeskaweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elenashilko.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elenatroncone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elencinar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eleonardo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eleonoraanzini.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eleonorapapallo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eleonrp.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elephants.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elevenensemble.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elgin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elias-erdmann.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elimitecreamforsale.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elit-fitnes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elit-host.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elitemud.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elka-piter.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ellesoft-freeware.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elligre.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ellinaras.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ellipsoid.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ellisvanlaarhoven.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elmenreich.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elosoavila.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elovip.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elradiobuffet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elsadonaire.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elsemanariodesalamanca.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eltuito.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elvismania.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elweronete.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "email-verifier.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emailexpress.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emailfreeshop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emailservers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emaks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emiliederavinspain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emilymarques.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emilywufaith.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emmawatsonking.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emmepole.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emperoranimeindo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "empire-forum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emptiness.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emulsifier.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emusicuz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "encryptionweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enderhost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "endiana.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "endlessfashion.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "endofevolution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enemyterritory.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energy-fm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energygroup.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energyguru.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energymedia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energysite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energytrust.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "energywisdom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enescrackmerkezi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eng4arab.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "engelsism.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "english-to-russian-translation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "english-training.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "englishouse.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enhanced-mail.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enigheten.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eniyicrmprogramlari.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enlacesgranotas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enriqueferreira.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enteratesoria.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enterpriset.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entertaiment-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entertainmentsrit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entreprenet.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "envisolarvind.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enweb.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eonclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epcomputacion.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epicdesign1.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epicdesign2.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epicmoney.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epicmusicradio.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epicteam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eplenet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epliar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erandymoreira.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erback.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erbt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erciyesspor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erector.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eric-kolelas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eric1932.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ericfo.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erichware.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erikaepedro.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erokat.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erolib.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erosofia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erotikstahrtseite.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ersdfaredsaeem.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ervirmaison.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erythromycinonline.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esc-romania.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esc-turkey.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escoladepilota.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escolamais.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escuelasargento.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escuelotika-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eset.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eskimosboards.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esomeprazole1.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espachavo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espacioweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espaiblancandorra.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espanyoldebarna.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esquirebrotherhood.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esra.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essentialinteriors.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esteban-abadahs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estradiolbestellen.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estrogenonline.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estrogens.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estudiomantis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "estudiosalmogavares.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esvaco.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esys.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esystems.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etestyonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethnopsychoanalyse.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euleres.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eumk6.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurobilltracker.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euroenergy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euroflorist.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "europesrit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "europetraveler.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurosun.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "euskaltzaleak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evaisanta-mariaalmudever.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evaisanta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evanescencenorge.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eveco-mebel.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eventdays.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eventfun.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everseo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everyoneadmins.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everysaving.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everysaving.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everysaving.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everysaving.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everysaving.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everythinginoneblog.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evezqurbanli.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evilbrood.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evojska.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evolution-host.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evolutive-records.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evoplay.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evronews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ewansinclair.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eworldmedia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ewoutpool.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "excavation.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exceed-clan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "excellentrencontrer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exclusive-world.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "excluzive.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exerpm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exesoft.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exforo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exodium.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exogenous.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exomind.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expandabil.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "experiment-626.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expert96.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expertclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "explorium.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expoexports.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exponentialsoft.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exponline.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exponline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "express-shop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extirosli.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extremesports.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extrolife.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exvisits.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyeball.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyedea.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyelashextensions.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyescratch.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyktasarim.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ezrent.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ezz-drops.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f1simulator.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f1worldwide.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabelturen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabian.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabianni.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabriciomoreira.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabriziofaniello.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faceegypt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fachim.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fachiri.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facialparalysisnetwork.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "factozia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faeton.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fail.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fairbot.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fairbot.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fairbot.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fairbot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fairyballet.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fakel.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fakinga.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "falsesecurity.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fam-roos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fameslook.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "familialchercher.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "famosas.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "famouspdf.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fanaticamandafans.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fanatka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fanclubblackhills.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fancypanty.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fandeev.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fanidrakopoulou.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fannyips.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fans-lily-allen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fantasmma.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fantasyadventures.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fantinisfantasy.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faqiteam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "far-east.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "far3link.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fareast.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fareast.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fareast.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fareast.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farfor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farm-catalog.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farm-dogecoin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faroit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashion-family.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashionsuits.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashionweek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fast-mobile.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastbob.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastbob.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastbob.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastbob.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastbob.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastcast.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fastknighki.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fatcat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fau-bremen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fauceton.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faucetslist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fayamovies.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fc-corvinul.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "federaciocatalanapipaclubs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feedthegreek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feignandfolly.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feldkirchen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feliscatus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "felixbroekhuizen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "felixsworld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "felsenheimer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feluck.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fenagav.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fenitriatnica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fenixmetal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fenom.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feodosiya.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feodosiya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferien-zweibruecken.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferienhaus-montenegro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fermastore.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fernandoalonso.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fernandosuarez.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "festivaldays.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "festivalfumo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "festivalsalmondeoro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "festivalsrit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fetawerelddans.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fetichedecaramelo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fey-web.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fietskr.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fifastars.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fiftyshadesofgreyfullmovie.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fighter-planes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fighting-turtle.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fightingshit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fihatest.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "file24.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filek.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filipinasdailynews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filipinochinese.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filmbest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filmizleindir.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filosofia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finalfourstream.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finbio.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finch.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fincities.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findmail.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finhelp.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finn-svoboda.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finnkupongkoder.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finpomosh.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fipq.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fireradio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firouz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "first-money.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstclassnuisance.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstlightinspirations.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstnetwork.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstplace.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firsttimer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fisherman-union.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fishyscans.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitflaop.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fitness-world.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fix-ru.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flagyl-500-mg.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flamentecnic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flameviper.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flart.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flash-games.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flashbackband.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flawless-gaming.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flawlessly.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleuromance.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flexicurity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flicerdowneh.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flightdiary.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flimnet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floatifnghotel.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flomax385.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floodboss.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floppy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "florenciaextrema.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "florida-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fluconazole.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flukestar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fluoxetin.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flvyingeagle.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flyingangels.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flywind.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fnscatania.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "focalpoint.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fodder.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "folclore.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "folkdance.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "follow-the-leader.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foodtrekker.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "football-news.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "footballrussia.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "footballscores.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "footbolka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "footbolki.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "footwear-catalogue.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "for-testing.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forabrokenrobot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foremail.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forensicsciencecentral.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forensicsinfo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forever.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forex-arabia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forex-trading-tutorial.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forex-up.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forexpattern.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forexworld.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forojovensanfernando.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forowarhammer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forsaleacameras.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forsaleelectronics.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forskolin.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortunacigarettes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortunahamburg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forty-two.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortytwo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forum-reklamowe.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forum-tw.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forum-washington.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forum24.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forumotion.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forums4everyone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forumsampdoria.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forumsrussia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotbal-dubina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotbalclubcaracal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foto-znakomstva.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotografies.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotolectura.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotomodel.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotostudiobasic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotovsibiri.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fousetmoney.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foxcloud.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foxcon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foxdemos.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foxdirectory.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foxmailer.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foxstyle.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fpnet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fragmentation.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fragments.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "franceactivetravel.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "francesfluente.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "franzters.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frau.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fraudswatch.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fredbarboo.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freddo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freddyhasderyk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frederikugarte.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "free-lancer.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "free-obmen.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "free-watching.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "free6to12yo.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeartico.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeauroraoperations.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freebacklinksforyoudirectory.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freebookdomain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freebookslibrary.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freecrypt.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freedeals4u.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freedomwill.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freefallproductions.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freemagi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeman-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeminecraftmaps.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freemovieonline.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeonlinearticles.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freepornhunt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freereal.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freeschool.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freesexvideo.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freesports.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freetagboards.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freetelegraph.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freibesetzt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frekat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frendamos-roleplay.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frequentlyaskedquestions.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fresh-info.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fresh-info.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fresh-info.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freshersworld.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fresherwalkins.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freshhosting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friendsforeverrecords.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frikipedia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fripper.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "from.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fromthecountsplace.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frontbaydevices.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fronterasblog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frontierbrasil.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frozencuisine.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fruit.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fruit.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fs-rozmarija.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fsalmeron.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ftl-gaming.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ftpmovement.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuckwhatyouthink.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuembellida.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuenferrada.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuentesdeleon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuerzaazul.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fullmetalconsulting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fullmoondesignhouse.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fullsize.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fully-hair.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funatic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funchal.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funeral-doom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funinfo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funny-rates.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funny-wedding.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funnyanimalvideos.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funnycommercials.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funnymedia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funnypicz.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funnyprankvideo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funnytimes.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funpakistan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funprogramming.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funzack.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furiya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furorcanario.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furosemide-lasix.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furosemide.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furrycraft.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fusacity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fusacovi.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futarara.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futurama-il.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futuristicarchitectures.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabapentin.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabinet-okulistyczny.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabrielaebruno.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabrielafriasfanclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabrielemarino.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gadanie.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gadatel.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gadget-freak.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gadgetfreak.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gadgetgi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gadgetmaker.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gadkiy-farm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gagesmith.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gagnerenfant.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galaxymedia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galeriabunkers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galerias-xamoralarte.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galerie-claudia-walz-nagold.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galileo.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galive.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galizae-sports.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galleryinfo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gallest.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gallest.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamagam.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gambiapagina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "game-net.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamebase.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamegainlx.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamekb.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamekeybox.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamekiller.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gameloft.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamelok.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamering.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamexperts.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaming-dice.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaming-life.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaming-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamingexperts.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamingph.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamingtopbox.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gandalfcz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gangrulz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaponov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garbuz.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garden-land.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gargas.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gargola.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garmonia.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garotastop10.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garrettcornwell.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaspard-ulliel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gatemaster.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gautam-iiith.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gautam-k.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaynight.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gazaryan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gbiotech.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gcschool.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gearnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekashell.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekedin.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geektechypro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekurl.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gelanc.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gelijk.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gelvetika.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genbrugge.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generacionmoderatto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generalpsych.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generaly.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generic-plavix.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generic-sildenafil-citrate.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generic-tenormin.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genericabana.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genericaccutaneonline.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genericaceon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genericadvaironline.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genericazulfidine.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genericcalan.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genericclaritin.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genericcolchicine.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genericdutasteride.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genericflagyl.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genericforavodartmedication.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genericforflagyl.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genericlevaquin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genericlexaprocost.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genericlexaprocost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genericrhinocort.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genericvytorin.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genesisplay.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genioyfigura.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlentssl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geoenvironconsult.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geografia-peru.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geographique.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geokeys.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geologist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geomadrid.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georgelucas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georgeshobeika.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georgianews.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georginabouzova.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geosales.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geotech.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "germinalekeren.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getanswer.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getbrain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getcookie.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getelectronics.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getfreeltc.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getinfoleads.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getme.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getreadyforever.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gettwo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getvalidate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getyoureuro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ggworld.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghanaculture.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghazals.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghostbusters.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghostdog.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghostdragon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghostnight.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghostutils.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gidapgs.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gidroponica.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gifuxuk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gigagroup.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gigatop.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gilbertosimoni.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giovannisantini.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gipl.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gipuzkoabasket.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "girlfriend.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "girlsaloudcity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giroskuter.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gisellapiano.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gisma.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gite-ambleteuse.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "givemylife.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "givemylife.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "givemylife.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gkconsultancy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gkmusicindia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gladwork.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glasiko.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glassofdirt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glazkova.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glitchcomic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "global-business-solutions.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "global-topsecret.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalconsulting.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globaldataline.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalentertainment.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalmed.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalnewsnetwork.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalnewssystems.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalpolarbear.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globalrussia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globaltravel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globus-plus.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "globustrust.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glossowiki.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glowfic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glyburidemetformin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gmsociety.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gnomania.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gnulinuxforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gnuworldorder.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goclix.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "godalivetpalandet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "godfilm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goedekortingscodes.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goedekortingscodes.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gofriends.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goizalde.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "golayamadam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gold-bird.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gold-diamondltd.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gold-fm.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldband.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldbug.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldcreek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldenagefoundation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldenberg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldencircle.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldenclub.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldenhouse.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldenwolrd.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldfingermusic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldfm1031.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldhill.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldstandardtrust.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goloaninsurance.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "golosovanye4you.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gomezites.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gomicrophone.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goncalves-admredes.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gondon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "good-cd.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "good-know.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goodenglish.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goodlink.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goodopportunity.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goodpeople.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gopri.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gopronow.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorakhpurclassifieds.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorby.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gordas.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gordion.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gordvorets.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorepriest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorgeouslyflawed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goriki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorodabakan.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorodabakan.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorodabakan.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorodabakan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorodivanovo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorodruza.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorodyaroslavl.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goroscop.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goroskop-sovmestimosti-znakov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goroskop-sovmestimosti.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goroskop.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorstom.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gosarh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gotepisodes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gothicsite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gotobooks.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gotovka.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gotriage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gotver.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "governmentjob.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goviralnow.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "govno-site.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "govnohosting.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gpcs.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gpl25.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graberbooks.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gracia-club.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graciasmarvin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graduados.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grafenberg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graft.spb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grallersdegegants.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grand-books.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grand-knighki.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grandi-books.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grandstarcourier.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "granit-capital.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graphe.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graphicspace.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gratis-hosting.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gratuitweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gravityresearchgroup.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grazhdanskij-advokat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greataltrock.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greatgooglymoogly.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greatrenumbering.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greatscholars.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greekweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "green-factory.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "green-laser.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greencocktail.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greencross.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greendragonsearch.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greengarden.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greengrocery.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenland-estate.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greensph.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grenade.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grend.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greyhackcentral.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greystonesscouts.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "griendencollege.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grigorev.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grijpskerk500.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grinday.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grindgore.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gripencrossfit.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gripwenab.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grishavirus.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grizzlys.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gromovphotography.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groomlake.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grotesk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groundfm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groupx.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grovecity.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "growme.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grumpyguy.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grundskoleboken.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grupatvogzivota.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grupos.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gruppa.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gruzchiki.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gruzchiki74.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gruzinfo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gryte.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gtonline.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guadalinfoconlaroja.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guardedbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guardian-codex.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guarrato.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guategmala.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guayaquil-consort.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gubernia37.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gubka.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guejarsierra.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guenther-freitag.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guernica1913.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guerrillaradio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guestby.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guestnetscript.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guiasescapate.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guide-voyage.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guidopedia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guillemagullo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guitar-strings-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guitarfreak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guitarreria.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gulabovski.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gulliwer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gulsot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gumbo.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gundemguncel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guruworld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gustarfsberg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gustavo-lima.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gustavscelmins.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gusuraman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gutegutscheine.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gutegutscheine.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gutegutscheine.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gutendag.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gworld.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gymbase.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gymnasium56.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haasonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "habahaba.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "habarovsk.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hachimijiogan.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackengine.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackerinfo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackers-networks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackersw0rld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackerzbug.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackingfever.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hackney.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hadika.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hafizkadir.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hair-carekit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hair-extension.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hair-extensions.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hairbrushes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haircareblog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hairhardstyle.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hairlossadvice.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hairphoto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hak-zona.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hakasia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hakerzona.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "halcraft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haleluyah-asuubabi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "half.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "halneff.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hamletstudio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hammernews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hammerstorm.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hanakaru.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "handmade-club.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hangargeek.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hanisirfan.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hannover-96.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hannover-reisen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hanoicapital-tanvn.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hanomag-tractors.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hansa.org.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happu-dinero.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happy-face.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happy-finance.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happy-space.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happycore.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happydad.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happydota.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happyexwife.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happyfuture.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happygreats.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happyhumans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happyindia.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happyscubadiving.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happyweekend.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hapronailz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harabar.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harabar.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harabe.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hardcore-hooligans.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hardwareforum.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hari-katha.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harray.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harriedrecords.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harrietjohnston.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harryagustiana.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harrypotterclan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hassan-kuordish.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hassellunden.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hataonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hate.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hatsuharu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "have-it.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hawaiiafro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hawkrovers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haxland.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hazyhosting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdlooks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdrezka2018.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heade.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "headphonesinear.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healmyhearttoday.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healtbeautyturkey.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "health-road.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "health.gd", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "health24.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthandglow.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthchoice.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthmanager.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthstyletips.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthymen.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthyweblife.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heart-cartoons.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heatherbells.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heatingequipment.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hebbelabi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hebrew.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hecking.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heg.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heikki-mikkola.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heinzencastellano.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heist-clan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helenssjoholm.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helga-fest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helikopter.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helikopters.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellokashmir.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellomyword.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellonews.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellorussia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hemorroi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "henkpille.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "henri-feuillade.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "henrymercado.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hentaizm.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herbalifereport.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herbers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herdwilliam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heredapoxetine.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hergeandtintin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herila.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heroes3stat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herrald-skeeleren.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herumixer.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hessenheim.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hevrishut.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hexatech.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heybyrdie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hf-rpg.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hhristov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hi-million.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hidden.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hien.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "high-school-atka.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "higheducation.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "highintegrity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "highnation.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hightechone.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hillexplorer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hillroadgarage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hilltopsurgicalhospital.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "himarijuana.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hindustantimes.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hinduworld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hirecities.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hispalazarus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hispania.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "histkult.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "historiadebagua.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "historicizam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hitech-news.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hitfm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hithouse.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hitmyheart.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hitpointer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hitrow-move.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hivault.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hkoreatv.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hls-tutorial.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hochuvrotik.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hochzeit-saufzeichnungen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hodeis.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hofmannenhofmann.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hogvorts.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hohma.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hokkaido.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holdingcelebrations.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holidayclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holisticdevelopmentagency.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hollabanken.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holostyak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holygrove.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homake.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homedev.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homedeveloper.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homedeveloper.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homegardendecoration.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homepal.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeschoolinkorea.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeworld.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeyx.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homofo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homophones.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homyak.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "honguyensy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horcajadadelatorre.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horde-entertainment.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horizonmail.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horizontalsystems.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horseplanet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horvatia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "host-morezar.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostcloud.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostfree12.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hosting-rus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostingelite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostinvest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostonssd.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotbabe.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotel-bella-muerte.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelbiz.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoteldvorik.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelitalia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelsalzberg.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelsantalibera.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotiii.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotnewsnl.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotperiscope.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotpopky.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotscripting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotsmi.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "how-to-build-computer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "how-to-write-a-book.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howlers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howmuch.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howmuch.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howtostopsnoring.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrjob.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrkfamilylaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrmafia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hsog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htmlandcss.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htmlcssphp.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htmlcssphp.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htmlcssphp.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htmlcssphp.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htmlnet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htmlweb.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "httpd.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hudeem-vmeste.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huertoydesamparados.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humanesdemadrid.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humanewolf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humblecraft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hummel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humor-web.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "humored.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hungarian-united-church.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hungaryz.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hunterscrolls.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hustlerstate.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hvhercules.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hvorschool.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hvylya.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hydrochlorothiazide125.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hydrolyze.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hyperspace.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypexstore.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypnoseduction.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypnotizedgirls.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-forum.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-lab.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-make-love.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-prince.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-r-a.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i88i.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iamlegend.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iamsadmax.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibuprofens.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icecreamika.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iceflow.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icehost.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icon-programming.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icons4free.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iconworld.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iconx.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icq-world.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icst.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idanie.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ideahub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idealabs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idealbody.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ideeaanzee.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idiomasdelmundo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idmaster.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iegatpracticetest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ieiscccuba.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ig-plastik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iggies.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igra-prestol.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igra3k.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igrodrom-kvest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igrovoi-klub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ikaros.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ikerepc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iklan-baris.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilericikadinlar.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilikepenguins.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iloveporn.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilovesnow.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imagealbums.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imagecom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imagen891.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imaginescape.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imakash.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imeria.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immoraldoctors.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immortal-it.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imperiyashop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impossiblechoisir.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imprezer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impudence.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "in-books.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "in-crypto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "in-love.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inanaji.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inanan.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inanec.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inaned.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inblank.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inceptionband.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "incrediblenews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indeika.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "independentpartyofamerica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indexhost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "india-ennenga.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indiandramasonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indiatechblogger.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indiaviral.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indico.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indiereview.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indignes-strasbourg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indir2017.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indiwebawards.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indiya-kino.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indlish.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indnews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indoface.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indofountain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indoidnews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indonesiatrip.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indotravels.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "indramas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "industrialalpinism.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inetuser.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infiernoalgecireno.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infinitenews.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infinityrecruitinggroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "info-compusciencetech.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "info-days.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "info-free.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "info-it.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "info-obzor.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "info-sell.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infobasquet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infobiznes.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infobrest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infocanada.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infofp.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infogai.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infogate.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infogroups.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infohunter.education", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infoiinfo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infoindia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infoislamharian.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infolead.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infomail-online.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inforabota.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inforge.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inforok.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infoschool.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infosystem.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infoteka.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infowheels.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ingeniumsociety.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ingushetia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inhere.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inkjets-inks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inkliners.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inkognito.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inkognito.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inkognito.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inkognito.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inkor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inline-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inmaaa.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inner-vision.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innogames.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innovationbranding.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "innovative-trading.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inovasirumahku.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insanepyro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insideperu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insider-invest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insiders.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "instantpage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "instrukci.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insulations.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insurance-companies.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insurancecompanylive.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insuranceleep.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insurancenews.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insurancequotes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insurancesaman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insuredcloud.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "integrishield.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intenirphoto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inter-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interacthindu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interc0der.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interesting.ac.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interestingfacts.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interior16.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internacionalista.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internalframebackpack.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internally.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internationaljoustingleague.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internationalweekly.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internet-drive.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internet-gazeta.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internettoday.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetzaim.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intersexualite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interslang.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intim-24.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intim-ru.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intomsk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "invaded.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "invest-stroj.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investgold.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investion.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investmonitor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "invitebiz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "invito.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inwit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inzeitinteractive.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iocorp.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iossearch.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iparenda.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipclabs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipcmali.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iplookup.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipmatic.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iptechnology.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipushmail.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iqos.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iran-best.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iran-speedex.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irancenter.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iranconnect.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irandroid.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iranfreshfruit.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iranlinks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iranpedia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iraq2u.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ircoholik.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ircsapiklari.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irfanweb.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irinaf.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irkutsk-studygood.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irma-gadalka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ironmongery.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irontigers.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ironwind.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iruniruten.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isabellzaloof.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isakow.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isimonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iskorka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iskurturkiye.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islam-2day.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islam-azeri.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islam-doc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islam4all.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islam4congo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islambolivia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islamdersi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islamisgreat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "islamnews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isletmenlikkursuankara.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ispanika.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ispaniola.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ispymissions.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "israelitopbox.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "istagb.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "istudentpro.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-blog.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-ebook.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-expert.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-perm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-volgograd.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "italiana-lacrima.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "italiansrit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "italk.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itbrouwerij.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itiweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itlog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itperm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itraffic.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsalan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsoluciones.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsupport24.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivanovka.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivanovocity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivermectin.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivisa.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iwebsolution.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ixtan.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izipik.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izmir-media.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izmireskortlari.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izmirtemizlik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "izzyontour.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ja-sobstvennik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ja1deijssel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaago-pakistan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jabboworld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jabsolutions.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacaranda-deutschland.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackets-coatsplus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackmail.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jadedmonkey.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jagerkin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jahit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jailstorm.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jakegyllenhaal.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jako.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamaica.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamiepleasants.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jan-graca.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janavish.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jannehonkonen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "janvanmechelen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japanchiropractic.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japanese-imperialism971.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japanroll.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaredonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jarquedelaval.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "java-fan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "javabot.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "javi-soleil.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "javiersanchez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "javorina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaybeez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jayhost.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jayjardine.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaypark.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jazzab-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jazzapart.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jazzband.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeancarlos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeangarcia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeannotbel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeanphilippe.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeans-butik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeans-moda.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeanslee.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jecnetwork.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jedi-master.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jedi-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeep-diagnost.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jenelle.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jennysource.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jessieabraham.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jesuscapitan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jesusnazarenobaena.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jetcraft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jewelleryoutlook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jhost.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiangmen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jiheng.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jk-rjevka.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmedesign.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobfresh.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobrus.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobsportalbookmarking.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobynet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johncook.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johnwinter.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jolette-hernandez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joletteperu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonatan.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonbarron.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonstar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jootshop.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jophson.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jordanprice.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jorgenegrete.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "josephcz.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "josephmarino.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jourbook.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joyfulevents.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jozefkvasnica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jphost.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpvermogensregie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jsphys.org.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jukovka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jumardotaekwondo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jungle-forums.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jungschuetzen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juniorsambo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "junkiedownload.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "junomessenger.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jurislex.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jurist.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justanotherday.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justinsinkula.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justpdf.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justrighthsc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jwompa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k9lady.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k9life.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ka4ka-ru.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ka4ka.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kabardinka.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kabardino-balkariya.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kabluchek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kabluchok.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kachaem-knigi.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kachka.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kadet.net.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kadykchanskiy.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kagomesashi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kakdolgonline.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kakofotmitzaim.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kakofotmitzaim.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kakofotmitzaim.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kakofotmitzaim.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kakofotmitzaim.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kakpoluchitzaim.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kakpoluchitzaim.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kakpoluchitzaim.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kakpoluchitzaim.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kakpoluchitzaim.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaktus-tour.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kakvzyatdolg.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kakvzyatdolg.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kakvzyatzaim.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kakvzyatzaim.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kakvzyatzaim.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalambur.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalambur.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalaskvintetten.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalendarabiturienta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalina.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaliningrad.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalk-shop.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalleanka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalligo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalmykia.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalmykia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaluga.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaluga.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalugin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalyazin-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamasutra-training.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kambistories.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamchatkatravel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamchatkawinter.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamennyj-pisatel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kameno-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamilla.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamiyo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kanapa.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kanctovary.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kano.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kantube.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kapanlagi.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kapital-kredit.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kapparhokappa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaputtendorf.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karabah.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karabah.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karachay.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karantyn.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karaoglanis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karatesamurai.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karawane.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kareenaworld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karelia.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karelia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karelia.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karelin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karen-homestay.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kargas.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karimova.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karlskronajk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karlson.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karmatrend.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karniz.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karr.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karramba.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karriharju.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karstransport.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karta-baikala.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kartonki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kartpower.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kashifshah.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kashousing.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kasparovru.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kat4at.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katalogharga.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katan-stroi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kate-beckinsale.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katenka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kateryan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kateryantv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katiebenson.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katrelleonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katushka.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katushka.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kavkaz.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kawaii-dollies.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kazan-tury.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kazangoforums.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kazanusadba.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kazino5.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kazna.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaznur.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaztest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kedi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keithazzopardi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kelamanproduction.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kelleylatino.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kellyvoice.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kemsa.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kemsamnhatban.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kendrick.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kennewell.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kenpobolivia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kenpotalca.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keramed.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kertis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ketemulagi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ketgioisu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevansizemore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevincoynepage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khaki.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khakim.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khalidmail.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kharatinoil.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kharkov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khmerlive.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khoteyev.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khukhrain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiasarnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kietblog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiev-live.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kilkimzaibu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "killmebaby.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "killmenow.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinanbudotenero.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingbot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingliey.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingsound.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kino-boom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kino-room.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kino-zavr.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinobag.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinobarashka.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinofest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinofile.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinofilmionline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinogold.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinograd.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinohi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinokub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinolex.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinology.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinoscope.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinoserver.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kirka.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kislovodsk-zamok.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kismyder.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kisulki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kisumuterraceapartments.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kisvasut.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kitchenlove.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kitchenware.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kite-surf.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kits-graphiques.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kitten-advice-forum.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kizkulesi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kjccradio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kkangeli.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klaxon.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klementijgerta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kliki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klikmarket.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klinkov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klub-zajmov.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klushka.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kniga-ru.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knigareceptov.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knighki-knighki.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knighkidoma.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knighulki.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knigi-free.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knigi-na-dom.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knigi-zdes.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knigifast.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knjazevac.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kobovec.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kodifirestick.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kodioso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kogotok.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kogotok.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kolhozik.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koloradskij-zhuk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kolorwell.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kolyapetrov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "komarh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "komintern43.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "komitur.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "komment.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kommunistienliitto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "komplekt.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konata.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konf.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kononenko.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konsultacii-buhgaltera.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konsultaciya-astrologa.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konsultaciya-astrologa.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konsultaciya-astrologa.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konsultaciya-astrologa.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konsultaciya-astrologa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kontikiindustries.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kontrastonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kontur.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kopany.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kopeechka.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kopeyka.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "korablino.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koreanpearls.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "korespondent.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "korn-klan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "korolevstvo-movie.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koroli.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kortarsmagyarfesto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koshakovo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koshechka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kosovo.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kostenloses-forum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kostroma-city.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kostroma.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kostroma.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kostroma.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kostroma.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kotaev.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kotka.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kotoopros.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kozlov.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krabathor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kraftek.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krakozyabra.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krakozyabra.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kralenparadijs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kranservice-alzey.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krasa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kraski.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krasnaya-nit.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krasnodarkrai.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krasnoyarsk-24.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krasnoyarsk24.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krasotkafirm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krasotki.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kreditonline.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kreditor.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kreditovnet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krilov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kripa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krishnendu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kriston.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krok.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kromciri.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krosovki-nike.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krubik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krutilka.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krystal-framework.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ksem.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kseniya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kseniyakoroleva.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ksenomorf.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ksk-raduga.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kt-motors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kteatras.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kucukkaymakli.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kudoran.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuepper.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kukutza.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kulinariya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kultur-werkstatt-wulfen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kulturistika.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kumaraguruparan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kunashir.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kupipled.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuponmail.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kurd-yogurt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kurgan-city.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kurgan.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kurgancity.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuropatina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kursk.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kustosija.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kutvonen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuzik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuzinea.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuzov-plus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kvartira-grad.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kvartiragrad.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kviskoteka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kwork-garand.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kyrgizion.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kyzyl-senir.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "l2relax.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labandadelexpreso.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labirint.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laciana.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lackan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lacuna-vermoegen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladanivabelgium.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladiesrapide.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladocu.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladymayonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladysecrets.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladysecrets.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laemiliafutbol.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laguterbaru.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lahirusblog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laity.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lajarana.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lajauria.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lajme-shqip.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lake-baikal.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakewinnipegdatastream.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakorona.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laleli.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamalapalabra.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamorralla.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lampbooks.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamper-design.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landloperfm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landofmerlin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landscaping.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "landware.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lankana.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lanny.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lapdance.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laperla-chemnitz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larch.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lareduction.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lareduction.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lareduction.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "largest-soldiers.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larimercolorado.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larmenta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larondenet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larser.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laser-toners.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasersolutions.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasix-medication.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasmesas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lastbooks.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lastmile.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lastmohicans.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laten.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "latia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "latinmusiccollection.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "latviaonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laubo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laurainnes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laureaty.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavamine.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavhire.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavitagarden.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavka.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavochka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawzakon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "layflamso.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lazibeach.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lazonacartagena.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lazywaves.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lcsoftware.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leadercreative.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leaderfreight.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leadersaudit.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lean-consulting.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leandromarcolino.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learn-this.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leatherstreet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lebensinselparaguay.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lechenietravami.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lechite.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leddeluxe.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leech.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leetbunny.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leflox.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legacygame.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legacygame.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legaliz.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legalnews.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legalsrit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legendgrafix.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leggyeggy.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legkie-recepty.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legko-pohudet.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leko.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lemonardo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lenemes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lengua-alemana.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lenguasgermanicas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lenina72.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lennard.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lennox.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lennyendewespen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lenorefan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lentanews.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leonardofavio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leonplast.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leper.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lephilnet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leprekon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lerika.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesargentinas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lespatriotes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesportmusic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letchikleha.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letscrackit.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letturaveloce.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "levaquin750.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "levelsoft.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "levothyroxineonline.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "levs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lexapro-price.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lexicore.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lexifax.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lexis.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liberalis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libertacao.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libertis.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liberty-host.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libertyland.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libractes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libresoft.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libyanexpert.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lichnyj-astrolog.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lichnyj-astrolog.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lichnyj-astrolog.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lichnyj-astrolog.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lichnyj-astrolog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liderok.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lieben.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lienhuyghebaert.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lier.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "life-tec.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifeandhealthtips.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifeasgame.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifecoachkatrien.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifecraft.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifenews24.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifetimefitness.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifexpert.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ligneclaire.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "like-boss.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "like-rabota.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lilisg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lille.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "limbo-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lime-host.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lime-host.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "limiturls.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "limouzines.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lincasonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lindseyfansite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linebooks.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lingeriecollect.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linguaromanica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "link-group.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "link-knighki.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "link-list.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "link2link.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkbooks.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkcat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkdolar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkinbooks.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkinparkoutpost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkportal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkposts.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linksafe.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linksite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkto.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linocolombo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linotype.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linux-admin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linux-pc.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linuxarequipa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lionchita.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lipeck.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lipeck.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lipetsk48.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liquidflash.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lisa-mainz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lisas.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lisavrobinson.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lishayut-prav.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lishayut-prav.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lishayut-prav.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lishayut-prav.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lishayut-prav.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lissabonsite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "listener.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "litebooks.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "litehost24.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liteminer.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "literacychannel.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "literatura-portal.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "literaturka.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "litiab.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "litportal.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littlebar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littlebootshonduras.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littlerose.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "live-knigi.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "live-news.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "live2play.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livebestbooks.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livekey.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livelonglife.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livemomentum.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livestone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livestrana.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lizaminnelli.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "llanelli-radio-club.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "llanowar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lnk.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loadme.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loanfreeze.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "localassocier.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "localized.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locall.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locatornet.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locksmithedenvale24-7.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locomotiv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lodger.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loftyideas.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logitheque.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logolabben.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logolando.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logue.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lohkoketju.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loiit.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loire-en-bateau.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lolcosplay.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lolfunny.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loliel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lolipops.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lomza.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "londonhealthcare.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "longfordlodge.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "longlink.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "look-books.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "look-info.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loopool.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lorbooks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lordbyron.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lorddominion.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lordsesshoumaru.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lorena-salido.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lorenzodeangelis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lorn.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "los-diablos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loschilums.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "losdisidentes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lose-weight-now.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "losemperadores.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loseweightbaby.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loseweightin5days.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "losflamers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loslegendarios.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "losmiserables.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "losmolinos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lospozuelos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lostprophetschile.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loszucoz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lotekk.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lotereiki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lotusweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "louboutin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "louboutinshoessale.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "louisa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "louiserutkowski.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "louisvilleconnections.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loutro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "love-and-hate.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "love-navigator.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "love-planeta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovebirdhut.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovedaleschool.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovedutch.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovelee.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loveless.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovelybook4u.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovememories.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovemoon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovenet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loverussiangirls.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovetowork.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lovlyhorses.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lowcosthost.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lozhka-mernaya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lpchemicalsolution.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lpkosovo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lstu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ltailshort.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ltime.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lual.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucerin.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucia-art.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luciferblog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luciferianism.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucky-time.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luckyabonent.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luckyemail.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luckymice.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luckyrent.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luden.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ludmilla.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ludmillaewagner.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ludo-giuly.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luematecidos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lugros.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luisanalopilatogrecia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luisaviles.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luisnavarrosl.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukasfelder.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukasw.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lumchan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luminaproject.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lumpenrock.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lumpy.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lunarhost.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lushnja.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lutherus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luxarchive.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luxemburgsite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luxuryspeed.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luzica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lyap-lyandiya.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lydiawebfans.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lynnesbian.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lyubov-sovmestimost.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "m-exchange.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mabusalah.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macarenagomezfan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macaroons.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macautocouture.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "machiavelli.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "machinatio.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macho-i-botan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "machupicchu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mackanz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mackenziedatastream.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madameblueimages.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madhawaweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madian.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madisonprocaccini.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madluging.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madrasareforms.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madskills.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madteam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mafiaclan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mafiaclub.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magadan.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magadan.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magaria.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magaso.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magazin4ik.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magazone.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maggiemcgee.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magicalwishes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magicball.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magicbar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magiciansofchaos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnitola.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mahadihasan.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mahjonggames.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maid.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maikhuong.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mail-delivery.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailbase.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailboy.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailcubexs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maildrops.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailex.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailexpresso.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailexx.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailexx.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailexx.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailjunkey.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailpass.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mailtracker.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "majestio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makemoney-plan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makeupevelinua.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makingmemoney.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makingmoneyathome.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makingmoves.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makohu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maksa.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maksmedia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maksonshop.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maksport.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maksutov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makuonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malahov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malaysia.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maldives-showing.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "male-cats-spray.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malibaby.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malikdeenarislamicacademy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malisheva-blog.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mallpass.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malmyzh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malvinas-falklands.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mamaznaet.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mamboo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mambos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mamburao.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mammal-taxonomy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mamunlyric.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manaspaul.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mandala-book.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mandarinplay.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mandefender.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mandelaeffect.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mangabond.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mangacat.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mangafreak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mangagaga.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mango-zajm.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mangoservers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maniazul.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mannenzang.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manuelboelstler.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manwork.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manyhotfiesta.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manytubes.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maquinasperfectas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maracit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marauderos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcell-jansen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marchellenevers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marchinghatters.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcusburghardt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mare-sylt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marga-marga.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maria-kirilenko.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariaisabel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marialopez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marianrivera.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marielouise.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marinapozzoli.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marinarinaldi.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marinella.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mario-ancic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariogarcia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marioserver.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maritlarsen.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marjoriebarretto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markantalyamasajsalonu-bayanmasoz-cim.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketgarden.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketingstrategy.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketplace.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markitanova-anna.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markjansen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maroshionline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marsafc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marshall-allman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marshop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martijnvdputten.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinassurfdepot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinkunc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martonveronika.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marvelo.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marxpark.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masakanibu.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mascarablond.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mascarbo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mashonkavortu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maslenka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masmusicaradio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masrilanguage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "massagekartan.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masshost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masterdesingweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masternetix.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mastervision.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "materiel-grand-format.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mathiveri.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matovaya-pomada.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattentaart.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matthewoshea.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mauricio-ochmann.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mauriciosilva.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mausoleum.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mavro.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mavro.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mavro.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxivisor.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxmanus.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxopen.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxwellcity.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxwellcity.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mayflowerbocawina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mayki.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maykitut.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mazartdesign.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mbfiles.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mc-teemocraft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mccommando.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mchaelkordomain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcsoneca.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meapbot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meapbot.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meapbot.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meapbot.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mebel-voronezh.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mebelshik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mechta.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medaliturki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "media-start.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "media4u.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediabooks.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medialinkz.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediamarket42.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medical-centr.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicalauction.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicalsite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicina-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediclinik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medifoto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medinc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meditrak.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediums.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medovoe.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medprozone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medrol.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medspecial.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medvedka-nasekomoe.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meepbot.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meepbot.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meepbot.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meeras.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meeting-server.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meetmyown.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megabook.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megahostingbr.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megalibportal.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megamillions.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meganmarston.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megaparadise.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meharossii.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mehrgarh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meiler.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meineziege.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meiyi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mejovonakowogov.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mekanismo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mekatronika.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melagenina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melaniec-thebest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melanin.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melissageorge.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melkiran.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "melvinsfrance.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "memorylines.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "memurvadisi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "men-costumes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mendel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menselijkembryo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menswear.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mentalproblems.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menureader.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "menzel4you.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.co.cr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibrefz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercyseverity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meridiangroup.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "merikserver.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "merkattumaa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "messageclient.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "messcoutsandguides.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meszlenyiattila.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metafiz.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metagaming.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metal-madness.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metal-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metalcorenews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metalmaniac.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metalsoviet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metalunion.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metamorfosis.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metaphilic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metayou.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meteocuenca.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metformin365.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "methotrexatee.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "methotrexates.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metrika.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metronidazolee.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metronome.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metrothessalonikis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metroval.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meulocal.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mexicosrit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mezquetillas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelabbas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelbondar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaeliannetta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelkorsgill.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelkuehn.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michel-kratochvil.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micheladisavino.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michelletrachtenberg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micospa.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micro-credit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "microbiologist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micromaid.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "microtel2notch.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "microtube.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micsoft.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mideo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mieszkania-wroclaw.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mightytext-ios.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "migrations.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "migueloblitas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miguelpallardo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mihanwebtest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikaelk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikelpradera.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikino.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikino.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikino.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikino.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikrozajmy-na-kartu.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milanoclownfestival.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milhistwiki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "militaryfetish.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miller-shop.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "millonario.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milmiedos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mimonia.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mimonia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mimonia.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minced.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mincom.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mindask.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mindjee.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mindresti.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minebitcoin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minecraftbestroyale.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minecraftdolarcube.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minecrafteasy.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minecraftgoldwar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minecraftjustone.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minecraftrealgold.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minecraftruns.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minecrafts.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minecraftwin.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minecraftx.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minefields.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minehash.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minelands.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minelight.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minestory.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mini-igra.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minialbums.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miniatomium.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minibikini.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minimal-nothing.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mining-club.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minivideoadapterssales.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minocyclinee.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minocyclinehere.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minocyclines.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minorisa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minsk-city.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minsk-cops.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minsk-music.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirasmun.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miraxe.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miraxe.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirdetaley.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirkino.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirknighek.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirknighek.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirnesnet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirnews.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mironov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirrormirror.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirtazapine.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirvolgograda.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirwild.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirwild.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miryam-martinez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirzetonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miscuadros.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "misspoliticsaustralia.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "missthetoro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "misstress.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "missyjay.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mittendorff.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mividasecreta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mix-books.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkmedien.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mlnews.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mloska.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mmcase.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mmuclassifieds.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mnogoknighek.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mnogoknighek.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mnogoknighek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mnogoznai.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mnotrioesdp.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mnrloroli.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mo-en-karim.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobijo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobile-ivr.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobile-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobilepartner.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobilesnewsworld.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobilestuff.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobiletirer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobistartv.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobolight.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moda-line.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modanacrho.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "model-school.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modeli.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modem.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moderndukes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modernliferoleplay.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modulebaan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mogilev-forum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mogomix.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mohabatein1.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mohamedalibenammarmaba.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mohammad-yarahmadi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mohammadreza-bakhtiari.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moheyuddin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moi-sait.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moikolhoz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mojartech.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "molenaagtekerke.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "molinillo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "molletjesveer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mollyringworm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "molokov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "molot-tora.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "molot-tora24.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "momentalno.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "momit.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mommydigest.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monaco-info.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monacoexpress.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monays.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monde-oriental.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mondechenoafrance.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mondocellulari.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "money-earning.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "money-quick.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "money-transfers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneygrup.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneymania.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monforte.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mongolito.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monicapotter.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monika.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monitoring-servers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monjardin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monkeymills.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monohost.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monorail.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monstermoney.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "montehermoso.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "montoneros.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moom20101234567890.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moonlightpicnic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moonlights.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moonlighttheatre.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moonracer.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moralcompass.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moratilla.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mordovia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mordoviya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moreeducation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morenadacentral.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moretesting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morozyaka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morrowind-finland.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moscow.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moscownews.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moscowtimes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mosdosug.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moskas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moskva-city.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moskvagruz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mosobl.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "most.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motchirotchi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motherbrain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moto-texnika.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motoclubrker.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motringeneric.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mou-pmr.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mound.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mountbrowneguestcottage.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "movies-fan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "movietradition.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moviewatchin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moy-biznes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moybiznes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moyminsk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mozzak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mp3skull.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mpdu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mpebrasil.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mranimal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrcog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrcomer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrcyberpixel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrjunior.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrmanson.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrmosier.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrmostafaacademy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrnice.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msar.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mstudio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtvroadies.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muafakatmalaysia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muarstabyggmarknad.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muceniece.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mufid.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muhibbulislam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multi-fruit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multi-tool.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multilevelmarketing.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multimediaworld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multiplex.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multiplies.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multipuntos.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multistas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multitool.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multitraf.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multivideo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mundo-otaku.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mundofoto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mup-republicanos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muralart.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muratcileli.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "murciaprocuradores.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "murmanskforum24x7.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "murphy-law.net.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mursa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mursatov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "murtazamustafahirani.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "museodelistmo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mushka.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musicaporbolivia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musicgeek.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musichiphop.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musiclenta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musicrainbow.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musigama.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musikidersi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musiques-traditionnelles.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muskuratimorning.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muslimsoul.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mutual.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muzikanews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muzike.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muzprosvet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mvzstartpagina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mwinds.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-cars.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-education.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-finance.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-montenegro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "my-story.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myandroidfriend.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mybarcelona.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mybbcode.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mybestbook.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mybestbooks.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mybirds.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mybisnis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mybritney.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mychawinda.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mychildatschool.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myclon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mycommerce.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myconferencion.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydarkness.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydarksite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydistance.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydolls.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydomen.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myedu.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myeducationhub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myemailsender.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myfancyurl.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myfavmessage.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myfile.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygimp.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myhappiness.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myhell-anonim.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myhotgirls.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mykarelia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mykolhoz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mykurgan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mylawer.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myled.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myltivarka.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mymagic.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mymailboxpro.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mymailspace.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mymanagement.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mymusique.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myonlinemovies.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypcb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypersonalpage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypogljad.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypskov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypsychicreadings.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myremont.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysaymk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysecretstylist.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myservik.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myshikarpur.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysociety.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mystery-box.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mystgames.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mystic-falls.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mystreet.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mystudymap.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysupplements.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mytests.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mytraning.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mytuzla.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myvologda.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mywapforum.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mywebexperience.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mywebpharmacy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mywebserver.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myweightlosstips.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myzarabot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n3rd0rama.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nabeer.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nabiev.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nachalova.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nacnkabiltrim.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nacoree.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nadezhda.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naga-wedding.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naga.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nahtanoj.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nahttps.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nailclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "najiflix.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakazanie.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakenmodell.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nale-hosting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naltrexon.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanaka.love", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nandedbazar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naninossoftware.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanohatsolution.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanohostsolution.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanoshop.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nanotipbot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "napikuponok.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "napitok.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "napoleonoutlawed.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nappylaundry.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nappywashing.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naraboty.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nardpedro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "narodnaya-medizina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "narodserial.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "narushil-pdd.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "narushil-pdd.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "narushil-pdd.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "narushil-pdd.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "narushil-pdd.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "narutoshippuden.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "narutouzumaki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nash-server.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nash-shishtavec.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nasha-kahovka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nashareklama.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nashfutbol.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nashjurist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nasimblog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nasrabady.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nast.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nastunya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nat-neocron.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natalia-venezuela.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nataliehershlag.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natasa-theodoridou.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natasasavija.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nathenmaxwell.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nationalopera.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nato-stamps.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natura2000.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturaldisasters.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturliga.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natuurlijk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "navadebejar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naveka.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "navidarian.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "navinka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nawdar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nayapakistan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nazarenohuelva.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nazmulislam.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nebucadnezzer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nedela.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nedhome.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nedimon.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nedviga.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nedvizhimost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nedvizhimostthailand.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "needing.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "negativex.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neide.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nekondiciya.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nekrasowsky.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nelegal-edition.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nemagiya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nemirow.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nemkoff.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nenapu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nepal.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nepali-fonts.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nepalsnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neptunosrefugio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerd.gallery", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerdgift.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerdsuits.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nervi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "net-script.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netelite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nethealth.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nethealth.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nethound.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netlevel.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netmania.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netmouse.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netoborona.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netor.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netracks.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netreviews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netschool.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netslum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netsphere.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nettiger.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netvpn.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "networkarena.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "networktools.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netzer.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neurontinprice.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neuroticosanonimos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neva-star.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nevam.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newbackup.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newbies.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newconcept.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newenglandradioforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newforex.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newhomedesign.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newparrot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "news-of-russia.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "news-police.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "news-zp.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "news17.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "news24rus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "news29.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "news60.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "news89.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "news89.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsbomba.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsforum.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsforyou.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsinformer.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newslanka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newstel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsthai.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsticker.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newstraveltoday.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsworld247.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsyclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newtambov.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newtambov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newtlgpacks.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newusatoday.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newxit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newyearsdishes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newzashitnik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newzealandadventure.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nexiumgeneric.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextright.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nextstepstudios.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nexussystems.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nginxtest.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ngorod.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nhatrang.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicat.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nice-links.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nicesurf.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nickmandler.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nigeriaportal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nightblue.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nightbox.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nightmarejoker2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nightoutrecords.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nightstar-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nightwood.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nihilocomunidad.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikesoccerbodotoutlet.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikhilramakrishnan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikitina.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikosoikonomopoulos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikosverths.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nilefi.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nimbus-net.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nimfomanki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nimus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninedaysmore.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninetyseven.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niniko.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ninja-corner.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nipponprinting.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nirmalroy.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niscemi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nitecore.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nivarussia.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nixcore.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nixplus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "no-data.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "no-terrorism.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "no-war-on-iraq.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noart.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nocturnos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nodde.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nonxsistent.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "norbert-wollheim-platz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordcity.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordicportalen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "normalized.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "normalporter.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "norrisautomotiveinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nortecultural.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northliner.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northtek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "northzone.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "norway.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nosmoking.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nostalgicinfinity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nostalgiktv.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nostradansacornella.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "not4me.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noticies.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notnewz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notrefuse.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novasprint.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novenopiso.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novezamky.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novgorod24.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novgorodinfo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noviceman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novichek-plus.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novickoe.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novobudowa.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novogimn.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novoodesabibl.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novosel.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novosti-novorossii.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novosti-novosibirsk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novosti-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novosti-tv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novostimira.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novostionline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novostiz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novostroyki.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novsti.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novye-kuhni.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nowebsite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nozel.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nsoiran.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nssfchile.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuclearforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuclearhell.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuclearnation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuclearsky.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nudeandfresh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuggit.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nugush.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nukeportal.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nukeportal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nulledme.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nulleds.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nullshare.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "numancia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "numerouno.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nunoefabia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuria-fergo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nutritious.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuzhenkredit.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuzhenkredit.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuzhenkredit.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuzhenkredit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nyiarlumar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nzpost.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "o-dvor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obatjantungrematik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obbr.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obecvinodol.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obed-doma.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "objetodestaque.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oblivious.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oblojka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obnalichka.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obnalichka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obocat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obomne.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obrabotka-zakazow.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obzory-evgeny.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "occult-magick.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "occult-magick.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "occultism.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "occupations.org.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "occupybakersfield.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ocean-of-love.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oceanborn.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oceaniahome.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oceanshaman.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oceansurplus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ocenka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "octopub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oculta.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odessalove.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odinraz.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odnostranichnik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "off-rabota.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "office-house.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "officeface.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "officert.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "offpageseopro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "offshoremoney.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oformit-zajm-kruglosutochno.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oformlaj.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ogarkovo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ognemet.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ognyan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ogogo-knigi.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ogorod-money.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ogurishun.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ohrange-music.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oidrava.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oilman.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ok-travel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okanaybek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okcasino.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okhanvatansever.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okkultemysterier.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okna.ua", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oknavdom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oknopvh.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okotelecom.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olax.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "old-times.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "old-tomsk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olddisk.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldfriends.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldiesradio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldscans.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oldtavern.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olgallery.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olgaserebrennikova.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olimpoao.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olivia.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olivialufkin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oliviercreation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olympia-blerick.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olympiamanzanilla.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omanhr.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omaxe.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omegachess.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omestudios.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onceuagain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ondajoven.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "one-host.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onebookstore.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oneclick2books.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oneclickbooks.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oneclickmoney.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oneclickmoney.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oneclickmoney.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onemonthcamera.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onestepbooks.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onestepbooks.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onestopshop.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onetown.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onfilm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onidesign.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onkologiya.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-carhire.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-jobs.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-news-usa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-pochta.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "online-taxes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinebupropion.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinecrafts.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinedapoxetina.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinegamesforgirls.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlineknighki.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinepaydayloans365.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinesorusor.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinetadacip.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinevardenafil.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlineviewers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinevoting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinews.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlineyearbook.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinezaim.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "only4free.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlybooks.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlylithiumhere.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlylovastatin.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlyveg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onstat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oositk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opaco.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oparamo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openbusiness.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opencity.spb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openmind.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openproton.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openslava.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opensourcex.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "operatic.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "operationturkey.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opioneers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opisrael.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oplata-mvd.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oplata-vklike.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opopulechki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opos.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opsystems.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opticoolheadgear.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optimed.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optisell.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oralight.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orangehome.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orangerock.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orbitaclub.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orcamarine.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orchestra.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "order-ftw.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ordercipro.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orderdiflucan.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orderomnicef.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ordervaltrexonlines.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orel-city.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orel.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orelblog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orelnet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orenburg-life.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "org-css.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "organicrootsfestival.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orientalcollege.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orientalcuisine.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orientalgadgets.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "originalpharmacygrup.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orion-rentals.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orquestas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orthopedic-shoes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orthopedicsalon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ortocraft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osagokasko.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osamabook.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osamatoon.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osankj.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oscars-web.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oscarsalas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osetia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osetinskie-pirogi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osetiya.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osetiya.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osobnyak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ostrovseocitra.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osvaldocontreras.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ot-vinta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otakuie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otdelochnik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otg-drives.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otomania.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "otterpops.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ottmarliebert.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ottomanbedsuk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "our-little-secret.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ournewsindia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "out-of-england.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outernet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outerspace.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outlaw-star.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overallscanners.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overcame.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overclockers.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overheek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overrated.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overside.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overtunes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ovez.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ovodakadarkut.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxaliz.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxbridge.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxigenoinformatica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oximedia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxygenated.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oyunoynuyalim.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ozel-ders.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p2p-tv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pablonadiecomotu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacemakers.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacificcycling.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "padisahbilisim.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "page-engine.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pahira.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pahom.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pakistanblogger.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pakistanheadline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pakistanientertainers.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pakistanpost.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pakostane-apartments.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pakpak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paleontologiadebagua.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palmiye.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palomalopez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panda-craft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panda-life.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pandakid.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pandelys.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panel-stroy.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panezai.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panoramacambios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panoramaphoto.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panoramiquesorganya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pantingly.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "panzers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "papabrand.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parabellum-barakaldo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parachute.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paradise-world.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paragonsigns.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parallel-worlds.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paralysis.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paramo-pineiro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paraplyen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parapsihologia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parasomnia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parastaran.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parfum-best.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parfumi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parlament.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parovozov.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paroxetine.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parque-batlle.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parquebatlle.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parroquiacorazondemaria.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parrotbook.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "particles.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partidolibertario.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partnerchik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partnerforex.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partnerobzor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partofthequeue.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partycoin.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pascal-ua.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pascualberniz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passive-work.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passivhaus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "passwordgenerator.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pastillased.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pastorello.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pastorluciano.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paszkowski.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patmanx.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patrice-carriere.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patriceonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patrikjohan.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "patriquefashion.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulini.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pauljackson.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulmarvin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulogarcia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pawnsoft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pawpatrol.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pazyarmonia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pbest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pc-soft.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pc-tech.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcbmodel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcdroid.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcnewsoft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcsafe.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pcsbrasil.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pdfbook-dl.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pdfbooksonline.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pdfflier.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pdflip.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pdfmanga.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pdfpedia.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pdfprostore.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pdfquran.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peacepiperanch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peakd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pearvn.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pebook.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pect.com.pk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pedalirovanie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peddyland.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pedrobotias.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pedromunoz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pedrosillo-delosaires.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pelhrimov-strmechy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peliculaonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pelmeni.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pen15art.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pena-party.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pena600.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penedo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penguinos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pennymail.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penopoly.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penopoly.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "penosa.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pens-money.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pensatore.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pensia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pensieridigitali.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pension-ua.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pensiun.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pensiunea-maria.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pentagram.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pentaquin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pentaquin.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peoplesliberationfront.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "percymagic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perdanabagus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perdita-capelli.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peredovaya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pereezd.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peremena.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peresypchanka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfect-dream.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfectcommunity.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfectme.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfectme.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfectosidiotaspunk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perfectworldbot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pericsope.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perm-l2.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "permak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perrybook.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pertwarp.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perupoemas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peruprogramadores.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peruviantravel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pervejshijistochnik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pervomaysk-city.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pescanetworks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pesnik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pesnitut.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pestpatrol.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pestra.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pet-cat-accessories.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petalsoft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peterbulckaen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petergudo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peterhome.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peterkotula.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petermuenster.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peticion.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petpuppy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petrarca.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petrochemprojects.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petsnews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petutility.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfcchavdar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pgazette.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pgmtechnologies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phantasmag.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phantomphans.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phenergan.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philipkdick.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philippekhau.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philipslater.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philipsmanythougths.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philology.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philwilson-green.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phiomegachi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phoenixfrequency.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phone-spy.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phoneinformation.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phonosynthesis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phosforum.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photo-design.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photo-travel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photobosco.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photochka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photodyna.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photowall.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phpbb-tutorials.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phreakaus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phuketroman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phuketstyle.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phukettour.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phukettravel.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "physio-im-appelbachtal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piadouwes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piaohong.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piatenko.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "picked.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "picme.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piedrahita.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piensa-escribe.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pierson.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pietbrakman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pietrosoft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pigzilla.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pindostan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinebrook.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinedadegiguela.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ping-books.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pink-check.school", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pink-panther.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinupbets.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pionierboat.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pipeclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piratesofthewadden.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pirogi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pisarzowa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pishgamiran.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pit-stop-sto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pitbullclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piter-print.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pitius.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pitomec.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piurvolium.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pivnica.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixel-history.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixelheaven.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pizdelka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pizzariaroma.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pk-master.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pk-soft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pkspskov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pkwebsolutions.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "placidoandriolo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planetmath.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planisware.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plannedgrocery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planning.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planshetnik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plaredo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "play-telochki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playdrop.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playface.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playsoftware.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playstation-network.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pleindedemsvaart.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plgr.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plumz.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plusbot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pmpm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podari.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podarki-deda-moroza.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podia.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podvenec.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poemasonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poemindia.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poetka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poetryinmusic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pogodavolgograd.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pogodok.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poimel.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pointpalace.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poisk-books.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poiskkladov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poiskrus.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poisoncolombia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poisonget-rid-ofac.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pokelens.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pokemonforums.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pokemongoclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pokupkionline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polak-import.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polemik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poletaem.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polina-gagarina.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polishhockey.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "politicalasylum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "politisor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polonialidzbark.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pomogidrugu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pomogite.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poobert.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poolsonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pop-culture.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "popki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poplavok77.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "popmundoforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poppingdance.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "popular-male-kitten-names.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "populardiets.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porka.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porkmart.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornohypnosis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornxxxvideos.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portablespeakers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portaladictos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portalpandalandia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portokalliali.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portugalivre.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poshe.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "posied.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "positronicmoron.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "post-anon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "post-office.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "postman.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "postmarka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "posutochno.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potosi-bolivia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "potrahushki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pottershouse.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pouchulu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poun.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "povarenok.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "povareshka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "power-magnetic.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerbalance.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerball.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerforpeople.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerplayer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powersubmitter.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pozitiv.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poznavatelno.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prageeth-niranjan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pragtravel.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pranafilms.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prashantcafe.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prasos.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pravagolosa.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pravo-brest-belarus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prayag.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prazdnik-volgodonsk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prazdniki-sait.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prazdniktost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "precambridge.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "preciadictos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "predatorworld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prednisolone1.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "predskazanie.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "predskazanie.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "predstavitelstvo-v-sude.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pregen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prelesti.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premierleague.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "premiumlegalsupport.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prepsiedy.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "preschoole.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "presnya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prestopizzas63.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prestupniki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prime-host.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "primitiv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "princemathew.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "princemolak.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "print-street.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "printmydesigns.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "printpoint.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privorot.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pro-kolhoz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "probonus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "probooks.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proctorial.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "productfurniture.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "professionalblog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "professionaleducation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "professions.org.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "professorwidget.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profielektrik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profilewatcher.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profilmonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profissionalstool.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prog-d.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prog-mailolder.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progamehackers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proger.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progon.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "programme-launch28-code854-com.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progressive.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "progressm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prohelpers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prohost24.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projection.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prolens-lankaran.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prolocofrascarolo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "promislovik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "promo-code.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pron4ik.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propecia.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "property-tax.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "property-tax.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propertyselling.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propolisturkiye.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propranolol.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propranololgeneric.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostavropol.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostitutka.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostitutka.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostodengi.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostor.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostozaim.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protanki.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protanki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protapnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protection.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protez.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protez.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prototayl.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protrolley.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "provera10mg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proverennie-kursi.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proverennie-kursi.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proverennie-kursi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proverochka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prowrestlingevents.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proximity.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proxytool.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proyectostep.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prozac20mg.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prozorlivec.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prushka.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prushka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psalmer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psazy.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psdpt-tpfd.gc.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psevdonim.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pshweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psihologonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psihology.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psinetika.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pskov-daily.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psphp.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psycenter.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychiatriepapezova.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychicfairnetwork.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psycho-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychologic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychometrictests.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychonews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychotel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psygame.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psyh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psyk-patienten.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psykologtidningen.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptboys.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptlibrary.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pturl.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pubsavoy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pueblocantabro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puenteviejo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puertodramaturgia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pullnopunchesradio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "punctually.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pungatv.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "punkas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "punkcolombia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "punknmetal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pupok.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pura-ponia.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pure-paste.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purewaterguide.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pursuable.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pushok.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pussycat.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "putani.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puthenthope.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "putnik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvpagario.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvplist.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pyca.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pyra-explorer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "q-and-a.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qalab.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qask.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qatartimes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qbasicsite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qeepintelligence.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qhost.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qike.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qiscience.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qmarket.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qseek.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qslstudio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quadcityjuggalos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quadomania.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qualith.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qualityworks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantumlink.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quatermass.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "queenstyles.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quena-artesania.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quentar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "questbars.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "questbars.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "question.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "questionandanswer.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quetico.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quezoncity.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quickerticker.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quicklinkz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quickshops.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quickvideo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quierosermercedario.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quierosersanta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiescent.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiet-downloads.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quietstudyactivities.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quintanadelmonte.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quintanilla.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quintobarrio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quisildenafil.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quizhub.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quizzen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quotable.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quotesofgta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quranpdf.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qvision.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "r-t-n.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ra-studio.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabatcity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabatz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabinson2005.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabota-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabotabiz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabotaemdoma.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabotaprofily.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rachaeltaylor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rachnacollege.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "racingfanclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radarcoupon.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radarcupao.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radarcupom.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radarcupon.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radarcupon.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radharanikijay.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiationtherapy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radicalfuture.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radicalwebdesign.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radio-az.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radio-bandit.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radio-club.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radio-mix.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radio-one.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radio-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radioaltamar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiocappissima.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiocrazy.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiodeluxe.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiodoblen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radioenam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiogomezone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radioharrastus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiohlam.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiohouse.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radioibiapina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiojackienorth.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiokukesi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiomacuto.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiomikelerentxun.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiomoodmix.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radionetcolombia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiopush.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiorecord.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radioremix80.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiosuperplus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiotataouine.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radioumbrella.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiounofm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiounost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radnickapartija.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raduga-tv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raduga4.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rafaeltuber.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rafo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rahayi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rahilworld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "railbus.fan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "railclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainbowcomputer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raintreatment.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rajofestival.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raksha-bandhanwish.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rallytrophy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ramiabusalah.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ramieres.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ramirito.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ramynetwork.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "randomarticle.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "randombooks.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "randombrainwave.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "randomkindness.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "randomsnapshots.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "randomstuffproductions.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "randomtest.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "randomthings.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "randyrhoads.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ranfics.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rangerfiles.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rangersloyalsite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rankia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ranking10hits.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ranksite.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ranksite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rantamplan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rapanui.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rapdinle.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rarefish.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rasberry.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rascript.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raserbajs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rashbogota.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rasheed-nuss.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raskruti.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raskrutka.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rastko-jevtovic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rateddomain.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ratiocinat.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ratusha.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ravik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raym.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raysmtp.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raysolutions.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raywisdom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "razborpoletovsite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "razdolnoe.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rbet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rcdrone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rctx.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdesigner.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdns.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readcomics.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readlater.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readless.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readmynews.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readpages.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reakcjonista.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "real-srebrenica-genocide.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realbiz.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realitytoday.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realkeywords.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reallovetab.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realno-money.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realrapfans.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realwebsite.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recessmonkeyz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recipeslist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recklessly.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reckoning.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recolor.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recommends.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recordstudio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recruitskill.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recycle.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "red-lightning.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "red-planet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redcabbage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redcardinal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redgeek.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redhillboardriders.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redhottube.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redhottube.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redhottube.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redhottube.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redirecionarnoticias.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redlinker.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redlionclub.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redparrotstudios.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redrafting.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redskullstuff.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redstack.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redtails.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redtomato.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redtsar2000papers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redtubs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reducto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reelnews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "referati.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reggea.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "region22.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regionethost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regionmedia.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regtech.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rejected-by-society.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rejected.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reklamy-led.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rekmedia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "relic.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "religiya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reloading.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remake-projects.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remennik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remi-decker.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remont-kazan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remont-rollet-izgotovlenie.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remont-rukami.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remontportal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remoteshack.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remoteworkertech.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rendez-vous.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "renovationsf.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rent-to-own-home.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reparation-traceur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "replacementrate.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "replay.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "replicagold.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reportercareer.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reportoid.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "republicafederal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "republik-sombora.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "requeue.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reregu.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reshebnik.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "restartperm.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "restaurantdetgulepakhus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resumelibros.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reticle.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retics.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retroslave.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "return-profit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revaloriza.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revconnect.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reversedns.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reviewdetector.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reviewsonline.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revis-online.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reviviendolavilla.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revizor-online.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revizor-online.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revizor.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revizoronline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revolutionaryireland.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revolutionofgaming.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rezistor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rf-gamer.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rfbcnet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rfnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rfomega.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rgdt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhye.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rian.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ribafs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ribolov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ricardoquaresma.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riders.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rifugioselvabella.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rightblog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripadores.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripcityproject.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riscoshardware.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "risunki.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riweco.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rknews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rmdb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roadandtransport.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roaster.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robaxin750mg.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robert-ewert.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robertgonzalez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robertmusil.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robot-invest.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robotbattle.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "robuxkingz.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rock-base.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rocketsworld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rockfs.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rockworldteam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rodeodrive.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roditely.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rodrigodematos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roelonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rogaineforwomen.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rogarden.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rogell.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rogerdeflor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rogiershikes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rohansingh.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roiblozyxfswe.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rolandog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roligh.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roligt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roliki.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rolstoelappartementen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romania-film.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romanos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romantik-fm.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romantik-fm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romantik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romapk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ronan.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roofpost.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roomcube.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roomonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roques.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosabrasiv.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosalopezcortes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosamystica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosanerolife.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosenberg-fansite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosenkavalier.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rossia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rossiyskaja.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rostov-arena.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rostov.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roswellcity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rotanaval.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rotary.org.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rotaryceuta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rotaryfunds.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rotate4u.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rougeetblanc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal-life.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal869.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royalrace.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roycampbell.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royger.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rp-megapolis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rp-murk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rsdns.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rsecure.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rtparket.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ru-acyclopedia.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ru-adv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ru-auto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ru-sale.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ru251.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubashki-opt.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubashki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubber.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubiales.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rublev.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubooks.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubreklama.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rubystore.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rudolf.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rudy.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rudymendoza.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruhimustafa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruinme.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruminecraftru.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rumix.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runbo-australia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runbo-new-zealand.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runbo-nz.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runboaustralia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runes.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runescapelordsconquest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runeworldforums.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runews.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rungstedhave.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runlet.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "runningfast.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rupeespeaks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rupool.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rupressa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruprivorot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rupture-skate.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruqbnsmokebbq.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruquiz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rural-house.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rus-blog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rus-manual.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rusenemas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rusichi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rusiptv.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rusmodel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rusnicolas.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rusposuda.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russ-portal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russchooljordan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russia-knigi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russiahockey.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russialife.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russian-artist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russianews.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russisch.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russograffix.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rustambek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruswomen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ruyana.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rvantwembeke.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryan-13.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryazancity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rybinsk.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rybnitsa.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rymanow.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rymergames.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rzero.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saaremaa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saba-shop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sabaland.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sable.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saborcaribe.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sabrine.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sacademica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sacibo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sacramentum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sacrosanctus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sadiestavern.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safeboard.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safecso.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safer-software.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safirakbar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sagomedia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sahalin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sahalinskiy.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintaugustineschool.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintereso.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintpetersburg.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saintvincent.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saitschool.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sakurapalace.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salas.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sale-internet.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salegor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salery.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saleturs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sallyangeli.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salt-travel.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saltcave.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saltnsauce.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salukinet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salut-butovo.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salvadoralevin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salvadorcorriols.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salvameblog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samar-leyte.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samara-hosting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sametimetomorrow.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samodel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samogonka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samokhin.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanatori-elochka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanatori-teterev.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanctus-de.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sand-and-mercury.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sand-craft.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandiuno.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandrinesite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sangiovannilipioni.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sangwanbeach.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanityrant.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanjuandeabajo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sannikfk.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanpablo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanpancrazio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santamargarita.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santamariadelaisla.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santehnica.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santugon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarafani.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarafshop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarah-brown.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarah-harding.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarahshabrina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarahvanessen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sardine.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarecords.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarmpel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarogiw.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sasakala.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sashabognibov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sashakrasnoyarsk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sasroli.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "satpersian.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "satsumi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saveworldpets.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saxophone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sbabeshin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sbmsitelist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sborka.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scalemodeling.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scanamed.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scanbetting.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scandalpunk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scaner.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scavenged.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scenetv.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schiltron.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scholarbaze.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scholenlijst.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scholohost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "school-22.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "school-27-lpr.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "school-33.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "school-adventures.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "school-project.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "school16-tob.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "school173.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "school43.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoolrumble.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schuman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scienceasfashion.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sciencetechworld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scienceweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scientia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scientific-socialism.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottbot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottish-paranormal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scottpilgrim.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scoutreinosa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scoutsanpieropatti.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scratchbot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "screamager.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "screenwriter.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scriptline.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scriptmaker.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scroollocker.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scruffy.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sculpturesworldwide.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scuolatdm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sdsite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sdut.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sea-airinternational.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searchable.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searchwork.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seaview.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebar-iklan.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebariklanmassal.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebarin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebastiantroncoso.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seboreia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secret-queen.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secret-queen.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secretmolodosti.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secretmolodosti.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secretmolodosti.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secretosbolivia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secretstomartialarts.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secretworld.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secta.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seearmenia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seeksupply.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seemyreality.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sekreti-biznesa.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sekshikayeler.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sektor-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sekusi-tochiki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selena-armavir.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selezionebarbrboguaccero.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selfbattery.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "selfemployed.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sellsmartwatches.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sembosihosting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "semiretire.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senarist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senderismoinfantil.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senergiya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senior-sigan.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senoctarsoft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senok.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senterada.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sentinelnet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sentmail.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seo-blog12.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seo-portal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seo-reklama.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seobook2015.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seoclubs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seocontents24.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seocreator-blog24.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seodrug.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seogood.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seokatka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seoline.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seolister.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seolisting.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seomag.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seoonlinejaipur.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seopiar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seopromotion.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seoranker.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seos.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seoscan.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seoshnik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seosmart.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seosos.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seosprint.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seostrit.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seoteam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seotoolset.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seovisits.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serbiaonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sercasindustry.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sergeyburov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sergeyesenin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sergio-rivero.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serial-kinder.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serialize.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seriesgratis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seroquelonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serphost.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serverka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servicii-funerare.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servis-azd.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servitel.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servitor.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sesamomusical.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sescoen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sesenaonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sestry.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sevillalinces.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sewavillamurah.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seworld.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexminister.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sextacy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexvideos.tel", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfweef.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sgatlantis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shadow-forum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shadowdomain.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shadypark.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shahidafkar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shahrvand.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shaimensonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shaknews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shalomamuzik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shalombolivia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shalomcottage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shambala.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shamiphotos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharebot.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shariftown.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shark-host.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharmafamily.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shashlik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shawty.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shechipin.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shechipin.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shechipin.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shedrin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sheeprock.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shefftunes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shellavartanian.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shellwhite.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shellwhite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shindocuba.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shines.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shinsandenki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shipping-trade.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiranaitenshi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shirazi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shiropaev.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shittywok.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shkolladigjitale.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shkolnyimir.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shkololo.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shkololo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shkololo.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shkololo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shlang.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shlupka.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shlupka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shmotki.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shockerdragon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shoesoutlet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shop-eldorado.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopbabymonitors.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopmalinka.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shoppies.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "short-games.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "short.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shortcircuit-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "showgirls.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shredder.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shrines.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shrinker.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shuffleware.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shulman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shumnyj-istochnik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shvedskie-stenki.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sialis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sibernet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sibirium-red.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sidecredit.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sideral.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siegprod.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sieiro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sifasharing.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sigmateca.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sike.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silagra.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sildenafilcitrate.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sildenafilcitrate100mg.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silicateillusion.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silkproducts.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silvermatch.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silviaroddey.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silviorodriguez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simart.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simkin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simonreynoldsfavesunfaves.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simple-perfect.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplelist.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simpleman.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplespy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simpletools.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simstarstyle.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sinapuros.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sindromebenjamin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sinetron.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "singapur24.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "singerpragathi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "singlehandedsailing.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "singlenine.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "singluten.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sinok.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sinopx.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sinuate.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sipede.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sisqo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sistema-trenirovok.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sistema20k.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sistemapronto.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "site-remont.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "site-romania.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siteadvokat.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sitecreation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sitelinks.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sitestudio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sitesweb.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sivaru.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sixpackband.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sjoelen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sjparanormal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skachat-shablon-rezyume-na-angliyskom-yazyk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skachat-zip.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skachay-knighki.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skazochnyj-sait.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skeditor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skeptik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skibikers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skidki-ru.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skinboost.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skinboost.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skinews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skinexpert.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skinfoodpeachcotton.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skirted.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sklisen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skmedia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skorbord.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skoropolnolunie.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skotobaza.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skripta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skrivebordet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sky-wap.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyfpicture.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyhigh-mizell.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyhooks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyla.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skylander.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skymonk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skytown.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slackline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slathering.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slava.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sleep-tight.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sleepo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slemen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sletaem.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slev.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slinx.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sllatina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slma.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slouching.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slovenia-trip.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slunyavchik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "small-blog.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smallcraftadvisory.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smallfoot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smalls-world.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smallville.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smaragderna.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smart-travel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smart-zona.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartassembly.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartdigital.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartfons.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartphonecases.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartspace.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smashbros-chile.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smashnl.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smeta.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smilegenerator.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smishnik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smithteresa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smokingtapes.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smolensk.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smolensk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smolnikova.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smszone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snab-ural.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snakeanarchy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sneakers-sports.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snem.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snowvictoria.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sobaki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sobchak.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "social-directory-list.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "social-network.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socialistyouth.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socializator.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socialmeeps.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socialnet.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socialnews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socialproject.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socialtactics.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socialtranslation.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "societyparty.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sociology-bg.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sociusian.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "socomforums.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soda.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sodalai.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sofianeves.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soft-key.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soft-office.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softpark.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "software-tech.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softwarepatenten.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sohanakhan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sokolovskyi.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sokrabatt.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solana-active.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solarace.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solargaming.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solarhome.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solaronics.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solarpanels.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solartek.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solartek.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solartravel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solarwave.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solarwind.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soleanos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soledadmataro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solidform.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solidhost.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solidincome.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solntsezaschitnye-ochki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sologetaway.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solsi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soluzionifightlist.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "somalilandtalk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "somewherenews.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "somnam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonar.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonesinafar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonesisonesi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonesonesisi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "songsonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonidoslibertarios.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonnik-znachenie-sna.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonology.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonsight.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sopelaotaez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soph.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sosisuka.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sosnovka.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sosok.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sotnya.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sotnyk.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soulla.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soulpowercoaching.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soulsinner.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soulwinning.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundblast.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundman.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundrecords.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundtrash.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundzimega.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sovhoz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sovmestimost-goroskop.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sovmestimost-goroskop.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sovmestimost-goroskop.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sovmestimost-goroskop.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sovmestimost-zodiak.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sovremenik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sovxoz.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soyuznik.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sozdanie-krana.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "space-net.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spacepirates.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spaceshells.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spanischunterricht.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spanishnow.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spanner.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spanpine.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sparta-szczekociny.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spartamet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spartanis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spear.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "specialcameras.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "specialeffect.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "specialelectronics.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "specialofficesupplies.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "specialworld.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "specks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spectre-network.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speedcam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speeder-vpn.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spegeltankar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spetsialist.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spicegirlschart.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spichki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spidersweb.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spidometr.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spinal.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spiritdesigns.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spiski-domenov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spisochek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spisok-domenov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "splashily.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "splibrary.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spm-servis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sport-obzor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sport-online-ru.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sport-school.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportinfon.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportmedia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportraucher.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sports-news-today.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sports-wear.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportverzorging.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spot-cleaner.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spravka-internet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spravka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spravki.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spyclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sql-injection.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sql-injection.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqli.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqli.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqlinjection.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqlinjection.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sqmin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squardllc.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "square-gamers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squaredancedance.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squaresoft.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squelcher.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "squidnovels.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sr-f.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sritafrican.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sritalabama.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sritcalifornia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sritclassic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sritculture.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sritegypt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sritsafety.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srittheatre.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srix.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "srochno-pohudeti.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sroturkey.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sshbox.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssl4all.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssprod.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sspu.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "staffi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stalplus.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stalstroi.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stalworld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stammering.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standoff-magic.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stanonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "star-24.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "star-life.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starcraftsource.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stardrive.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starfm.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starmyworld.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "start-knighki.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startbetter.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startgeophysical.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startplats.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startupyourmind.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statcenter.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stated.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stateidea.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statelines.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stationmedia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statsit.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stavinchains.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stavropol-news.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stcatharinesromawolves.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stderr.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steamcrack.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steamkeyget.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steempeak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stefanolsdal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stels.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stematechnologies.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stemklank.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stephenschirle.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stereostudio.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sterno.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steve-mason.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stevenavaldez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stewards.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stickertrade.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stifflersmom.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stihiya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stinter.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stjude-ettekkar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stnews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stockslam.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stocksnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stockway.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stolensun.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stolpersteine-dithmarschen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stomatolog.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stomatolog.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stomatologiya.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stomatologiya.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stonerwitch.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoneworld.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stop-nikotin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stopka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stopsmoke.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stopssherdenking.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stopsvet.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stopves.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storage-books.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storiadellarte.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stormairsoft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stormestudios.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storycycle.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stperseo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strakh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strana-snov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangeonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strassberger.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "straylight.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stream-box.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "street-hoops.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "street-legal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "streetstunters.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "striae.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strikeout.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strings.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strobe.cool", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stroginopk.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stroimsami.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strojmaster.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strongtomorrow.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stroyca.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stroydvor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stroynet.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuckwithme.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stud-lib.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studio-mir.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studio32.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studioandrew.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studioevent.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studiolegalemarchi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studius.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studsovet.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studwebs.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studyme.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studystack.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuntman.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuphid.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "styilishdress.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stylemall.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "styletheweb.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stylingstudio.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "styplon.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "subahankamal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "subarus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "subbacultcha.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "subgirl.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "subject-barred.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sublimated.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "submit-link.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "submityour-link.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "subteen.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "subversionnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "subwaysurfers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "subwaytrain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "successclicker.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sudak-turizm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sugarroll.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sugos.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suicidegirls.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sukruarslan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sulemanmalik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sulemanquotes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suleri.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sulkmen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumatraselatan.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumbur.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumhost.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumisa.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumitbot.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "summing.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumochki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sun-host.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunblind.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunchild.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sundiel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sungalsses.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunkar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunnyhome.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunroof.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunshinefrontier.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supdajuice.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supel.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "super-boy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "super-knighki.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "super-lolitas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superbaskirskij-med.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superdolly.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superfury.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supergoods.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supergroup.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superhits.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superiormusic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superkrasota.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superlol.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supermanera.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supermart.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supermini-games.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supernogi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supersisi.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supersisi.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superskidki.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superstart.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superzaim.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supplement.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suprax365.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supreme-court.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surfseo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suriname.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surrealistas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "susanagomez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sushi-sakura.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sushilmedicos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "susoft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sutabi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suzdalgrad.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svarka22.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svatyjur.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svenskakyrkansunga.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sverdlov.spb.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sverdlovsk.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sverdlovsk.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sverdlovsk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sverlo.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svetlanamamedova.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svetlograd.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svetoch.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svetodiod.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svetonaushniki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svg-board.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svgzone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svoimi-slovami.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swederica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swedish-saints.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swedishforces.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sweetairlines.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sweethorses.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sweetintrigue.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sweetparis.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swingle.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sworn.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syedmuhdadasgardezi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "symplyos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syndikalismus-im-laendle.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "synergy-logistics.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "synergyzone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "synitsa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syntia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syphax.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sypra-host.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syrianet.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syrius.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sysadmin21.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "system-fehler.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "systemblog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "systemerr.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "systemtoto.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tabacundolindo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tabadotupi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tabakerka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tabclassics.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tabira.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tablamatica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tabletennis-tt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tablettes-tactiles.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tadjiki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taekwondo-berlin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tagana-anindustrialpark.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tahrirbazar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taiaro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taikodom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taipak-krasnoyar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taiwantechtrek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taj-portal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tajniy-smisl.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "takeaction.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "takestars.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "takethatspainfanclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "takiplekazan.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talented.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talentguru.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talkscope.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamareverson.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tambov.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tambovcity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamdidpay.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamiltax.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tammie.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamoxifenformen.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tampaexplorer.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamsulosin.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tanatos.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tancuongtea.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tanhaa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tanjasavicmusic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tanned.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tantrum-rocks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tanushka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tanya-avdeeva.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tanzanianfilms.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tao-energie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taoofbeauty.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taoyingchang.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tarabici.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taraksarkar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taraori.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tarapacadigitaltv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tarjetaspark.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tarkari.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tarocchi.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tatar-bashqort.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tataria.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tatarin.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tatarin.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tataristan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tatarland.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tatarworld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tatary.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tatsuya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tatu-love.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taturukav.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxi24.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tazamobile.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tazendaforever.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcoa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tds-forum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teach.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teahouse.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "team-a.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "team-darkness.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamcode.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamdevelopers.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamkankun.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamkiller.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamlightning.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamsudan.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teatroutopia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tec24.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techcentral.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techclan.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techcluster.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techfibian.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techiesmart.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techindo.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technewsetc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technicalbikrammalati.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technogrand.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technoholod.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technolution.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technomix.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technopedia.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "technoweb.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techsecrets.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techtoydeveloper.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teenmoviesgallery.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teenwebcams.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teenworlds.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teepak.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tekirdagemlak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teknikaldomain.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tekstover.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tekstpesni.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telangananews.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teleafrica.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telecommunications.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telega.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telegram-gp.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telema.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telenovelas-france.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teleradio.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telesoftware.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "televisioncontests.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "televisionsrit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telokchki.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telokchki.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "temirgaliev.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "temporal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tennis-altai.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tennistalk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tennisweb.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teplotehnik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terenska-edinica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terovania.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terovania.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terovania.games", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "territoriocuchero.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "territory.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ters.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tesla-tula.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "test-my.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testcoz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testdemoweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testdevelocidad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testdomens.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testing-server.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testispdomain.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testmy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testpool.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tests.pp.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testscript.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testsity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testsweb.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "testyonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tetrabyte.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tetracycline500mg.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teunmulder.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texasnewsusa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texosmotr.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "textcounter.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "textil-kyoto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "textsite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thailandpropertylisting.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thailandvariety.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thais.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thaumaturgian-national-university.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-allmighty-mike.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-metropolitans.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the13thtribe.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theaquila.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thearchimag.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theaterfrederik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theatresuite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebarkofhinkle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebestnews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebestshopping.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebigbigworld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebodylanguageguide.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theboysrepublic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebss.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecondemned.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theconsultingpeople.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecowquerie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecrazybrains.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thedarkcolonyfansite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thedietsolutionprog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thedigitalparadox.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thediscforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thedrizzle.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thedysfunctionalangel.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theeldritchhounds.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefishshop.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefreethinker.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegeniusdz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegetaway.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegospell.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehabitat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehappyxwife.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehassanmusic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theheadplug.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehiltonfirm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theholloways.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehotrocks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehuskyhaul.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theindiangraph.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theinstitute.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thekalakriti.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelordofthewing.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelwallrangers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "themandogs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thematyper.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "themodernreviewer.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theocjournal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theoldmill.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theophil.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thepaleodiettips.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theparachafamily.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theparticipants.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thepilotwoman.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thepiratebay.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thepowerboys.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theprinceshort.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therasmusgt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therasmusperu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thereafter.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therenegade.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theresingles.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therichardsfamily.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thermostat.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therniakov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therokasshow.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theroyal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therunawayspremiere.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therusnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thescienceofdeduction.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theseal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thesilentfew.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thespacegame.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thespiritfm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thestandards.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thestore.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thestrangenessofthings.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theswanstation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theteaguemovie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thetherapist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thetopsecretepisode.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theuniversallover.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theuniversitiesofasia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thevirgin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thewalkerz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thewave.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thewayofislam.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theweed.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thewinedelivery.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theworldtakes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thewraithmovie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thexalla.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thexpert.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thhost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thiagoribeiro.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thinkelectric.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thirdwave.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thisdayinhockey.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thisistwice.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thrillkill.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thrustrules.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thugcityrecords.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thunderbase.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thunderbolt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiagoneves.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiamabi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiburgundysi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tidehunter.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tienerdienst-johanneskapel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tierra-indomables.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiffany-remixed.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tigerforce.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tigerzplace.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tigreblanco.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tikona.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tileco.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tilisi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tilitop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tim-lawrence.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timberjewelleryboxes.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "time-killers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timebookings.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timecheck.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timelapsetv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timelesstreasures.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timepassengers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timeroll.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timilion.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timonenko.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinaarenaweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinderphotos.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinhlai.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tintamas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiny-house.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiny-tattoos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinyfont.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinyhousebarat.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinylink.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinyproxy.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tipsfinal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tipskanalen.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tipslifetimefitness.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tipsoftech.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tirana-chat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tirandoalplato.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tirgul-vertiujeni.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "titina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tjongeling.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tkhirianov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tkwhongkong.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toastmasters.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobtennis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "todaylearn.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toddmclauchlin.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "todolex.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "todotiendas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokelaunso.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokiohotel-world.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokopedia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tolkienfans.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tolkienwiki.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tolkovanie-sna.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tolstoevsky.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomboonen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomco-corporation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomica.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomica.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomodachi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomorrow-traxx.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomsick.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomsk.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomsk24.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomsk365.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomsknet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomsknews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomssite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tonshaiza.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tonyhagerlund.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toonmate.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tootbitco.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toothless.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-beauty.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-credit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-drop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-secret.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-service.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top-skins.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top10.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "top100games.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topbookmarking.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topbussines.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topcameras.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topdosug.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topgallant.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toplistforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topmuzic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topnet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topofficesupplies.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toponlinemarketing.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topotom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topradiosbrasil.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topservers.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topshop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toptiernetworks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topwonders.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topzarabotok.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torba.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torchbearer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torondor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torontotransit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torquemada.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torrba.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torrecilladelaabadesa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torrentdownload.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torresdealbanchez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torresjaen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tortak.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tortillas-duras.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tortuga.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "total-destruction.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totalconceptnh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totally-dakota.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totallystocks.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totalzen.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "touchable.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "touchboobs.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tour-japan.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tour-vietnam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tourbryansk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tourismpskov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tourismtrain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "touristanalyst.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tours-in-petersburg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tovari-rukodeliya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "towerdefence.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "towessi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "townresults.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toyduck.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toymarket.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toystory3.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tpiada.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traceur-france.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tracker-knigi.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trade-bot.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tradelink.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trademen.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tradersport.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tradezlist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traf-bonus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trafplus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tragicempire.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trahnisoseda.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trailblazers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trainable.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trainingcentral.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trainwiki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tramadolhcl.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trance-zone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transformersmmdb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transito.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "translation-services.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "translit-net.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "translit.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transparency.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transportnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transsrit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tranzron.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trasandino.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trashylingerie.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traumfaenger.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travel-cube.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travel-rus-club.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travel-to-cuba.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travel101.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traveladdiction.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelbangladesh.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelbiz.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelcenter.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelclinic.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelfriend.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelinsurance.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelmontenegro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelnews.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelook.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelstation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traveltalk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travkolyl.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travnik24.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trazodoneonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "treinonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trendme.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trendocracy.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trends-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tresredatores.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "treurtransport.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trial-server.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trialbyfire.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tributoconsuegra.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tricolortotal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trihedron.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triker.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tripolinews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trisha.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tritium.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trkhosting.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trodat.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trodniescis.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trojanchronicles.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "troll-gaming.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trolldesign.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trolldi.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trollforums.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trollhanttan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trolling.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trollolo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trollos.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trollos.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trollos.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trophykoi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tropicalticket.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tross.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truedarkness.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truereligionjeanstore.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trulycharmed.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trusifan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trust-btc.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truten.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truth.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truvayangin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "truxton.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tryk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ts-folienmontage.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ts-public.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsakanakis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsja.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsunamic.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsuruhime.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tubeview.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tubing.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tucarora.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuerkei-immobilien.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuliha.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tulikajain.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuller.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tumen.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tumen.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tumen.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tumen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tumult-productions.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tunen.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tunenet.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tunisiadefnews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tupatane.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turadionline.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turbaza.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turbinelectricity.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turboworld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turismoliliana.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turizm.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turizm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turizmsektoru.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turkcechat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turkeyfiles.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turkgrafik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turkhalkmuzigi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turkist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turkistan-rap.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turkkarate.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turkmanbox.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turkmans.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turkrap.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turkteam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turktelekomarenagolleri.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turnet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turnover.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turtunis.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turul.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tusar.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tut-kino.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutorialcoding.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutorialitmalaysia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutorialphotoshop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuzlasite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tv-tuners.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tv-zone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvabullarbro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvchannelslive.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvenligne.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tver2000.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tver69.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tveronline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvfans.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvmice.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvoedelo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvoistili.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvreviewer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvseasons.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twaddler.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tweeple.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twilightningzone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twl-clan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tycho.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tylko-wazne.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tynefm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyni-goc.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyni-gof.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyraga.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyre-search.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyrkey.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tysukakorrekt.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tytixazo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyva.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tzunami.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tzunamiblog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ua-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uamxsociologia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uanews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uateach.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uber-work.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uborka-snega.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ubutovo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ucheba.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "udmarbella.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "udmurtia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ufologiaweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ugolovnyj-advokat.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uhcuhcas.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uhcuhcas.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uhcuhcas.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uhcuhcas.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uhcuhcas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ukcarers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uknews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uknewsroom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ukrtabletki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ulax.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultimasword.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultimatebattle.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultimatehalo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultimatemapping.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultortech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultra-pro.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultracentr.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultralife.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultraman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultraonline.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultrasocial.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ulyanovsk-73.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ulyanovsk73.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ulyanovskcity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umnugobi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unaffectedsound.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unai-yus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unataz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uncinema.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uncorporate.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "undemocracy.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "undercoverxp.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "undiepatrol.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unescoclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unetyr.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unexplored-belarus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unexplored-moscow.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unfamousrecords.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unfollow.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unfriend.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ungnyo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ungrafakta.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unicool.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unicrack.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unionhoster.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unipass.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unique-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniqueworks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "united-trainers-league.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unitencup.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universal-mail.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universalmedia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universehk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unknownhacks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unofficialbpb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unovosti.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unprovided.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unrepentant.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unstoppable.money", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unwa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "up-obmen.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uploadscript.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upmail.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upnext.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uppercloud.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upskilllearning.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upskirtmania.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uptional.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ural-travel.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ural.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ural.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ural.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uralec.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uralsite.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uralsk.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uralskaya-garmon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uralspravka.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urang-kurai.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uraniumhost.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uranmoney.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urban-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urbanagriculturesummit.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urbanbikeweamr.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urbanbooks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urbanlounge.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urbanmuslim.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urbanusonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urgent-notice.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urljournal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urlwing.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urlz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urocentre.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uroki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ursonatefanzine.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urstore.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ursula-gadalka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usagi-ku.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usanewsposts.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usanewstrends.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usaweblist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "user-agent.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "userhelp.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usk-clan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uskaonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usleravnekrog.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uslugi-advokata.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ussm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utodyg.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utopian-institute.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utopiancapitalism.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "utural.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uz-yulduzlar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uzagmozemunk.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uzagmozemunk.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uzbaza.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uzbek-soft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uzbekistan24.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uzbekkizlari.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uzbwap.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uztop.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "v-gornom.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "v-kurgane.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "v-media.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "v-news.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vacation-in-pisak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vaclan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vadiar-angola.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vadillodelasierra.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vagabondages.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vagabundos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vakantieinfo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valdecaballeros.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valenciaescatala.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valentinstag.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valiakhmetov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vallenar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valleyofdeath.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valleywidetvrepair.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valor-host.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valoriashard.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valparaiso.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valpovo-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valtherperron.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "van-brandevoort.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vanbruchem.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vandals.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vanesaleiro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vanessaamorosi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vanhelsing.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vapetaclope.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vaporquest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varied.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varnish.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varun-rajeshwari.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "varvitra20mg.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vash-doctor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vash-dom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vashdohod.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vashprazdnik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vasilevo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vasilisa-volodina.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vasilisa-volodina.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vasilisa-volodina.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vasilisa-volodina.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vasyaka.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vatikantour.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vaurio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vbelgorode.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vburyatii.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vdagestan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vdolg2000rub.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vdolg2000rub.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vdolg8000rub.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vdolg8000rub.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vdolg8000rub.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vdolg8000rub.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vdolg8000rub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vebdengi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veca.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vechersky.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vectorcardiometry.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vectrum.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "velis.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "velo-volga.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "velvet-tarantula.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "velvetempire.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venacifuentes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vendasdealbunsbrasil.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venesuela.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venezia.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venezuelachat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "venezuelalibre.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ventolin-hfa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vereshagino.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vergraal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vermageringsdieetpillen.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vermouth.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vertexlife.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veselyjpovar.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vestiizhevska.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vetch.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veterinanmnm.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veterinanmnm.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veterinaryhelp.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vetitus-teatro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vetosh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vgpu.vladimir.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vhproductions.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viagratop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vibramycin100mg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vicarious.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vicentejr.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vickylarraz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vickyoliver.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "victorbuch.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "victorrodriguez.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vidawichi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videferre.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videoarcadia.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videoconferencing.guide", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videoebook.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videogamerreader.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videomaniya.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videonika.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videoprikol.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videoprikoly.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videoskazka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videotehnika.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videouroki.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videt-son.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vievolution.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vieweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viewer.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vijayam.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vijaymishra.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vilamarija.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vilife.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viliravnjak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villacarralon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villaespanola.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villanew.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villaumbrales.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vimka.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinaygakhar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vincentpo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vineta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinohradiv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinzer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "violetfairy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vip-banner.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vip-soski.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viplata-mgnovenno.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vipsauna.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vipshop.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vipsibir.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viptravel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virala.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virazh58.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virgi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virginiedelmas.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtbaza.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtola.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vishenka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visionnocturne.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visits.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visits.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visituzbekistan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitahost.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitakov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitaminka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vitrinachasov.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivabraslav.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivas.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivates.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivavox.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivichannel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viviennelinettevandenassem.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vizantia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vizit-obmen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vizitfree.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vizitnik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vk-random.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vkavkaz.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vkolledzhe.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vkrutilca.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vkusnyashka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vladgazeta.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vladikavkaz-city.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vladimirbatrakov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vladimirchernyshov.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vladimirkarpets.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vladimirpenev.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vladivostok-city.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vladivostok.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vladivostok.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vladivostokportal.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vlasov.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vlasova-sova.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vlike.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vmagadane.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vmurmanske.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vnikolaev.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vnsc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vodafone.com.gh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voguefrontier.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voicedata.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voiceofcricket.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voiceofserbia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vokrug.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volatiliza.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volgograd-34.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volgograd34.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volha.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volk.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volki.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volkov.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volkswagengolf.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volleyballnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volleyfreaks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volochaevskiy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volochisk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vologda-city.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vologda-city.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volosi.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volosi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voltageelectricity.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voltarengelprice.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volunka.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volunteers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volvo1800es.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vomitoxin.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voprosnik.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vorona.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vortari.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vortexhosting.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vosk-cream.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "votan.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vovachka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vovo4ka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vozbudim.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vozhuo.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vpn4free.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vpnemail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vpnhongkong.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vriendenkring-klassiekers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrisak-generacije.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vsatke.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vse-bolezni.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vse-dlya-fermera.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vse-dlya-jinok.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vse-novosti.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vsenovosti.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vseostile.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vserisuem.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vss-clan.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vtanki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vysokij-istochnik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vysotka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vzyatonlinezaim.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vzyatonlinezaim.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vzyatonlinezaim.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vzyatonlinezaim.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vzyatzaimonline.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vzyatzaimonline.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vzyatzaimonline.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vzyatzaimonline.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vzyatzaimonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wahine.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wakeupworld.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wall-banners.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wallhost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wally4000.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wanderersfc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wap-umbrella.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wapbd.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wapgame.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wapheat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wapkarma.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wapkat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wapveil.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warbox.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wardonat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wargun.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warispak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warworld.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wasdestek.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "washsolucoesemlimpeza.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watchdogs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "water-valley.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waterpoint.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waterpolospain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watersource.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wavered.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wavesite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wctsite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wear-largesizes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wearvintage.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-aps.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-create.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-creato.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-disaster.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-online.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-ross.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-ross.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web-town.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "web74.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webcam-lisa.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webcamera-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webcamrunetki.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webcarroseletricos.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webcoins.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webdesignagency.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webdev-cw.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webdieta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webexperts.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webgentleman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webhosting-erfahrungen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weblibrary.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weblogia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webmarcosmarquez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webmetallica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webmining.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weboflies.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webparallax.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webpitarque.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webprostitutki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webpublishing.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webpunk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webregion.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websanlamuerte.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websitecalifornia.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websitecenter.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websitelearners.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websoftba.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websphere.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webssupport.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webstats.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websubmissions.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webtomsk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webtransfers.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webuildsite.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webunix.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webvampiro.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webvenezuela.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webwinkelkeur.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weda.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wedding-page.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weddinghotographers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weddingideas.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weddingtrunks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weeaboo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weighed.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weightlift.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weightprogram.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "welcomepowayan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wellbutrinxlgeneric.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "welom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "welshterrier.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "welshyak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weltumradler.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weple.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westwings.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wgsuyi.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "what-do-kittens-need-to-eat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "what-does-kittens-need.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whataboutjonbuckland.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whataboutjoshua.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatevents.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whateverzone.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whatiscss.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wheelchair.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wheelspin.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whigfieldspain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whishart.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "white-info.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "white-noise.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "white-skull.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whitebox.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whitehorse.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whitemetalperu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whitepages.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whitestarlegacy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wholesale.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whoreofwallstreet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wifishing.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikicooking.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikihelp.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikihistory.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikilibrary.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikimir.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikirace.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikisaur.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikiskripta.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikitech.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikitransporte.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikproduccions.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wildcove.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wildrideproject.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wildsafety.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "williamarias.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "williamgoldberg.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "willich.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "win-fortuna.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winball.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wind-riders.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winfilestorage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wing-tsun.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winktonsibo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winning.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winsabayi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winter-leak.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winteromeo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winterzine.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winxpclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wipa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wippy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirelessbelgie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirelessthief.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiretap.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirtanen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wishlisotr.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wishmail.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wisselink.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wlpvzfilmy-onlajnmlawq.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wocup.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "womenfashionshirt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "womens-suits.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wonderbox.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wonderleaks.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wonko-vs-trader.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woo-jiho.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wootkit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wordpressdevelopment.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wordspam.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "work-at-home.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "work-at-home.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workerselforganisation.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "workfromhomebusinessopportunities.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worktefa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "world-documentary.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "world-of-tes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "world-politics.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "world-tanks.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldarmy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldcharteronline.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldgun.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldhosting.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldintercontinental.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldix.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldix.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldix.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldjobs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldnewsinbox.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldpolitics.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldrallyforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldsms.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldsport.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldstyles.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldtrandingnews.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldturkmans.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wormburners.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worthlessingratitudecq.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worthlessingratitudecq.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worthlessingratitudecq.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worzo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wow-serbia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wowarcaim.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wows-mods.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpnews.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpnews.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpnovice.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wqaw3.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wrecked.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wringer.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "writerecommendations.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "writingapps.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wuestenbergs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wwwclan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wycena.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xarmenta.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xbanner.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xcspy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xenical-online.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xenical-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xenicalonline.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xenicalorlistat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xenicalpills.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xftp.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xhanster.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xiarain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xile.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn------7cdabibmbihbgykn8elfdbfgbeqxmlc3a.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn------7cdbfcbc0ab6akhadmzphmbibhebcc7b0ahshon.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn-----6kcbb0cahbiskdv1bcj5c7g.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn-----7kcgqqeagtqecgbhc3aginaie1hwh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn-----8kcdcb4bffibpgkpbdbcc5cedihs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn----7sbabexseekfke3cifnf3b4r.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn----7sbbncaddj9a9b6am9p.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn----dtbfemantkhdczc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn----dtbfemmqjdddczc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn----etbqa2alia5i.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80a1a8b.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80a6a1b.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80a6aq.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80aaa3bgsbbm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80aaa5ajbrzqd.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80aaaane9bk7bh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80aaacqdkdv7b0a.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80aaaptltzqd.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80ab1bse.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80abb4bp.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80abmghlx4ajd.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80ace6be.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80achgm7d.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80acqgkhcn.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80acubre5k.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80ae7bafe4d.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80affa6ai0a.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80ahjdhy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80aknjgrv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80aod6g.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80axad8esa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--80azep.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--90agmsorb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--90aimoos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--90aizn.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--b1aa9b.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--b1agcgqrei7i.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--b1ayb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--c1aaulbdc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--c1aid4ap8e.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--c1aolabgdj.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--c5w032d4vi.xn--fiqz9s", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--c5wy5c025b.xn--fiqs8s", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--c5wy5c025b.xn--fiqz9s", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--d1aca2a5al.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--d1aczdsdn4d.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--d1awi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--e1aahuqbk6f.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--e1agokg6a9a.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--e1aoddhq.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--f1ai7a.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--h1aarew7ct.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--m1aba.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xnetwork.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xnix.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xomyak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xonobixa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xplozion.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xrayreview.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xsenya74hram.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtreamfire.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtreme-cs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xuann.wang", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xuesoska.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xwfwrestling.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xxl-bonus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xyrexwolf-sebastien-izambard.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xztech.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ya-hudeu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ya-hudeyu.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ya-hudeyu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ya-madina.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ya-radio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ya-stroynaya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ya-zdorova.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yakkifamirie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yakutia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yakutianews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yakutsk-city.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yakutsk.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yamal159263.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yamobila.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yannickvdvelde.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yanovosibirsk.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yaoge123.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yarplast.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yarygin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yasraiting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yasrating.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yassinesmael.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yazichestvo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yeartracker.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yekaterinburg-city.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yemenat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yes-money.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yesapp.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yescareer.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yesilliforum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yesjobs.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yesmirov.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yobniyulyu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yogagadgets.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yogasolution.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yogaworld.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoshkar-ola-city.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youla.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "young-celebrities.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourbreakfast.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourdemowebsite.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourdrive.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourmobility.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoursoul.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yoursoulmate.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourtests.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yourworlds.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yousee.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youth-for-life.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ypgnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ypopovych.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ysearc.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ytexa.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yuandan.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yucca.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yugohome.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yula.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yunnet.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yurist-vopros.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zabatsai-sam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zabbix-monitoring.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zahirdanzavila.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaim-best.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaimi.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaimin.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaimlime.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaimvkredit2.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaimvkredit3.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaimvkredit3.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaimvkredit3.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaimvkredit4.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaitaiguo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zajm-bez-otkaza.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zajm-cherez-sms.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zajm-na-kartu.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zajm-pod-zalog.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zakononline.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zalihvoch.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zam0th.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zamok.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zapaska.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaplano.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zarabotok-v-internete.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zarabotok2017.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zarabotoker.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zarabotoklaif.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zarabotokvseti.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zardain.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zarjadnik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zarobotok-forum.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zarobotok-forum.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaschtnik.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zavarkin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zayats.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaym.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaympodzalog.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaympodzalog.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zaympodzalog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zcompany.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zcompany.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zcwtl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zdorovcentr.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeldaliberty.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zelena-armija.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zelendoma.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zelkor.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zemli.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenki-manga.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenmail.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenrtal-online-russia.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zepter.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zepter.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zerium.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeroz.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zerozero.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeuscorp.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zevenbergenbos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhamolov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhdun.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhelanie.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zheldor-dance.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zheldorinform.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhestokijavtor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhidkiy-kashtan.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhodino.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zhoujunlawer.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zikipedia.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zilla-sushi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zion-craft.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zithromaxstrepthroat.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zlarin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zlatanonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zlotyslawecin.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zmeya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znachenie-sna.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znakomstva-2013.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znakomstva.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znakomstvablogs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "znaniya.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zodiak.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zofrangeneric.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zofzpcb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zogatest.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zoloft-medication.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zolotie-ptichki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zolotistyi-kofe.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zolotoioasis.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zona-bellepop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zonatelevision.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zoogbook.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zornica.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zoske.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zulaoyun.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zurmas-design.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zuss.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zuyzi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zvezdy-porno.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zythromax.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zyx3d.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0x76.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3rr0r.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3rr0r.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3rr0r.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "887d.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "a2censo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abclyrics.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutmoney.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutmusicals.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adsnn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aimdigital.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airstrike.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajmara.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akademiaantykorupcyjna.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexander-van-nieuwenhoven.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexandraandnicolay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexsantos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "almx.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alterego.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amberonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andywalkeronline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anti-doping.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antichat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antisocialist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antisystem.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antiuser.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apeiri.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "architekten.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arforingenieria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armorsoft.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arnold-schwarzenegger.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arquitectura-ilimitada.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artinfo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astrolab.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astronomija.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astroteam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlantik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atomicheart.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audiocd.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audioconspiracy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audiomind.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "austriantekken.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autocross.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autocrossfoto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autocrossonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avariya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aviationzone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axis-of-evil.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axxis.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azarweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azeriland.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azeronline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babaei.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babaei.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babbel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backjump.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badbird.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badmessage.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badnails.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badrock.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badstar.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bahrainonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bajacalifornia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bandnames.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bandvideos.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banner-design.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bartavi.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bartdesign.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bashsoftware.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bassethound.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bausparkassen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bayramov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bazar-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbclyra.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbschat.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beachworldchampion.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beam-life.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beamitaly.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bearfactory.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bearrecords.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beclan.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beinteractive.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belgian-naturists.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belgian-swimmers-united.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellissime.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belrybalka.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beltman-shipping.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benedict.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benjaminprevot.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berbervandenberg.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bergsjomannen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berluskoni.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bernadette.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bernerland.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bettie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bhogavati.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigband.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigbenny.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigchris.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigsister.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bijlesbart.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bikersclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "binaryvision.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bioforce.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biohazardland.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biohazardous.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biomechanics.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brightsparks.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cabale.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caucus.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccea.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claudia-halfter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "claudiahalfter.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clean.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codefive.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compagniecoupable.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cornerstonefoundationrepairllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cotandoseguro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creditshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datingso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "devdeb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dkim-validator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "docdoc.tel", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dockmastersonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doverye.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamfm.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dumax.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebooksa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eccologic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecn.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elona-wvw.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enizioshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enjoytransferitalia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esperanto.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferreteriaferreiro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filmbasar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fireplacerepairlasvegas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flensburg-hilft-flensburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleshwound.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fletchmusic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flickor.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flightjackets.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flipweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flooood.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "floris.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flowerdesign.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flying-angels.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flyingdutchman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fm-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "focusproductions.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "focustec.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "focustuningclub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "football-world.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forestairllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forevermuslim.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forsaken.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forsure.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortepiano.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortmatic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foto-forum.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foto-gallery.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotografija.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friendsnew.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fuzzylogic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fysiotherapie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "g-center.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabby-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabyminneboo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gadzilla.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galileohealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gambiafishing.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamburger.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamecs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gameexpress.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamegrad.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamemakers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamers-community.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamers-paradise.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamersheaven.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamersplace.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamersuniverse.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "games-station.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamesmagic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaming-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gapfa.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gartanien.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gatlink.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geek-rooms.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekstuff.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geoarchive.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geodesign.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geoman.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georgianhistory.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getdoges.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getlawnbuddy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ghostsquad.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giantsquid.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "giganet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gjan.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glamdaldyreklinikk.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "godmusicapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gotolinux.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graphimode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harbecke.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harbecke.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heanbian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heat-ua.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herringadvancemachine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heywise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hillcountryoralsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holidays-info.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idealnastrona.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igust4u-archive.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imboom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insertface.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japlin.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobsjj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justsellmycar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k3t.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kandr.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kitagawa-internal-medicine-clinic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "komehyo.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konzepttreu.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kurenivka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kurniasihmandiri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lakewylietax.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lapulgaflamenco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lendingmate.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lesbonzoms.alwaysdata.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lidl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "likeany.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linkspace.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linuxonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lionland.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liquidation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liquidweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littlemaster.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liuqiao.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lollypop.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lollyteam.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lomex.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ltdev.im", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madebythijmen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magicorama.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matrimonybest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mddistributorsstore.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mealpedant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meditateinolympia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.bo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.gt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.hn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.ni", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.pa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.py", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.sv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.uy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolibre.com.ve", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadolivre.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercurycards.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "micah.soy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michelgolfier.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mindomo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minternals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobilize.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naszymzdaniem.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natasjaversantvoort.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neatnestsdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neatnestsorganizing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerdoftheherd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nesscitycatholic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsbay.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nptn.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okobojitech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oriveda.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oriveda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ourcreolesoul.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pauct.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "physiotherapie-kobiella.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pr-release.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "praxis-kobiella.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostoporno.guru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qtv.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reidope.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "relaxti.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "revenge-spells.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saltydogpaddle.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schausteller.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schulferien.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seasistent.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segdomedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sertaobom.eco.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplelogin.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplelogin.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplelogin.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplesite.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solo.com.sa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sreenadh.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stacky.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tcmk-tomsk.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomasdrtina.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomphenix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsproesasac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turteka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unternimmteam.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upgrade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "validius.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vilhelmjunnila.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vot-tak-vot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vulnerabilityscans.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wars.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weddingwire.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wedooper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werkenbijsanitairwinkel.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werkenbijsanitairwinkel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "witchthicktits.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wui.fan", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wuifan.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wuifan.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn----7sbbhzfbdo6dnf.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--xwqa8512b.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zamok-love.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zbsj.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zdenek-hejl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeromoment.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu888.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4voip.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaflalo.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advancedroofingmuskoka.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agasaya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ameri-drain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "americanenergysystemswa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andreae.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archmacro.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "austinbestdjs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "automotiveunlimited.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avoinna24.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bailleux.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basllp.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berchtesgaden-hilft.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackbbwvideos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bosiquanao.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boticadiservicio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "botikadiservisio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "butlerdisposal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camshowhive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camshowplace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cariocabelos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cass.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheng.pet", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "civil-works-sri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyrcares.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "click4click.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinicasesteticas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connectedbynexus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crafterbase.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cuisine-ultime.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demarit.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dhammacitta.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogespeed.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drawguess.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drone33.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dutchwaredesign.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emergenzaduepuntozero.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "equipamentosparapostos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erkkiaronen.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erulezz.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etindustries.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyeshield-informatique.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f1iran.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facan-godollo.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faysalabdi.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fishystuff.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flagipanstw.info.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flexussolucoes.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flubio.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fox-zulu.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friherrsindemarit.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fulltextarchive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fusionauth.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fyllehack.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekgirltech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gethyas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "givemeaverse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glitter-graphics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gofobo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grast.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gripcoat.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guardedbox.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hakon.lol", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heleus.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hesbenergie.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hibrid-turf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeostase.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "horstmanshof.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostatic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htmtools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idstudio.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iesucreipi.edu.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interpretacjawynikowbadan.info.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investarter.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iranpay.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ivoucher-kuwait.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johannavarmala.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "juhanihakala.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jukkakivi.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jukkakivimaki.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jvianes.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karaokerentalcalgary.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karaokerentaledmonton.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kasettilamerit.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kigurumi-party.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klute.spdns.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koing.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kustom-kitchens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lancea.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasmoarquitectos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lechompenchaine.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lefilradio.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lightbluelearning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lp177.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luxedentalfl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lvna.capital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lvnacapital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malariabehaviorsurvey.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariouniversalis.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markkusilvennoinen.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matrix.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattshi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mdinstituteplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mendrala.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "midi-coquillages.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miisy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirumhongkong.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mmoveisplanejados.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monorthopedagogue.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mphold.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrssclaus.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "munialajuela.go.cr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "music-store-download.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musicnotesroom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myriadlex.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myswimmingclub.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nejrecept.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newshour.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "njhq.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noatec.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nogfw.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omniballot.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "omnicourt.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p10.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paseelite.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paveltoman.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pedrolamas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "philippehannes.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piezus.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "platform-med.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playorigin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ponyar.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornhib.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornhun.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proficiodigital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proficiodigital.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protection-plexi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protection-plexi.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychologue-grenoble.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "q3jlzwq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rogo.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rueckgr.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rundh-audio.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarahjaneethan.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sascha-brockel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schnaube.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scwildflours.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebastian-bravo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serptoolsuite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serwis-telewizorow.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shawclan.id.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slothy.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soilegustafsson.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soloroboto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "songlifty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sophi.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soukka-seura.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speac.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sslmonkey.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "staroch.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stocktonengineering.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swanbitcoin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taaltaal.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tapbutdao.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "techiecomputers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teknisetdemarit.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texnogu.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegatewaytoanewworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thetrafficgeek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thevern.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thijmen.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thoughtworthy.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tulevaisuusdemarit.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tupahost.net.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unataly.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unionvilleheating.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "validius.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valkoi-konyvtar.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valkoi-ksk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veikkosimpanen.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wearedevs.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wearetravellers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webmyhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wht.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiadomosci-lodz.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiberg.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "88cakescorner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "absentia.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahmed-alasadi.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allinform.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alphazure.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apuraytravel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arabwomen.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astyork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "at-machining.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlaso.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attoch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audionpack.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "backflow.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baecker-know-how.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbcustomremodeling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbunits.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bcyw56.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blocked.icu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bottom9clothing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "braxtonehle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "changenow.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clariti-health.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cnnc.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comedicgrouperu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmicyes.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "czechglaskralen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dagjetreinen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danchestertonphoto.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dossierweb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dream-factory.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duoqichina.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "duoqichina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebjork.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebooksinfocus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eltd.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emulationking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esajokinen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expanddigital.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "factis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "famousit.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farumbedandbreakfast.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feelmingo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fillu.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flagipanstw.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foreverreem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotomodels.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freak-show.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frednet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gfmp.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "given2.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "given2.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "given2.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "given4.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goofy.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guiaturisticanuevayork.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gustavovelasco.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hack.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hafer.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthynutritionguide.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houseofaceonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "htikeagkyaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ifnet.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imap.support", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infomikulcice.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ingebroer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ipv6.cool", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isabelcaviedes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itcoolie.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jafarmehdipor.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamesplumbingcompanypasadenatx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jfjtransport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jhonmurillo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jmap.support", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jsdesign.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jub0bs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karaokerentalmontreal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karaokerentalottawa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karaokerentaltoronto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katapult-impuls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keysmedspa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kls-platform.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koishi.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "korkortonline.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "langages-programmation.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "licensediscovery.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locationkaraokemontreal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locationkaraokeottawa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "locationkaraokequebec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magisterjuris.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magnamus.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "majalmirasol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makeitshort.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "me.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meaningfulaction.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mechasdepelo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediaforkids.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medinorte.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medklee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meier-stracke.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metro-detroit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miisy.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milchweg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milliarden-liste.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minecraftrealgold.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mokujinken.tokyo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "monicahq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtp-services.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mywestondental.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odo-pro.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odzywianie.info.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osteopathie-guggenberger.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pansino.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perezplumbinginc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "photo-booth.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piedroshop.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piraten-kleinbasel.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pop3.support", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "posukovskaschola.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prisonerresource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psv-herford-badminton.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pta-security.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qanatnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quasetio.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quel-dj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raamattuopisto.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rallyekrumlov.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rapidxray.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rcsscontractors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rebelsewerservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reikimontreal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reliabledegree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rmp-gebaeudedienste.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rolibo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rsrnd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rugbugecoflooring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rundh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s-geiser.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanatstore.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schoolbuddy.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seoprnews.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "serverstatus.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharkeyscuba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shawfamily.id.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sigmalux.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sigmalux.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sigmalux.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sigmalux.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sigmalux.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sigmalux.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sigmalux.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sigmalux.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sivizius.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smurffi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solovyovalawfirm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sourmatt.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sro.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sros.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stackstartup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stackstartup.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standdownofnorthjersey.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startstack.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startup-stack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startup-stack.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startupstack.llc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startupstack.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startupstack.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startupstack.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startupstack.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startupstack.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startupstack.software", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startupstack.technology", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startupstacktech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startuptechstack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steggemachine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strandkorb-jentzsch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studujdigital.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "summer.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supercours.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taildb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telesonicengineering.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terraco.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texcolors.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-spellcaster.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebismarckmarathon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thebrookeb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehasanyildirim.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thekidszone.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelimitededition.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thenational.academy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thepinfluencers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thestreet.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toby.website", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triangela.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triangela.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuxforums.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ulrichracing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unepierrepourlui.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unitehelivy.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unplugstore.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unpoditalia.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upsilonsigmaphi.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "van-assen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vietnamtravelmart.com.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vigneshkumar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vilantice.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vk1fj.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w3ctag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wardpieters.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wego.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wideworks.agency", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winfuture.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "witch-anastasia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xabifk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--43-6kc4be0fbz.xn--p1ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--okra.xn--6qq986b3xl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yannickkordel.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yanwo.com.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youbehero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zesgoes.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zir-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4k3dyptt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abnobapetstore.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advaithbot.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akssma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allergento.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allpornvids.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amango.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amerimex.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antiseptik.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apinat.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "archlinuxcn.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atenasconservadora.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bambuitalia.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benjaminrancourt.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigambitions.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitloco.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bjc.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boingo00.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bran.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brianum.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brianum.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "budapestjazzclub.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buydegree.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chantuong.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chronotech.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clara.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearstep.health", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinicaeliana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudturing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codename-infinity.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codename-infinity.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "codydostal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coldecan.edu.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "consul-coton.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crowdpress.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cshe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cuddlybeardaycare.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daken.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dang-designs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dantana.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datagate.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derkach.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discord.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "distributedsystems.science", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domains.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donislawdev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ds-statistik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ekdoseis.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elementalengine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elementalengine.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elementalengines.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elementalengines.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emil-reimann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essenah.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "factorway.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fazal.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "felixc.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ferrodata.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filipstaffa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forexnew.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortawesome.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freepornovideos.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freepornvideos.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freepornxxxvids.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freexxxmovies.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fromm-projects.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "furtodo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futone.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fxeuropa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georg-ledermann.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goenea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grapheneengine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hanikira.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harrachovskyapartman.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdsexxx.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helloexit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heyitsfree.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotsexvids.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hsmithsmithfield.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iamconnected.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ingbusiness.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "investlatam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iptoasn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itraveller.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackwilli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jayharkess.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jewaedv.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jewelcaddesigns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joshfoley.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpdb.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "judo2point0.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keshankang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kristineskitchenblog.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "layers.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "litepost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livelovelaughlg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logwise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "media-valko.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michielbijland.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mickybottenberg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mig81.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modineaviation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mqbx.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "multipassword.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysexvids.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n8s.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nemesisenterprises.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nemsurvey.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nilosoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nopaste.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nubium.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odorucinema.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oriveda.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oriveda.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p02.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pannovate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pentekdograma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petercawthron.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piercingnagykereskedes.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piercingpiac.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pirnhub.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixelsketch.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixend.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poenhub.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pool-selber-bauen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porm.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "previous.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raulmalea.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reciplast.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redcupit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reto.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosewater.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saipeople.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schwartz.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "searchenginepartner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seniorinhomecare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sexualdiversity.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sharonsplace.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shouohkai-dental.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smikom.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sntial.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spainpol.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starprime.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stevejcraig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stillwell.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studiolupotti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "studuj.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sylencegsm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tandartspraktijkreddingius.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tbun.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tdxexpedited.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telenco-datacenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telenco-networks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tfk-installatieservice.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tjzzz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topporn.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tosshi-life.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trendsuites.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trineco.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trmgo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tryreason.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsu.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tubepornmovies.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ukpr.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unix.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vampiresdawn.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vandoornmiddenzeeland.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "videosporno.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wallacealvesdigital.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wallnot.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wildzap.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wisdomgeek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wonderkind.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xgeni.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xxxfreepornclip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xxxpornohub.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yanhongming.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yaodownload.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youngguns.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "your.best", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zdravypanelak.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeta.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zighinetto.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4cut.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "99furnitureideasandtips.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acina.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adiscorduser.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adopt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agentfirewall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agscapeslandscaping.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aipi.tel", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alieninvasion.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andibo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antifaschistische-linke.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antwire.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aoicollege.edu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcosdequejana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asperatechnology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asperatechnology.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bekabazar.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berksestateplanning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bernhard-eicher.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bicommarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigcorestintas.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bikemod.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bobstikkers.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boyo.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bran.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brandweerzonecentrum.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cakalnedobe.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casalor.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cccp-o.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccnexus.global", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cecilgreens.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceifx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheto.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chrissx.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coachjehond.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coldjetconnect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coreylmartin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmos-ink.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "criptomonedaz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csbya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "currency-one.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d1v7neu4o1h4vp.cloudfront.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darkovepredmety.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dayman.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "debtorsafrica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decrypt.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dedyk.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deepsoulutions.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "designburners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djfunkyju.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doodle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eamproperties.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebikemod.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eleonoramazzola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emulefans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "entegrations.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erincarmody.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escogitasrls.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escrocratie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "escuelaparapapas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etopa.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evertradeelectronics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fallvegermdfharder.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fapplesauce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "federasco.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fieldsgynroboticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filmsearch.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "footmercato.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forumoff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotohiking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fotrino.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fowos.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freelancerim.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freepron.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fungalforager.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "funtimesailing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gagarin.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gdretrofunk.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georgesand.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gomer.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gorki.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grafologia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grafoterapia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "groots.ngo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "growthagent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gulfvestors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gymnastic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haliava.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "halogenos.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hardtime.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthy-shoko.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hearthealing.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herbymiast.waw.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoctienganhgiaotiep.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homebrew.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homeopathie.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homepcomaha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "homewarrantyreviews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hornburg.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hse-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hydrocontrolsystems-janssenwaterproofing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hypothermia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idp.onl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igenuinebeauty.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetowykantor.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetwealthresource.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jagar.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karmalighting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katoikos.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kickshack.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiwideo.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kk-gruppe.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knxstore.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kozackibazar.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "learnk12.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "leteckedarky.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "libressobooks.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liveanimations.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livejasmin-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marketingseo.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marklehane.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mastercareplus-demo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mastercareplus-staging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicalassistantadvice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medifit.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megainformatyk.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michael-simon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minbrew.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mind-farma.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "misco.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motortecbrasil.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtmedia.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myboxing.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nadomna-rabota.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nelty.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nightdreamer.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nobs.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oligenesi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinebusiness.law", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opinionmodel.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optimom.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orionleasing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orzechot.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulus.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pavel.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pianojockl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "popka.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poptattoo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornoclips.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornomovies.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornomovieshd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powertop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "provinzblogger.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychotiq.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "publish.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "putanaru.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvalaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rabotanet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reidostorrents.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resch.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richardsandsterling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rodrigoarriaran.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roll.hockey", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rowingsa.asn.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rsc-cronenberg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sabmobile.pk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safewaywaterproofing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sairadio.net.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sallyman.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santimb.photos", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saxobroko.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sebastien-meric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendigperu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "senfcall.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seoblogs.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seolisting.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seopost.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shittyurl.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "singaporefreelegaladvice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slimwindows.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slmail.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spinning-portugal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "startupstacksandbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steveellwood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strafe-muss-sein.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "szadeczky.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tabelekaloryczne.waw.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tardis.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamhybrid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamhybridforums.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tegamisha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terrafinanz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theangelgivingtree.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecolorrun.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theruncibleraven.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tralios.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tramadol.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "traveltourist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tumbaga.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urbanwave.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "useon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usrspace.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uss-atlas.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vendorpedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vercel.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vercel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vercel.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vercel.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vercel.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "veseleruska.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warking.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weblead.vip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weltverschwoerung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windroide.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpcrs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xaynhachothue.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xxxvids.mobi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xxxvids.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "your-fitness-coach.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zdrowezywienie.edu.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zombiemix.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0x1.ink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5starcruises.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "7in0.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "activiteschiens.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adbpub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ae86zx.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agambition.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agedgamer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anacom.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andreapavone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animalarkvets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anip.icu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "annarborplasticsurgery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apicep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "applemon.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "applemon.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "appy.la", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcanehardware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "argon2.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arshispana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artelista.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azurefabric.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basicguitarlessons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beautybox.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betterteam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biblia.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biekos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinset.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitewinggames.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borderless.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brainit.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyingstatus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c-3po.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calu.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cantor.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carclinichn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carolineovercash.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cassies.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christmasinelmhurst.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christopher-wright.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clickthebucket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collegemate.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contrastchecker.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corarcraft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crc32.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crowdstack.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cshive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberon.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cynthiacherry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daum-group.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desimpelaere.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "die.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalrealitybbs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dominik-steiner.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "driventoday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eaglerockseattle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edam.org.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eder-steiner.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "embarkboathire.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "encrypted.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ensy.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epiphaniusmacar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eshoeft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esignprod.herokuapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ewelinagrochowina.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "expobeds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fantasyempires.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fekepp.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fenn.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fhv-waldhausen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financedepth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financedraft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financeguest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financelong.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financemain.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financepen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financeplush.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financepre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financestead.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financethrive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financetwenty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financewhile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flp-pushkar.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fontnegar.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forfortcollins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freddyxvasquez.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frederickearlstein.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freshmans-pizza.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garrowdigitalmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gasparesganga.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geo-portale.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geoforex.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getdinghy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getnetset.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getts.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gole.ms", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graphpaper.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "habitiss.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hails.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harigovind.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hcfoodpantry.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helendoron.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hof-imbiss-lieske.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hushbabysleep.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iksi.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "immomydesk.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imprenta-es.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ineztheminiatureelephant.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infocrypto.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itbog.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j5y.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacobey.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jayveel.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeddahlyn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jents.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jitprod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "katzei.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keniasfamilychildcare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kindredcode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinschots.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koch-wro.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kosmetykifm.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krispeinture.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kristoffer.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kryptix.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "le-marais.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lenguajecoloquial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liftyourgame.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lilith-magic-ua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luje.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mairiedemoncelsurseille.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mamohe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manoha-proservices.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "masaloku.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mastercareplus-uat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medecinsdumonde.lu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milwaukee-webdesigner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morespacestorage.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "morgen.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musicbox.party", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mylfca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mynerva.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "na-n.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakarkhana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nako.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nrbpublishing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuitec.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olatiferreira.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oneone.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overcached.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palant.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulevers.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perkilo.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfp.works", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porntop100.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornvidsfree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornxxnxx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profilmonline.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profilmonline.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propertyconnect.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "protestantsegemeentekaag.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pstrykmyk.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purepowercycle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quietapple.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rgfundraising.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rtl.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandtime.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sb-graph.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "schwimmschule-kleine-fische.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "setin.srl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sha512.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simaogv.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sixe.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slugify.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spackmanimages.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stefaniepetermann.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steiner-dominik.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steiner.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sticky.to", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strangeelectricdreams.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swap.ly", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sysadvisors.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "telosglobal.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teners.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tenkiz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timecaptis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuinenvermeiren.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tyr0wl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "userstation.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uzidesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vaartjesboten.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vanbalen.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "violettecleaning.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtual-webcam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "volreinsistemas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voxengo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waf.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warszawa-pranie-dywanow.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wineforhelp.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodfarm2020.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xtremotivation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yspertal.party", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zivimexico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "99furnitureideasexamples.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9gag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aanyasri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "accpressurewashing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acemadeira.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "admicos.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advokat73.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "africansafaris.co.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agar.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ai-practitioners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airtrolinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altecgmbh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altrasoluzione.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ambulanceplus.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "applebee1558.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ardania.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asg-egy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asianet.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atmydesk.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atthehelmins.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auk.hopto.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellevueduilawyers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bigbeats.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blue-olive.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boattour.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bobsfhairstyles.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bravoasociados.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c1cdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camera-podvod.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cattery.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cavistenancy.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ceafinney.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cfdcre5.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "channelizer.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chaos-darmstadt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "climatecrafters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudwebservices.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "code-in-plate.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collalloc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collerosso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comite-des-fetes-neuville.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computingaustralia.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coniectoinvestments.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "continuumm-tech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cravecraftonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cytophil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danwillenberg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davidodehnal.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ddays2008.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnsvrfy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnsvrfy.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnsvrfy.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnsvrfy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domreg.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dr-detailing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drogariasnovafarma.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drsejf.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dura.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dynamicsdays.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecozona.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edok.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elalmibar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emelies-inspiration.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eneryetika.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "equisoft.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esoa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eventticketscenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everettduiattorneys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "f3r.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "femcompany.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fena.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fetchmag.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fifaultimatemod.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fiftyseven.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flarewalker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flarewalker.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flarewalker.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flarewalker.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flugplatzmanager.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frahub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freewoman.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "froh.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frutidump.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekyboi.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "georgie.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glitterblast.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "godstoghosts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gotgeeks.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gravitlauncher.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "himbak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hno-norderstedt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "holdiers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hystats.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iacitywebdesigner.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ifur.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imediato.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "integritree.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intsys.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isaaccs.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-com.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackafur.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackinmybox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jamstallt.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jorgemarquez.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "just-bees.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karbox.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinsei.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koreabestood.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kronos-crm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kronos-web.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "languageatplay.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legterm.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lelux.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "localcryptos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lojasmary.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lost-illusions.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lostserial.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lowcarbdietmealsmsk.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "luje.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maasstaddinerexpres.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maeprototipi.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matdesign-prod.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mentoringauchan.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milwaukeecreative.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "misol.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "missouri-sky.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "missycraindance.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitsov.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mitsubishielectric-rce.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modicollege.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mooncharmshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mshgame.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mtr-croatia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mynas.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myrasp.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "naturopatiasiddharta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerdsin.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noblesmart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nokumbaya.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "novokurovka.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nuriaamat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "objectifs-fitness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "objexunlimited.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oblitsov.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ofasoft.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olimpikfit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "olympiaduilawyers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onlinefurniture.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "our-store.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "p3.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pabloarcuri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pamashield.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paparazzo.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "papelariaestacaodopapel.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkercs.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkercs.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkercs.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkercs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkers.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkers.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkers.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkers.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "parkers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partisaani.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "payclock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pctravel.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perscore.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "persiennexperten.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pewresearch.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "picordi.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pinnacleroofingsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piranja-cola.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixeluser.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pohoron.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "point.pink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "portfreezone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pricelistforbxmodules.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pristinepotty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privacyend.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proficio.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ps2online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pulley.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvv-vermietung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rate.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redwaymu.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "refrigeratorrepair-austin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resolutesystems.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rexcutty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rileystar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roellcapital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rollbackdiabetes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosound.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s3lph.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sammichscripts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scaffoldingsolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "school32.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seattleduiattorneys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shape.pink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shokofarehab.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "softwaterinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssld.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stammtisch-bauwagen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starrace.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomstichting.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomstichting.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomstichting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomstichting.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomstichting.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomstichting.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomstichting.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomstichting.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomtreinhuren.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomtreinreizen.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomtreinreizen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomtreinreizen.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomtreinreizen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoomtreinreizen.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stratik.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suiteassured.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sunwahpanama.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surfocal.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tacoma-dui-attorneys.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tfok.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-deep.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theconversation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tietotori.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tlroadmap.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trail.pink", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "txferretrescue.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "udrop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ufone.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uinst.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ukimmigration.law", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ulike123.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usacarry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uspeli.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uvlamp.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uyz.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vaat.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vestakassa-online.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinaygarg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vladimirovka.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vvg-vermietung.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wagn3r.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wargov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wildbergh.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wilmingtonzen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodbridgegrp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodcock.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woolyss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wp2static.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wuki.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xin365.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--rechtsanwltin-paderborn-37b.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yannickkordel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ycb.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu10.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abram-lab.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "absurdopedia.wiki", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aechelon.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afive.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aim.org.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alghadpowersolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amatya.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ameri.capital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anblife.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antidopamine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arc.run", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "argovpn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "astellaria.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atheatac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babaganousha.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balosport.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "berjou.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blueparrotpainting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bookworld.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borsodsakk.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "builtinsf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cachacagaboardi.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "capitalism.rip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celebrate-creativity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cgplumbing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ch-y.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "charitocracy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciplerli.st", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudlfront.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "core.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "covidlive.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "csgostash.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "damebe.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dan124.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daxrunbase.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dexign.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diaspordc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnspropagation.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domainsetup.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drjungspine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecologiahoy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eg7.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eladalfassa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elimidrol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "felixgerschau.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finalgambit.band", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstbaptistchurchofchrist.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flowcrypt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fortcommunity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freecam-sex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freehdporn.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freehqporno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freshmusicsheets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frog.industries", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frown.town", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garage.click", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gatehub.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gbhem.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gergoladi.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gudbrand.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guiadev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h5q.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hack-bang.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hejazultra.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostingdiario.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imanageproducts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imfacademy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetstones.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iprash.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iszy.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kamery.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kanker.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kap-kirche.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kcpromi.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kescher.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kihi.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "klinikum-oldenburg.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koko.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kutalek.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuzmik.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuzmik.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kuzmiks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lgerman.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "limportemps.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loxdonmarkets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macupdate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "madadmin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markocloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matega.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mclanexpress.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikkel.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minapan.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miraclesformya.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "misterd.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mlada-moda.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mlpvcdn.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moblkar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mods.fm", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msoida.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mui.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mujeresfemeninas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mutsumikai8989.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysites.guru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natuwa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nixcp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noawildschut.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oecdpisaforschools.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ohiowebtech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "packservice.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pagbitcoin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pagexl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paysitesreviews.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planisware.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "planiswareusa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porkbun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "press-presse.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "procode.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proiceresurfacer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "projectalias.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qrlab.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiosimba.ug", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raycon.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "renaudmuller.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safiosolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santehnik-home.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saudiglasses.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scanmy.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "screenzy.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secureover.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segmentify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "servi-tek.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shipbuddies.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sme-gmbh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snatertlc.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoom-stichting.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taibachicken.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tch-forum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecnomagazine.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teplo-russia.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thevirtualdetective.games", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timqueen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobacco-shop.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomacino.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trespedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trifence.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turismogdl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tvtorcedor.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urge55.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vader.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vennprime.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weirdware.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "westlab.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolrdwidessl.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wordwidessl.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "worldwidessl.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xoxo.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yaay.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zbuilderz-lb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeitgitter.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ziron.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "123-d.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3ecpa.com.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3ecpa.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3ecpa.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "42usd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4huawei.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4xiaomi.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adventistai.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "airit.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alamanceconstruction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "albourne.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amlakzibakenar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andradealbuquerque.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apfm.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arc-relight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arcsar.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "armourroofinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arnamur.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "athorcis.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azimech.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "babyshopsupport.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbqs-algarve.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "besox.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blightnight.games", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blightnight.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blightnight.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bocciatitanium.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bollymarket.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brasilmedia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brianleemarketing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridge-to-knowledge.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bss-systems.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bss.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bss.net.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bss.systems", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buurtkeukens.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buzzkuri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bv-driver.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "byll.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "calzaturesira.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casamentos.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celulares.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centralex.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "centrosocialferrel.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chambermeansbusiness.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "christophergowerjohnson.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cirasync.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyr.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coloradoseodesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "completecareair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "configwizard.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corpomotriztokio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "createcode.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "curseus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "danielleskosky.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbradley771.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dekasseguiempregos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demaison.pro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "denverilluminations.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dicoeste.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dievozodis.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitale-oekonomie.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "displayrd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogwoodceramics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dominicself.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dominicself.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doranobi-fansub.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-facture.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "earthpoints.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eightyfour.pictures", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ejcabinets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elbiaadmin.sk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enginytech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erkankavas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "extrafrei.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fipackaging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flog.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flytrap.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foguest.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forexplay.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forwardemail.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fourseasonsgrower.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freehotline.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freepornomovies.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freesexvidz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frilima.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fsinsight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gbusercontent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getthegoat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getveer.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glk.academy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goingawesomeplaces.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goudsbloemonline.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gradedblue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grupoenelcolombia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gvaa.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h10s.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hamiltonsalestraining.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "henrybrown0.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hqteas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hyllie.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "i-3c.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idehvector.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iexpats.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imperialism.rip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infomalin.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insideevs.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internalfb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "international-genealogy-services.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iowxy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itrezzo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobs.schwarz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "julioteixeira.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jwala.diamonds", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaijo-physics-club.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalafard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kevinbauer.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiplelive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kojiishikawa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krilotek.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lecafedugeek.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lellek.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lespepinspunk.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lineaesse5.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lizteacher.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malaysiabrands.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcplat.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mes-courriers.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moviles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mywoodbridgedentist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nesheims.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nibbler.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nick-black.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nikhilnimiya.love", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordcheckout.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordesttrasporti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nordpass.asia", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notcurses.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "o5.vc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ob-salon.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odabilocal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odensc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ok.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orlandooutdoor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ouderamstelbridge.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pdpa.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfeifferszilard.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "playblightnight.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plcclosets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "politicaprivacidade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ptcdogpark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qclean.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qr0.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radechefonne.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radio-valois-multien.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redcross.com.ph", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redtrig.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redtrig.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ritoner.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rockymountaininsurancecenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rvmfm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ryzen.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sb-webdev.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scan.computer", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scif.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sgsmart.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "siika.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "singaporebrand.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smtchahal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snapsh.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soji.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statefundca.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "statefunddirect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stealth.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuudium.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superstone.diamonds", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sveikas.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "swoop-qa.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syncgal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tagaytayhighlands.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tavoseimai.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tavsiyeforumu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "temporaris.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tenshokudo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tenshokufair.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terraneesens.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theangelgivingtree.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theangelgivingtree.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theangelgivingtree.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thedoc.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefitcareerist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "therenderingmachine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toledotrainday.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topbrunchspots.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toph.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tricountyheatingcooling.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsacareer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tutima.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ucabinet.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "universdejeff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "updoze.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "victoria.associates", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vincexpertconsulting.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visionwow.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vokzalkursk.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vokzalperm.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vuoto.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wapplerbrewing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webmediaclick.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weddingwire.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wirbsinglereview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wisehome.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wokfilms.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wwads.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xpertsunlimited.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xps-auto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xps3dp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xpsauto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xpsautomation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zamtech.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zenspace.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1001reasonstolearnspanish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "186526.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3degreedesign.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3niu668.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4hw.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "8bitsafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aceofdiamondspainting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acephalafashion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "as41405.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atk-huolto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aunto.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autotras.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "auxessenceselfiques.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bakerbasements.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beautyest.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benmedia.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bka.li", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bowlidex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "breffa.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brickland.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bricksandmotor.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bryantluk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buchangroupinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burmeister-gmbh.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cailoli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carcare.net.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdseditora.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciel.coffee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clinicadentalayomunoz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cody.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coffeeciel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coffeeciel.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "compare-energie.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "computerscience.guide", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyklistika24.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deltaworkssecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deltaworkssecurity.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalitglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalsearchlab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "documentnode.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dominobreaker.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "downloadbestapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "economyroofingco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edgelogs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ejit.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enactusteesside.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "envirotecstructures.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erogen.su", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "famlefeber.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "farb-tabelle.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fixedpricemovers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flashcardsmobile.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabnotes.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geblitzt.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gefeuert.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlent.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlent.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "github.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graffitinetwerk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grupo-zoom.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hdevent.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hekoro.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heyitgirl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ian-barker.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iblog.pk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igry-onlayn.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imransarwar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infcloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inshared.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ioanamateas.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itsoft.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iuspenal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joomlaclub.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kabuki-inc.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kardjali.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kedero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kopieid.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kristall.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lazzzy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ldtborovina.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lefcoaching.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "liisauusitaloarola.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lirelesgens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucacastelnuovo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lwis.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mantalak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "markentier.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "megawhat.energy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadopago.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadopago.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadopago.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadopago.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadopago.com.pe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadopago.com.uy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mercadopago.com.ve", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mibeneficio.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "misbalances.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mnml.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "montagetravel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mostfamousbirthdays.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mouracloset.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mrmn.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muellerurology.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myfxbook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nadacnifondacr.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakazato-shika.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncksrv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncksrv.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncksrv.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncksrv.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ncksrv.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ndev.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nemplex.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neo1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netdisk.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neurosurgeryinmexico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "niinaratsula.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nostoautomaatti.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nunoprospero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "officecode.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ofo.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openid.net.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opil.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ormanetrading.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outerface.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phv-bw.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piszmak.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixelmonworld.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pravlife.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "presgrp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "presgrp.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "private-relay.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ranters.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdmc.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readydedis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "realtechreviews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recipekensaku.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regionaalenergieloket.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remotish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rexeroofing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rezni.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royal939.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s-mall.com.sg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sapporo-asaichi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sauve-tes-euros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "savonsuuntaporaus.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secretzone.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "semtinde.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "share2act-dev.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "share2act-test.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shirro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silverfalcon.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyarch.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skywalkersa.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartit.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smileback.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smkn5smg.sch.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sodermans.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "specificenergy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "staygold.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "strobel.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sugarondemand.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sugaropencloud.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sugaropencloud.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teleyal.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "temporalmotivation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "terryburton.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-burtons.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theunleashedpet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thinxtream.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tianbo1088.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tianbo1998.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiny777.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinychen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topspani.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ttr-home.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uhuc.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vcz.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verzekerdbijhema.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viilup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "villekautto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visiondigitalpe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "war-requiem.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wikalin.ski", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--s1r71tg0o30bxm52odlvspdop4b.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zehka.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0x3a.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3pif.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acidoascorbico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adenopatia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aksot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alanbleiweiss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alanina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alianet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amdrumors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "angelzapien.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antoni.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asana.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asana.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asylinfo.no", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atrakcjenaeventy.com.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bajarjuegos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bandaumnikov.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benjaminleupold.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betalgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biologo.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitbroker.exchange", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackhat.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blogtechnologiczny.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnb.direct", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bodas.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boehm.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brighterimagelab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsmsl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bss.solutions", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "budofjoy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bugfuzz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buscalotodo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c2athletics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c3stream.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cancersintomas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carlingforddental.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carnetdeconducir.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catartofsweden.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checkrz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chesstempo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciclodekrebs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciclodelcarbono.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ciclohidrologico.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cinematictouch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clarkhowell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudplan.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cmrconstructions.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cms-world.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coenzima.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "condictor.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "correo.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cosmic-relations.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cottage.direct", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "covid19.govt.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cozzack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpucheu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crashbolsa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "criscond.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberskyline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deathcult.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deportes.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "directmailctr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "discordextremelist.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "docedic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "docsrev-aws.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dreamytheatre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dupuis.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dyregrave.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "earthsocialism.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eisei-iinkai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eldiariodemof.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emvitals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eosinofilos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etf2l.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurocom.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exentio.sexy", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ezhub.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "femiwiki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleeb.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fprinnovaciones.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futbito.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "futbolcba.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garrow.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "geekynutritionist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getscif.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gordonbeeming.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gosiberia.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gruveo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gryphzia.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harumi-cl.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hellopowerserg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hestegrovvaren.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hiranosayuri-piano.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hourai.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "huesers.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "illuminaterecovery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inoreader.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iox.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jandj.yachts", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jefcorlabs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jloh.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joomladeveloper.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jrulka.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justpractice.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kathrin-maren-enders.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kimino-school.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinetikos.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kreuzbergflieger.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "labels.co.ke", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "letriolet-tignes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "littlefingersindia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lolifamily.js.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lukaskollmer.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lumien.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcillacetfils.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mariages.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "martinschulze.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mathiasheise.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matrimonio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mattmorrissound.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "millennium-thisiswhoweare.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miriamgamburd.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mlsvallarta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moonbyte.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "motolinesupply.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "movihut.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msngr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muydelgada.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myload.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mytransmissionexperts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nekochan.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nya.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obs.plus", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onpaws.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "open-fixture-library.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "organicseo4u.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "osteopathe-voisine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outervision.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paketverfolgung.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perved.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "petitsfreresdespauvres.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pfarrhaus-mon.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phw.org.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pornfreesites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porthos.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerscif.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerserg.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powersergfeds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powersergsecure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pozitone.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poziworld.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pradmin.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prestatyn-scala.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prestatynflowershow.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "printwasteminimizer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psc.gov.ws", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pujasharma.associates", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radiation-oncologist.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readyscif.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "readysetscif.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regalador.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "richfieldsean.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "road-safety.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roishopper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "roveridx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "russell-tech.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safefreepornsites.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safescif.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safetydrivessuccess.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanitix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santandertrade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sarahjaneredmond.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saxobroko.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scifplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scifsafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scorb.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scroll-to-top-button.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slabstage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smltour.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solaxfaq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solviq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportify-design.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportspassbremen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starthubs.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stilus-patent.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stla.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storage-base.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuartparsons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stuudium.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sugarsalted.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "svseglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sypreformas.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "team957.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tenken1010.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelaurelchiropractor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thoplam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tinmarin.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tryfrontline.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "up.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "useworkshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vapourtown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vietnamhairs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinyl-digital.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vision-painting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vrallart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warrenhousevets.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wdesk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whiskey.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whiskey.money", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whisky.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whisky.money", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whiskymy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whiskyshop.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whiskyshop.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "woodwicker.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--hsers-kva.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yarowork.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yellowsource.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yozakura.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zotan.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9to5linux.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abhijitvalluri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ajvco.com.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anabolic.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anitalk.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apiora.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "as41073.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atm.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audiomedica.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awedience.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bdsmcontrol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bellaireroofinginc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "betterboards.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bighorn.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bintube.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c7n.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cabazon-tu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carbonholic.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carevo.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carsonkoziol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccaguavivadonaciones.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chacoonline.com.py", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chacraexperimental.com.py", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clapbacks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleverdarts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyrhub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "code.golf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colchesterglobal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "conexionok.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coop.com.py", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coronasafe.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crrapi.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cuhawaii.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberwritersink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daniweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "datadorf.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dbnext.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deemasfashion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "depedcommons.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "derguns.town", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "detroitlocksmiths.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diennobi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donewhen.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donewhen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donewhen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donewhen.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donwhen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donwhen.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donwhen.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donwhen.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "donwhen.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dropsite.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "echoteam.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ectpro.co.th", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elad.wtf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electricbeast.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "emptyarcade.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eslove.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evadi.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "everydaypower.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exarcheia.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eye-move.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feehla.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "findeth.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fleischkaes.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "flinny.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foreverbreak.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forevertoday.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freenome.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "frigochaco.com.py", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gba.ge", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genghan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlent.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlent.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlent.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlent.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlent.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlentgroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ggld.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gharbala.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glpreparation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gomezhvac.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "govorenefekt.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gti.cx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "happytestings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hemp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelfloridachaco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igloopreview.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igloosandbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infohas.ma", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inscribeusercontent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jcelectronics.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jobsoid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jocata.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jsg.hk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jsjfact.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "junshinkai.ed.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kalpavriksh.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinderosteopathie-osteopathie.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kindredcode.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kindredcode.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kkc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konflikte-als-chance.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konflikthaus.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kra2laiz.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kryptoforce.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "la-vraie-histoire.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamaturitadidaniele.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lgam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logopaedie-sandkrug.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lowcarbspark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lucidea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "machin.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magaliff.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magikbyte.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "malcathatochen.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manulife.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mapuut.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maschine.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maschinen.email", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mastercareplus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maxwellcody.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mchollet.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metropole.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelstoffer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mineralnibani.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musttest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musttest.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musttest.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musttest.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "n-metz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nachbar.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natalia-shablo.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "natwest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ndaal.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notrero13.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "npc-ts.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "opcod3.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ortanatech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pamiers-citoyenne.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pekcazip.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pioneersenior.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plum.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poezja.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "problempaws.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "propertyupdate.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostoporno.fun", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quantatec.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qwrk.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "railsideworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainbowbrains.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recycledinorsett.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recycledinorsett.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "remoteroom.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riosoil.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riosoil.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riosoils.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "riosoils.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rivalsa.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "s-4.host", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saigonland24h.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sawiday.work", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sccoaching.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scholarships.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scott.st", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "security-systems.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shahidfakih.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shopforeverproducts.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shouldtest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shouldtest.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shouldtest.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shouldtest.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simpelkoken.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simpelkoken.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simpelkoken.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skyblond.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skylightipv.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solostocks.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solostocks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solostocks.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solostocks.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solostocks.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solostocks.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solostocks.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solostocks.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solostocks.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solostocks.ma", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solostocks.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solostocks.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solostocks.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solutionmotsfleches.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spjaet.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sportllux.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "standoffdrop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steinmetz.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suerteloteria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "surgerylifeenhancement.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tagat.top", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tf2pickup.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tfsound.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thecolourcloset.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thefarleys.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "triedandtruebytrista.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trussgenius.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tryin.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniteforrecovery.govt.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unitefortherecovery.govt.nz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "us-igloopreview.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verygoodwebsite.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virtualx.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vokabl.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wbookcompany.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webdesign-kall.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wisersp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "withgentlent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wordpress-szakerto.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpg-verwaltungen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "writtenandrecorded.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yangrq.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yinyang.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "youran.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ziad87.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zlatograd.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zzops.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zzops.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zzops.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zzops.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "604windswell.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "70mpg.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "99laptops.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aboutyou.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "addresstobe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adutoras.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agence-initiale.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aklagare.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aldyputra.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alterlinks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alterlinks.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alterlinks.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alterlinks.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alvastonauto.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "americanpop.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ancroma.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apfhaiti.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apsb.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arabakiralama.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arina.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artigoagency.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artsautomotive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "attcleaning.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avclub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avogel-company.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avogel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avogel.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avogel.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avogel.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avogel.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banhphongtomquangtran.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "banmapvn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bartholf.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bgm.bg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bjarno.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boostplm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bunbun.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ca-saintdie.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cadeirasparaescritorio.ind.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cafefacil.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camisetas4fun.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camisetasbichopreguica.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caribeeficiente.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casanovafishtacos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casavlas.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cattsgym.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbdeighty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbdtelegram.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccnadesdecero.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheekboss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chick-goo-ewe-farm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chronocarpe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cjr.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cmtportal.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cntraveller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cocomelody.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "collateral360.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colorfulcloud.eu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "columbiaproemergencymovers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "couplesapp.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpgiiaragon.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cristaleslitios.com.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cronjob.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptoeighty.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptohinge.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptoleed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ctyrisinkneri.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cultrixdigital.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "currentbitcoin.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "currentcryptocurrency.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "currentcryptocurrencynews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dangeredwolf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deemasfashion.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deemasfashion.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deemasfashion.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desanctispro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digimoncard.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eldiedesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "essentialoils.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etdonline.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "evolucionestudios.com.bo", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ezinternet.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "factsvision.sr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fatvalley.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fbthirdpartypixel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fbwat.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feecreativity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feitam.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fetish-x.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "filokiralama.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fixverkaufen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forecastapp.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forklift.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forthenrycustomknives.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fxperk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fxpunch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabe.watch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gaytubec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gentlent.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gil.re", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gizmodo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glamourmagazine.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gncsuplementos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gq-magazine.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grasengroenkunstgras.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gumbointro.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gutterbus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h2cclipboard.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hacktivitycon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hardies.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hathai.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hazardhub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthbrochures.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hesabcenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "highaltitudearchery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostelxaxid.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotsoft.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hyychat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hyyperchat.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "idlemon.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igloocommunities.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igloodigitalworkplace.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igloodigitalworkplace.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igloodigitalworkplaces.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igloopartnerportal.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imawasn-consulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impresadipulizia.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infotectsecurity.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insidetheigloo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ja-tay.sr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jalopnik.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "japaneseacupuncture.london", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jarno.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "javanie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaylee.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jeneratorkiralama.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jezebel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jkuu.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "johngreatwood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kahane.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kazumi-clinic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keramikaopava.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keyspanish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinja.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kotaku.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "larsi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "latestbitcoinnews.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "latestbitcoinnews.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "laughingloon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawyersofmissouri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lawzava.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lemans.com.gt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lloydrogerspencer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logay.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lysel.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magneticarrow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "manchestertechservices.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "materasocial.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maynails.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mchughisle.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meatfoods.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "misterboddy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mkws.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moderndeck.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneytamer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mumbairoleplay.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakliye.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newlight.net.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nihon-rosoku.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nilpointer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nukleovisual.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onechronos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partsbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "partsbox.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "payrollhr.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "peerpressurecreative.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pijamasbichopreguica.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polifisio.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rad2share.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rase.rocks", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ravron.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rc21x.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "redraven.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rentacar.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "resolvo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rhysre.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rurian-gyohen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "samanexports.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segurancaresidencialbh.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "semiweb.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shinice.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skovbosburgerblog.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slimmarkets.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sound-recording.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sozialistische-gruppe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speedsvip.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "starsub.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "staydryohio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taiwan-kitchen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teammojo.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theinventory.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theonion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theroot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thetakeout.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thetipo01.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toolip.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trabajarytrabajar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tractor-pulling.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trakid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trophyshopinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniforcele.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ut-jobs.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vaclavkocum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "velocitycu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vfxstudy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vinc.name.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vogue.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vuldb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webdevoo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "whaller.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wigwam.design", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "windrich-werkzeugmaschinen.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "winebrasil.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wired.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wptrigone.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wurzelkanal.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xosh.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2isk.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acytec.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akrilikhavuz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aless.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amsconnectapp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amy-nichols.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "antstoolbox.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artgranit.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asanuma-clinic.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "athensvantours.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "athensvantours.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "authentictrucks.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azaria.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azoulaygroup.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "belezadateresa.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "besteenergieleverancier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestfornutrition.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bettercallsully.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "biloxisportfishing.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin-news.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blitzpaintball.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bolivar-circuit-clerk.ms", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bricks4kidzelearn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brickvortex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsrueti.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bst-brandschutz.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bzhserv.ovh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cdkpatterns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "checklistuj.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chstrategies.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clickrising.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coin-money.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "coinnewspulse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craine.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "criminal-market.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptocurrencylatestnews.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptocurrencynews.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cupomia.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dafunda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "darxx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "debut-mebel.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decorations-elmotamaiz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "defaultisafault.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dekasegifuzoku.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dnt1egh97ehxx.cloudfront.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doencadobeijo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogecoinnews.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogecoinnews.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "domainproactive.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drstevenwarnock.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e.gg", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecohomebuild.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edisonstreet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "edumaritime.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enfermedaddelbeso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "epitelial.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "espectrometria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eth-news.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethereum-news.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethereumnews.best", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethereumnews.site", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethnews.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etyka.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "facebookmail.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faux.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fbwifi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fenotipo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "financialnews.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabe.download", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gamecss.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ganglioslinfaticos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gasometria.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getpet.lt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gkepm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gluecksmomente.boutique", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gonadotropina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gpwmd-portal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grandepresion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "granfutbol.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gripeh1n1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hatsukoi-seikotsu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "haus-momo.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hbsvzos.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "heroxin.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "high-flying.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "highplainssiding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hirosehp.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hundimiento.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hyy.chat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ibinex.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ideesrecettes.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imin.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "industrialcalibration.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infosec.mv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inkteeshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inteapuestas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intelligentrics.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetmarketingprofitscenter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "it-actual.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itrendbuzz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jesusdenazaret.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joostmaglev.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joshimedical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "joychetry.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jungleworks.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justforschools.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "justgamblers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karasevm.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kido-dc.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kneerux.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "konnai.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kreatywni.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kreweofneptune.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "krugernationalpark.org.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kundenvertrag.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ladedu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "langhof-immobilien.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "latestimmigrationnews.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lavarex.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lecercleguimard.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legato.marketing", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lilou-sportswear.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lilousportswear.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "linfadenopatia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "litecoinnews.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "loglineargroup.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lorengraff.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lunaballoonclub.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lushersolutions.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lutify.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maduracion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magicline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "magraebela.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matglobal.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matpools.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mbr.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mcdeed.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mempool.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meperidina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "messengerwebdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "michaelamead.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minhng99.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "msfishingcharter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mswdtemplate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mujlinux.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mybottle.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myconnection.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mypathologos.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysidekick.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "namsbaekur.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "negardaroo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neovapo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nerdaristocracy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "netcrew.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newshome.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "noradrenalina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nutristories.gr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nxlogis.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oddlama.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okuguchihifuka-clinic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onby.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onodera.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oog-osaka.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "optimausa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ornitina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oxalato.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oz-artfocus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pacificaent.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "personlookup.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pha.pub", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phillipspediatricsoxford.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pillar.ninja", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pillar.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pncfx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pnlarticles.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "postermywall.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pricevortex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "principedepaz.gt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "productivemachine.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prostaglandina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pylad.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regie-sc.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "relyonnutec.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rte.host", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safalfasalonline.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "santhoshveer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanweb.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sars-cov-2.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secrecion.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seekweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendai-himawari.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sethcorker.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sgtech.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simpelkoken.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simplyathenee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sintomasdocancer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sirvio.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slbknives.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smartandcom.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "solbjer.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spamty.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "speedsvip.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sstool.vip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stellar.com.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stellarlumensnews.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stockmarkettoday.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stx.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sumit.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sydneybusinessweb.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamilsms.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tanneradvisorysolutions.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tarugo.net.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tbird-q.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tbq-s.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tdeaqua.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tendiestown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "the-ace.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tilecleaningservicepros.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timdemisch.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "todayfinance.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "todayfinancial.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tokinokakehashi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topbusinessnews.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tophighnorldiet.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topnlist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toumeitech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tranmao.vn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "transaminasas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tropikdeniz.com.tr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trxnews.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tsiolakisfurs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tuckhayward.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "turkreno.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tweaktownforum.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "umo.ci", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urko.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vernonreinike.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "viamilitaris.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virusah1n1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virusdelebola.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "voltainsite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warfarina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "washingtonnewsz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webhostingblackfriday.deals", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "websika.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "website.builders", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wedshoots.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiisas.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wimmer-software.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wimmer-software.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wimmersoftware.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wimmersoftware.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wolvesbanemanor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpspeedmatters.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpuse.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xlmnews.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xrpnews.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xrpscan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xumm.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yezi.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zinglix.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zoflora.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "24ohrana.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2sendai.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "4-0-4.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aakf.org.pk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aaronburrows.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abdulkarimm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abu-auftrag.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acadiate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "achkandiro.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "active-baby.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adamabernathy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "administratorhandal.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "agrus-wow.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ahmud.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "akbam.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alcoholia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexalist.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alimeta.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allfashionews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alvirzy.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anderstornkvist.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asianbusinesscards.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlanticcitycasino.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlanticcitycasinonews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autobazarcentrum.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autobraga.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bekmekci.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benleb.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestcreditcards.biz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestcreditcards.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestcreditcards.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestcreditcards.tv", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestcreditcards.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bierbaumer.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoin-casino.monster", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoincasino.link", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoincasino.monster", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoincasino.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoincasino.today", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinera-review.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinfaucet.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoingambling.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoingames.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinnews.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinnews.guru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinnews.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinprice.buzz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinprice.international", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinprice.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinprice.pizza", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinprice.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bitcoinslots.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blackforlife.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boringnews.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bredabeds.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bubu1.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "camerashot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carberra.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carberra.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cbdlession.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "certificateoflogistics.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chanakyanewz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chekhov.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chooseyourdesinty.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "circuses.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clubgalileo.com.ec", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "comsoli.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "contato.vip", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crash.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cswapps.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cwallpapersheb.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberschmiede.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberschmiede.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cyberschmiede.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dajjal.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deluxeblogtips.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demostweb.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "diegoisla.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dispur.nic.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dlmixcloud.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dobavki.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "esexchange.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethereumnews.digital", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethereumnews.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethereumnews.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethereumnews.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ethereumnews.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "etimmer.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eurovision-romania.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyelash-mc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "faieurope.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "festival365.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "festivalesargentina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "figbert.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fizzcoronationstreetdied.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forexcomreview.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forexmarketsm.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freebitcoinfaucet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "freepatternsarea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "friv-2018.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fxbrokerreview.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gabe.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "garfieldairlines.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gasmar.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gibranhernandez.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "glamourtime.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "godating.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "golfmagic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "good-wishes-4-u.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goodsite.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gpspolis.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenzved.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gretathemes.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gslabnet.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "healthbank.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helpcentral.ng", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "herkel.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "highdaseo.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotdresses.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hotelsonline.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "houhuayuan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icze4r.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icze4r.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "icze4r.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ideice.gob.do", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ikasgela.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "impresapulizie.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inakasoftware.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "inceneritore.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infomexico.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ingenious-development.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "insotech.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "interactivebrokersreview.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intergermania.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "irr59.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iswag.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jacopomolina.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jonnygreenwood.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jrock.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kakazai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karlov.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "khalidalnajjar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kienviethung.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kingtech8.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kiseimarriage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lagunaklub.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lasvegascasinonews.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legna.roma.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "levis.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lindazi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "livinkitchen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marliesslomp.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "maximbaz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mazury-invest.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medcentr.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medcourse.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "metabox.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mikemcgeephotography.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milkaholic.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobilhaber.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modanese.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "molenaar-ricardo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moneyformybeer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moremindsbetter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mpcmsa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mr-a.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "muziektermen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myclimate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mydslwebstats.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myempire.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mygizmolife.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mysticmedia.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "navnet.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "neocharge.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "newsarticle.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nk-vision.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nkontur.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oandareview.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "obscur.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "odiris.lk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oloadvid.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "one-clue.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "orgtech.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "overcasthq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paulchua.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piknichok.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pixstash.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "podarky.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pokerblog.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "polarhome.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "posadalasalbarcas.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerzonewrestling.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pozitiffchik.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "puebladesoto.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "qeshmminer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rammsteinaustralia.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rbscrochet.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "retardedstudios.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ringlightstudios.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripplenews.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripplenews.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripplenews.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripplenews.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripplenews.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripplenews.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ripplenews.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rosdpk.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royalcitystudios.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "royaltyexchange.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rydeify.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sanin.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sapienza-eclipse.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sapienzaconsulting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "scindustries.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sei-yu.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendaimori.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shanxia.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "silvius.at", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "slated.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smanson.duckdns.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snowboard-break.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sonnenbergharrison.law", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spacelandpark.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stad.gent", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steamid.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stoffhandwerk.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suike.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superiorseating.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sy95.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tastyworksreview.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taxdispute.win", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teknorix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "texican.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thedonaldarchive.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thehomebakery.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thejourneydesignstudio.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thesimons.family", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thetechsite.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tiempolibre.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "timmermansadministratie.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobias4.ddns.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "torsten-werner.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "totalinfo.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tragaver.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tronnews.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tronnews.global", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tronnews.life", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tronnews.live", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tronnews.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tronnews.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tronnews.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tronnews.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tryingtotakeoversweden.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ucero.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ultimadivisao.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uniekglas.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unrestricted.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "upstairs.one", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "urlendecoder.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "usnews-new.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vegascasino.news", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "verzekerjebeter.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vicenterodriguez81.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visordown.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vivachile.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vos.directory", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "votrespace.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "warezbook.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "weathermelon.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webanet.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webmandat.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webullreview.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "willalex.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "williamsalexander.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wings.com.pk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wo25.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpautolistings.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wpslimseo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yanagibashi.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zerocms.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ziggletech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zpider.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1xbetapk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "2002000.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acquadiparma.kr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "admindaily.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advania.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adventurecorps.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "afishablogs.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alexandrevicente.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anihonetwallpaper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apkteen.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "artexhibition.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asatys-partners.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audian.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "australianpropertyanalytics.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axisdesignarchitects.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "axisdesignarchitects.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "badwi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bathrobes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bavaropuntacanahotels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beaconfed.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "begin-motorcycling.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beliishko.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beliyo.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "benoitchantre.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bessmertie.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestecbdolie.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bestnetentcasino.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "billbuddy.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bmm.com.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boomshadow.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brauer-augenoptik.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brest-bel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brest-region.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bsa-dom.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buildingmaterials.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "builtingym.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "businesstravelmelbourne.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buyasheep.tw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buypurenature.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cakes.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carltonelitetravel.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "catcoxx.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cathcartconsulting.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cherry-handmade.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cleanclearwater.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloud-hair.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloutcloset.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cookingaround.town", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "corinsamsterdam.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "correcthorse.pw", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "courseorbit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creativemysterymind.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crimean-wines.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "crochetkim.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "d-tousei.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dangerscience.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "davmimer-mercerie.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "decorpol-renovation.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demxausa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalcrisis.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalimpactlab.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalphoto.group", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digitalphoto.tech", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dneprovski.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dollarhero.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolys.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drillcalendar.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "driveral.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "droidtuto.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drshadankabiri.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drunkcalc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsg.lol", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dsn-k.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dumpper.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dumpper.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dunedot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dynamicathletes.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecosial.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elektroprom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "empresa365.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "enabling.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erboristeria.milano.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "europeancuisine.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exarcheia.online", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "exotictravel.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyelash-navi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fabil.id", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "factoryalimentos.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fale.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fashion-swimwear.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fcl.guru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fifemedicalgroup.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fire-places.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fishtank.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fl.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "florianbouchet.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "forexwine.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "franchiseguide.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fureais.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "galaksidot.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gallery-kaze.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gas-boilers.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gate.sc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gewel.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gimnazija-skofjaloka.si", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goblackwood.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "goldentech.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "govnosite.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grammarhouse.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "graycat.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "greenhous-technology.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gservera.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gutetexte.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "h-var.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hab.dynu.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hairsalon-wish.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hamartrophy.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hardhatengineer.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "harrisexteriors.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helco.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hkl-gruppe.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoistsdirect.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hrlive.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infradot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrapixel.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrarate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infrasend.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "infravoice.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "internetbloger.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "invitescafe.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iproductrepair.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isthatarabic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "isthisarabic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "itero.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "j-maxton.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jackandrascals.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jenkinsry.fi", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jpcorriganlaw.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jscsshtml.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jurposluga.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kajirakuda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kameliya.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaminoweb.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kharkiv.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "koj.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kyle-s.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lamai-crochets.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "law-zur.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "legko-pohudet.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lenii.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lifetimestack.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lindogdahl.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "logoenvue.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "londoncarpetcleaningltd.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "macautocouture.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "makemillion.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "marcenariaembh.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matcha14.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mauditeboisson.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medicalpeople.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "medsister.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meigetsuen1980.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mejofi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mejofi.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mejofi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mejofi.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mejofi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mermakov.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "meteonederbetuwe.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minimalistmenu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miyagi-ctr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "miyagi-r.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mobiler-handel.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "momi-chura.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "moparisthe.best", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mori-cdc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mssa.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mytribes.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nab-services.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakagawa-d.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nakagawa-s.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nash-dom.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "needflare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nigelvm.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nonstopjob.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oasisbodycare.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "oooh.events", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paketwisataliburan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pakjefooi.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pakjefooi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pakjefooi.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pakjefooi.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pakjefooi.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pakjefooi.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "palatte.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "perlina.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pet-net.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phuketbeach.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "piavonpadberg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pilot.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "plixer.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "poppinspayroll.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powderedcloud.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "previstart.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "privacysvcs.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "proekt.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "profit24.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pronto-intervento-fognature.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purse-les.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pvideo.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quackquack.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quichost.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quiq.sh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rainbeaus.gq", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "raymondha.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "reading-assist.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "recolic.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ridegravel.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rise.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safestreets.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salati.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sandramorrone.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sardegnarifiuti.it", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "secrets-marketing.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "segurdatacr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendai-cdc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendai-ctr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendai-rc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendai-sougou.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendai-works.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sheptytsky.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shooba.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shop-cosmetic.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shunmei-hari.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sigmacomputers.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skreutz.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smallwhitebear.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snazel.ae", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snazel.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sociologyk.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soundlight.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "special-equipment.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "specialtyrigging.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sports-equipmen.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "spurto.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stairmaster.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stewpolley.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "storin.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "stratreg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sup39.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "supergood.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "superis.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sylino.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "t-dent.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tafusu-support.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "taylored.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "team-toranomon.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobyx.xyz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tohoku-fukushi.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toolsu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "topjeans.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "toptur.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tousei.tokyo.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tradingtag.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "trasatsatelital.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelcompany.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "travelunicorns.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "twilo.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uesc.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ulrike-sichert-schuster.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uwat.cc", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "valledeloso.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "visafruit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vsevkusno.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "water-filters.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "waterdamagehouston.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "webisle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wi-wi.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wiccansupplies.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wine.com.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wine.money", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wk.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "x-embed.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yukieda.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zastenchivost.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zelt.in", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zeroknowledge.me", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "0xword.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "10media.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "10site.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "301.moe", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aabeltech.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abacuslouisville.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advokati-ceva.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allline.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amilesportes.com.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apcpky.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aradiantlife.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arihunt.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arnoweterings.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "asiafood-curator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlaswu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atopy-sendai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atris-qa.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "avg7.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "awsl.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basic.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bastelstu.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "baysidefamilydentist.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bbrigittae.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bind.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bnkconsulting.info", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bobtiell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bojanowskiszkolka.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "borduurshophengelo.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bouwhuisman.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bridestarco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brownsprinkler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bugreader.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buhitter.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "burling.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buspark.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "buspark.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carloscar.art", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carloscar.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carloscar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carloscar.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casaasia.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "casaasia.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ccwebdevelopment.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "celseven.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chocolatesonline.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clearwatersexhealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyr.shop", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyr.store", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyrcreative.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "clevyrvr.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cloudstoragecompare.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "connect2pure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cook-maestro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cortizo.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cpro.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "craphound.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cryptoinvoke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "currenthaus.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "deepnote.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desertbluffs.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "desinfectantemanos.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dg1-test.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dgvservices.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "di-basketballscouting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "djdebodas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "doener-curator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dogvolution.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dontenedor.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "drnjewels.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "durulezzetler.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecampusontario.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elcirculo.mx", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "electrodomesticosmiro.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elgustdecreixer.cat", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elgustodecrecer.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "engagewell.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "er.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "erinmyers.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eyesee.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fdimmo24.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "feek.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fidelitysound.es", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "finance-devils.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "firstclass.com.kh", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fogu.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "foundationrepairasheville.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "free-barcode-generator.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "fumilink.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gardencentreshopping.co.uk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gartenforsenate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "generatorkodowkreskowych.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genious.co", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genious.world", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "genom.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getpaidtocode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getpaidtodesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getpaidtodev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "getprohealth.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gimbal.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gnu.style", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grasp24.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "grday.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guessmatch.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "guineapig101.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "gyllyngvase.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "helioring.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hi-res.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hoken-okazaki.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "hostingtg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "howtodesignwebsite.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "igranit.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ilasoft.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "imperialfenceinc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "integration-mouvements-oculaires.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "intel69.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "iot-alliances.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jaleesa.sa", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jameslahey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jehende.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jendialmeditation.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "jxs.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "k-matsudaclinic.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kaizoku-dmc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "karelvanhecke.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "keyesrobot.cn", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kfispiff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinesiologikerteminde.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinesiologiodense.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinesiologiskolen-syd.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kinesiologiuddannelsen.dk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "knitting.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "kodama-dorayaki.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lajornadafilipina.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lclarkuhl.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ligare-fp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "lobbes.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "long-journey.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "matsushima-kosodate.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mediskin.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "milliegrace.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "minibus-service.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mirrorwood.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mixes.cloud", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mizukoshika.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "modellbahnshop.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "mojo.az", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "munakata-cl.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "musikhaus-korn.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myers.house", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "myjustice.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nevim-co-varit.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ngpest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "nils.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "notisecit.hu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ocongo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "okubo-shika.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "onetap.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "openbayes.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "outlook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paga.red", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paidtocode.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paidtodesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paidtodev.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "paysbuy.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pepwaterproofingllc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "phdelivery.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pikker.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pizza-curator.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pluralistic.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "porwal.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "powerball.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pradohalcones.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "pressfreedomtracker.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "preziti.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prog.olsztyn.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "prog24.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "programmes-neufs-corse.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "psychomotricien-la-rochelle.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "purefoot.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "quintacbls.cl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rackoon.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "radarcupon.com.ar", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ramos.tur.br", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rapidgator.net", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ratasdesign.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rdimedical.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "regentinvest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "repaxan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ritus.md", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "romankozak.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rslcaresa.com.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "rwbstuff.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "safehouse.zone", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "saletodo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salon-de-patchouli.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "salon-largo.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "satramana.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sealandair.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendai-cc.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sendai-cooking.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "seocluj.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sfeerhuisbaan.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shpil.by", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "shpilevsky.name", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "signaturecountertops.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "simdex.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "skautibrno.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "smarthrms.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snack-online.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "snazel.co.il", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sndcdn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "soegi-haru.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sona.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sparanoid.blog", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "sparanoid.network", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssa.co.ir", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ssslgaragedoors.co.za", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "steiners.party", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "suncitycinemas.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "synccore1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "syok.my", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "takano-recruit.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "takano-takuhai.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "takanogroup.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "talknetwork.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tamuraei.co.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tapetenresonanz.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "teamsass.ca", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tecnograficaimpresos.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tentq.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thegenesisshop.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theloop.ai", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "thelotter.club", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "theromexchange.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ticketure.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tobyslawn.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "todayprice.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tomikoyco.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tpnky.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tripguide.is", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "tymoch.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uebersetzungscenter.ch", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "uhlturf.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unitanzania.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "unric.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vanwort.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vaxbook.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "vimoksa.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "virginiabeachcoolsculpting.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "w3squad.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "wagspuzzle.space", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "watari-bg.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "werlabs.se", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "xn--grnstrm-r1ae.nu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yu-dkc.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "yuzei.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zbynekuher.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "zerotoone.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "08000113.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "1st-online-academy.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3dtech.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "3orod.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "5net.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "8796.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "9saves.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "abu-nour.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "acchan-fun.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "adib.family", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "advaith.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aflam-online.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "alfawedding.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "allvitalconstruction.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aloo.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "altweb.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "amilaresort.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "andrewsoutar.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "animaletnous.be", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "anlikhaber.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "apogaea.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aqwire.io", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "aqworlds.cf", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "arstudentloanhelp.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "assid.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atlasdog.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "atris.media", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "audionamix.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "autos-mertens.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "azinmahab.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "balashiha-podmoskovie.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basar-horrheim.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basisonline.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "basisonlinefiles.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "behavhealth.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "beko.ie", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bixbasement.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "blomberguk.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "boardgameforces.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "bpvr.nl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "brockwayministorage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "byw.cymru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "c-rpg.eu", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "callamnow.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "caringmedicine.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carolinegirvan.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "carspicture.tk", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "case3d.ro", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cendis.cz", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cha-ta.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cheap-airtickets.ru", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "chromarea.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cjfinance.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cjimmobilier.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "colombyinai.ga", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "cornerstonenorthwest.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "creatingchange.us", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "critterculture.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dabhand.studio", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "daofficers.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dartnallministorage.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "david-clarke.id.au", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "demandbase.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dg-1.jp", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dg1.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dg1.services", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digpubdev.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digpubprd.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "digpubqa.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "distrim.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dolceuvita.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "dr-kissler.de", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "e-resident.gov.ee", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ebisee.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecobrotherss.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecoconut.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecopak.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ecosas.org", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eduson.pl", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "egorka.ml", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "ehtp.pt", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eiji.fr", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "elithub.com", "policy": "bulk-1-year", "mode": "force-https", "include_subdomains": true }, { "name": "eptreviewer.com", "policy": "bulk-1-year", "mode": "force-https", "incl